Bitcoin Forum
April 30, 2024, 09:40:05 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 [206] 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 »
  Print  
Author Topic: [ANN][Q2C] QubitCoin new secure hashing (CPU/GPU) (NEW) Update 0.8.4.1  (Read 351469 times)
penambang
Hero Member
*****
Offline Offline

Activity: 548
Merit: 501


View Profile WWW
April 21, 2014, 10:29:57 AM
 #4101

and

http://67.207.208.166:9372
1714470005
Hero Member
*
Offline Offline

Posts: 1714470005

View Profile Personal Message (Offline)

Ignore
1714470005
Reply with quote  #2

1714470005
Report to moderator
1714470005
Hero Member
*
Offline Offline

Posts: 1714470005

View Profile Personal Message (Offline)

Ignore
1714470005
Reply with quote  #2

1714470005
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714470005
Hero Member
*
Offline Offline

Posts: 1714470005

View Profile Personal Message (Offline)

Ignore
1714470005
Reply with quote  #2

1714470005
Report to moderator
gjhiggins
Legendary
*
Offline Offline

Activity: 2254
Merit: 1278



View Profile WWW
April 21, 2014, 01:09:40 PM
 #4102

A list with active pools i know ...

Useful list, thanks.

Ever-curious, I followed the links ... these are each pool's own reported hash rate (at time of posting) and, where given, number of workers:

Code:
http://q2c.sytes.net:9372 - 5.98MH/s ??

http://qbt.mine-pool.net/ - 10.1MH/s ??

http://q2c.ext-pool.net/ - 1.13 Mh/s ??

http://q2c.mine-coin.de/static/ - 1.13MH/s ??

https://cpu-pool.net/qubit/ - 109.119 MH/s 36

https://www.mine-pool.net/qubit/ - 71.298 MH/s 55

http://67.207.208.166:9372 - 5.29MH/s ??

It's very limited in scope and the accuracy is highly dubious but I suspect that it's broadly indicative overall.

Cheers,

Graham
gjhiggins
Legendary
*
Offline Offline

Activity: 2254
Merit: 1278



View Profile WWW
April 21, 2014, 06:16:01 PM
 #4103

FYI

A little self-contained halving calendar in Python, checked with doctest. The dates refer to the START of each step.

The next per-block reward reduction (from 128 to 64 Q2C) will happen this coming Sunday - 27th. April 2014.

The per-block reward will drop to 32 Q2C on 18th. May and to 16 Q2C on 8th. June.

Code:
>>> from datetime import datetime, timedelta, date
>>> launchdate = datetime(2014, 1, 12)
>>> launchdate.isoformat()
'2014-01-12T00:00:00'
>>> halvener = timedelta(21)
>>> print(halvener)
21 days, 0:00:00
>>> ncoins = 0
>>> blockreward = 2048
>>> halving_every = 60480
>>> cnt = 0
>>> while blockreward > 1:
...     ncoins_this_step = blockreward * 60480
...     print((launchdate + (halvener * cnt)).date().isoformat(), blockreward, ncoins_this_step)
...     blockreward = max(0, int(blockreward / 2))
...     ncoins += ncoins_this_step
...     cnt += 1
2014-01-12 2048 123863040
2014-02-02 1024 61931520
2014-02-23 512 30965760
2014-03-16 256 15482880
2014-04-06 128 7741440
2014-04-27 64 3870720
2014-05-18 32 1935360
2014-06-08 16 967680
2014-06-29 8 483840
2014-07-20 4 241920
2014-08-10 2 120960
>>> ncoins
247605120

After the completion of the reducing steps, a 1 Q2C per-block reward pertains (with a target of 1 block per minute) for another 13 years.

Y'all might want to think about switching to an ASIC-friendly algo at some point, for when the per-block reward reduces to 1.

HTH

Cheers,

Graham

gjhiggins
Legendary
*
Offline Offline

Activity: 2254
Merit: 1278



View Profile WWW
April 21, 2014, 06:26:55 PM
 #4104

I'm not the developer of this coin, but I think it deserves an update.

I hope you'll forgive a couple of technical queries:

1. What criteria did you use to arrive at the conclusion that the coin "deserves an update"?

2. With regards to adding a checkpoint, could you explain a bit more about the purpose of this proposed addition?

Cheers,

Graham

u5sos
Member
**
Offline Offline

Activity: 108
Merit: 10


View Profile
April 21, 2014, 08:46:36 PM
 #4105

STILL MINE
 Q2C!

Truecoin
Sr. Member
****
Offline Offline

Activity: 312
Merit: 250


View Profile
April 22, 2014, 11:24:54 AM
Last edit: April 23, 2014, 03:52:01 AM by Truecoin
 #4106

Any news about krecu?

His fan site http://qubitcoin.net/ seems to be down...

peterlustig
Sr. Member
****
Offline Offline

Activity: 812
Merit: 250


The Fourth Generation of Blockchain in DeFi


View Profile
April 22, 2014, 01:19:39 PM
 #4107

After the completion of the reducing steps, a 1 Q2C per-block reward pertains (with a target of 1 block per minute) for another 13 years.

Y'all might want to think about switching to an ASIC-friendly algo at some point, for when the per-block reward reduces to 1.

HTH

Cheers,

Graham
Thx for the halving dates!

The algo actually is ASIC friendly, as there are no random rounds of hashing afaik. If someone will make an ASIC in the future is another question.
QRK (ASIC unfriendly due to 3 of 9 hashing rounds using a random algo, not an unsolvable obstacle though, if you can make a miner you can build an ASIC) seems to do just fine without ASICS btw.

To answer your other question about the added checkpoint in willowrose's client, checkpoints ensure that a theoretical 51+% attack cannot reach too far into the past.




`````````▄▄▄▄▄▄▄
`````▄█████████████▄
```███████▀▀█▀▀███████
``████████``█``████████
`██████``````````▀██████
█████████```████```██████
█████████`````````███████
█████████```████▄``▀█████
█████████```████▀```█████
`██████```````````▄█████
``████████``█``████████
```███████▄▄█▄▄███████
`````▀█████████████▀
`````````▀▀▀▀▀▀▀

```````▄▄▄▄▄▄▄▄▄▄▄
```███████████████████
```````▀▀▀▀▀▀▀▀▀▀▀
DRK Defi






The Fourth Generation Of Blockchain
                             In Decentralized Finance






Draken Exchange
     DrakenX






Facebook
     Twitter








`````````▄▄▄▄▄▄▄
`````▄█████████████▄
```███████████████████
``█████████████████████
`████████████▀▀▀`````███
████████▀▀▀````▄█````████
████▀▀``````▄██▀````▄████
███▄▄`````███▀``````█████
███████``██`````````█████
`███████`▐`````````█████
``███████▐`████▄▄`▄████
```███████▄███████████
`````▀█████████████▀
`````````▀▀▀▀▀▀▀

```````▄▄▄▄▄▄▄▄▄▄▄
```███████████████████
```````▀▀▀▀▀▀▀▀▀▀▀

.Telegram.
Channel
k0stas
Hero Member
*****
Offline Offline

Activity: 526
Merit: 502


View Profile
April 24, 2014, 08:15:12 AM
 #4108

To answer your other question about the added checkpoint in willowrose's client, checkpoints ensure that a theoretical 51+% attack cannot reach too far into the past.

P2pool is 51% attack and DDos resistance.

The wallet has nothing to do with it.

For more infos:
http://www.cryptocoinsnews.com/news/p2pool-mining/2014/03/25
baseke
Sr. Member
****
Offline Offline

Activity: 389
Merit: 256


View Profile
April 24, 2014, 12:24:39 PM
 #4109

Hi everyone can not synchronize my wallet. can anyone help me ?
hakertajniak
Member
**
Offline Offline

Activity: 504
Merit: 10

YOUC | John McAfee Supports


View Profile
April 24, 2014, 12:57:09 PM
 #4110

Do you have file qubitcoin.conf in C:\Users\Your_account_name\AppData\Roaming\QubitCoin ?
If you don't have just create there qubitcoin.conf file and paste this:
Code:
rpcuser=123
rpcpassword=1234567890qwertyuiop
rpcallowip=127.0.0.1
server=1
addnode=188.230.132.226:7788
addnode=88.193.180.145:7788
addnode=151.224.242.33:7788
addnode=113.2.235.63:7788
addnode=80.121.18.48:7788
addnode=176.99.185.190:7788
addnode=92.255.221.181:7788
addnode=5.164.93.142:7788
addnode=83.215.164.206:7788
addnode=87.113.166.62:7788
addnode=93.83.25.85:7788
addnode=82.246.47.198:7788
addnode=80.220.12.202:7788
addnode=61.174.239.236:7788
addnode=74.88.177.35:7788
addnode=89.93.16.199:7788
addnode=176.15.49.142:7788
addnode=115.207.173.185:7788
addnode=174.100.51.46:7788
addnode=211.93.43.59:7788
addnode=91.64.13.240
addnode=182.33.11.182:7788
addnode=113.116.201.74:7788
addnode=144.76.220.169:7788
addnode=77.20.120.102:7788
addnode=148.251.15.99:7788
addnode=54.201.249.50:7788
addnode=59.54.10.83:7788
addnode=149.241.29.95:7788
addnode=212.183.59.139:7788
addnode=223.18.194.128:7788
addnode=148.251.15.105:7788
addnode=83.215.164.206:7788
addnode=118.116.238.135:7788
addnode=31.41.219.110:7788
addnode=84.244.26.52:7788
addnode=144.76.185.239:7788
addnode=176.31.236.95:7788
addnode=14.118.110.69:7788
addnode=117.8.68.2:7788
addnode=186.212.61.43:7788
addnode=54.203.245.228:7788
addnode=183.69.196.80:7788
addnode=107.150.48.98:7788
addnode=109.205.247.161:7788
addnode=72.53.133.204:7788
addnode=117.81.217.11:7788
addnode=180.115.109.79:7788
addnode=93.183.175.25:7788
addnode=91.119.199.79:7788
addnode=50.152.178.147:7788
addnode=62.87.150.233:7788
addnode=23.92.80.37:7788
addnode=62.219.98.129:7788
addnode=113.120.128.107:7788
addnode=123.137.244.171:7788
addnode=148.251.3.83:7788
addnode=67.207.208.166:7788
addnode=114.94.15.137:7788
addnode=41.133.226.133:7788
addnode=213.21.14.174:7788
addnode=192.241.215.76:7788
addnode=219.136.252.5:7788
addnode=62.16.243.132:7788
addnode=62.210.162.235:7788
addnode=119.124.100.109:7788
addnode=46.9.148.112:7788
addnode=178.196.36.208:7788
addnode=37.143.201.89:7788
addnode=69.196.188.89:7788
addnode=188.32.108.230:7788
addnode=111.167.165.105:7788
addnode=90.188.237.17:7788
addnode=31.41.219.109:7788
addnode=198.211.124.181:7788
addnode=112.111.86.95:7788
addnode=118.124.54.189:7788
addnode=150.140.159.248:7788
addnode=162.243.235.192:7788
addnode=78.128.22.144:7788
addnode=182.32.195.170:7788
addnode=68.64.161.254:7788
addnode=199.188.178.180:7788
addnode=151.15.180.205:7788
addnode=121.230.85.79:7788
addnode=144.76.110.209:7788
addnode=141.48.30.99:7788
addnode=98.118.154.14:7788
addnode=87.113.166.62:7788
addnode=178.149.92.43:7788
addnode=113.2.235.63:7788
addnode=180.157.128.7:7788

  ●   John McAfee Supports   ●
 ❰❰❰❰❰❰  Advertising Platform  ❱❱❱❱❱❱  
● ▬▬▬▬▬ ● ▬▬▬▬▬ ●●●    ●  YOUC  ●    ●●● ▬▬▬▬▬ ● ▬▬▬▬▬ ●
Maxikosw
Full Member
***
Offline Offline

Activity: 151
Merit: 100


View Profile
April 24, 2014, 01:26:14 PM
 #4111

Do you think that Qubitcoin has future on altcoin business ?

baseke
Sr. Member
****
Offline Offline

Activity: 389
Merit: 256


View Profile
April 24, 2014, 02:12:51 PM
 #4112

hakertajniak thanks a lot  man
peterlustig
Sr. Member
****
Offline Offline

Activity: 812
Merit: 250


The Fourth Generation of Blockchain in DeFi


View Profile
April 24, 2014, 02:18:33 PM
 #4113

To answer your other question about the added checkpoint in willowrose's client, checkpoints ensure that a theoretical 51+% attack cannot reach too far into the past.

P2pool is 51% attack and DDos resistance.

The wallet has nothing to do with it.

For more infos:
http://www.cryptocoinsnews.com/news/p2pool-mining/2014/03/25
You are right, decentralized p2pool mining offers some 51% resistance. However if a 51% attack succeeds (due to low p2pool hashrate, a whale with 5000 GPUs or a malicious pool etc.) checkpoints ensure that the attacker cannot reverse transactions/blocks beyond the last checkpoint.




`````````▄▄▄▄▄▄▄
`````▄█████████████▄
```███████▀▀█▀▀███████
``████████``█``████████
`██████``````````▀██████
█████████```████```██████
█████████`````````███████
█████████```████▄``▀█████
█████████```████▀```█████
`██████```````````▄█████
``████████``█``████████
```███████▄▄█▄▄███████
`````▀█████████████▀
`````````▀▀▀▀▀▀▀

```````▄▄▄▄▄▄▄▄▄▄▄
```███████████████████
```````▀▀▀▀▀▀▀▀▀▀▀
DRK Defi






The Fourth Generation Of Blockchain
                             In Decentralized Finance






Draken Exchange
     DrakenX






Facebook
     Twitter








`````````▄▄▄▄▄▄▄
`````▄█████████████▄
```███████████████████
``█████████████████████
`████████████▀▀▀`````███
████████▀▀▀````▄█````████
████▀▀``````▄██▀````▄████
███▄▄`````███▀``````█████
███████``██`````````█████
`███████`▐`````````█████
``███████▐`████▄▄`▄████
```███████▄███████████
`````▀█████████████▀
`````````▀▀▀▀▀▀▀

```````▄▄▄▄▄▄▄▄▄▄▄
```███████████████████
```````▀▀▀▀▀▀▀▀▀▀▀

.Telegram.
Channel
nuttynoah
Full Member
***
Offline Offline

Activity: 229
Merit: 100


View Profile
April 24, 2014, 05:12:34 PM
 #4114

Hi everyone can not synchronize my wallet. can anyone help me ?
I downloaded the mac wallet yesterday and it took a few hours for it to finally sync.
k0stas
Hero Member
*****
Offline Offline

Activity: 526
Merit: 502


View Profile
April 25, 2014, 09:05:31 AM
 #4115

A way to find easy p2pools for mining.

http://p2pools.org
subseaguru
Hero Member
*****
Offline Offline

Activity: 560
Merit: 504

I know the voices in my head aren't real.


View Profile
April 25, 2014, 11:12:23 AM
 #4116

A way to find easy p2pools for mining.

http://p2pools.org

Nice

coinano
Full Member
***
Offline Offline

Activity: 196
Merit: 100

Coinano.com Digital Currency Exchange Platform


View Profile
April 28, 2014, 07:21:00 AM
 #4117

--- MAINTENANCE ANNOUNCEMENT ---

Wednesday,April 30 from 18:00 to 18:00 Thursday, May 1  - GMT(Greenwich Mean Time)

Our system will be down for renew system infrastructure and add new features.
To ensure the highest security and performance levels for our services,
We are applying a hardware and software update on our servers.

During this time, All open orders will automatically cancelled.
You will not be able to log into any of the Coinano.com,
and if you are logged on at the time maintenance starts then you will be logged off.

We always list our times in UTC/GMT or Coordinated Universal Time / Greenwich Mean Time.
You can use the converter at http://www.timeanddate.com/worldclock/converter.html to convert this to your local zone.

To minimise any disruption to business operations, members are advised to:

     * Plan ahead their activities and transactions; and
     * Avoid any activities and transaction one (1) hour prior to the scheduled system maintenance.

Additional details (including possible delays or an early finish) will be announced via Twitter.

We apologize for any inconveniences generated by these service interruptions.
Please make sure that your members and team members are aware of these important updates.

Should you have any inquiries, please get in touch with us support@coinano.com

Thank you for your understanding and support,
The Coinano Cryptocurrency Exchange Market Team





More Info  https://bitcointalk.org/index.php?topic=527950.0
Visit us   www.coinano.com
Follow us  https://twitter.com/Coinano

Patejl
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500


You have eyes but can see Mt. Tai?!


View Profile
April 28, 2014, 07:55:58 AM
 #4118

Still alive?



                                         ▄
                 ▄▄████████▄▄         ▄▄██
 ▄▄           ▄██▀▀        ▀▀██▄    ▄███▀
 ▀███▄▄     ▄█▀                ▀█▄▄█████▀
  ▀██████▄▄█▀                ▄▄███████▀
   ▐█████████▄           ▄▄███████████
     ▀█████████▄▄      ▄█████████████
       ▀██████████    ███████████████
        ▐▀█████████  █████████████▀ ▐▌
        ▐▌ ▀▀██████ ▐███████████▀   ▐▌
        ▐▌      ▀██ ▐█████████▀     ▐▌
         █        ▀  ██████         █
         ▐█          ▐█████▄       █▌
          ▀█▄         ▀██████▄   ▄█▀
            ▀█▄         ▀█████▌▄█▀
              ▀██▄▄       ▀▄▄██▀
                ▀▀████████▀▀
T
....ANGEL TOKEN....


                                         ▄
                 ▄▄████████▄▄         ▄▄██
 ▄▄           ▄██▀▀        ▀▀██▄    ▄█▀█▀ 
 ▀█▀█▄▄     ▄█▀                ▀█▄▄█  ▄█▀ 
  ▀█  ▀▀█▄▄█▀                ▄▄██░   █▀   
   ▐▄▄  ░░░▀█▄           ▄▄█▀▀░░░   ▄█     
     ▀█▄ ░░░▒▒█▄▄      ▄██▒▒▒▒▒░    █     
       ▀▄▄ ░░▒▒▒▓█    ██▒▒▒▒▒▒░   ▄▄█     
        ▐▀█▄░░▒▒▓██  █▓▒▒▒▒▒▒░  ▄█▀ ▐▌     
        ▐▌ ▀▀█▒▓███░▐█▓▒▒▒▒░░ ▄█▀   ▐▌     
        ▐▌      ▀██ ▐█▓▓▒▒▄▄▄█▀     ▐▌     
         █        ▀  █▓█▀▀█         █     
         ▐█          ▐▄▓░ █▄       █▌     
          ▀█▄         ▀█▒░ ▀█▄   ▄█▀       
            ▀█▄         ▀█▄▄▄█▌▄█▀         
              ▀██▄▄       ▀▄▄██▀           
                 ▀▀████████▀▀             

Jonesd
Legendary
*
Offline Offline

Activity: 1876
Merit: 1014



View Profile
April 28, 2014, 10:10:15 AM
 #4119

REVOLUTION TIME!

I got a message from willowtalk that this coin was neglected, but deserves some attention.

I was getting pretty irritated by all these great coins that lost the support of the developer, so I'm trying to start an independent foundation, the Coin Revival Foundation (CFA), that revives these coins and keeps advancing them.

My aim is to give altcoins back to the community and away from speculative whales! Smiley

Come to the topic to discuss this if you like and explain why QubitCoin would be a good coin to take into consideration.


Come and join! Smiley
https://bitcointalk.org/index.php?topic=576714.msg6294074#msg6294074

VOting has started!

Co-Founder and Managing Partner of Block Bastards
peterlustig
Sr. Member
****
Offline Offline

Activity: 812
Merit: 250


The Fourth Generation of Blockchain in DeFi


View Profile
April 28, 2014, 10:21:36 AM
 #4120

Still alive?
Difficulty back to 400 after a dip to 200 due to the block reward halvening on sunday.

@Jonesd: Qubitcoin is neither dead nor does it need to be revived.  Tongue




`````````▄▄▄▄▄▄▄
`````▄█████████████▄
```███████▀▀█▀▀███████
``████████``█``████████
`██████``````````▀██████
█████████```████```██████
█████████`````````███████
█████████```████▄``▀█████
█████████```████▀```█████
`██████```````````▄█████
``████████``█``████████
```███████▄▄█▄▄███████
`````▀█████████████▀
`````````▀▀▀▀▀▀▀

```````▄▄▄▄▄▄▄▄▄▄▄
```███████████████████
```````▀▀▀▀▀▀▀▀▀▀▀
DRK Defi






The Fourth Generation Of Blockchain
                             In Decentralized Finance






Draken Exchange
     DrakenX






Facebook
     Twitter








`````````▄▄▄▄▄▄▄
`````▄█████████████▄
```███████████████████
``█████████████████████
`████████████▀▀▀`````███
████████▀▀▀````▄█````████
████▀▀``````▄██▀````▄████
███▄▄`````███▀``````█████
███████``██`````````█████
`███████`▐`````````█████
``███████▐`████▄▄`▄████
```███████▄███████████
`````▀█████████████▀
`````````▀▀▀▀▀▀▀

```````▄▄▄▄▄▄▄▄▄▄▄
```███████████████████
```````▀▀▀▀▀▀▀▀▀▀▀

.Telegram.
Channel
Pages: « 1 ... 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 [206] 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!