Bitcoin Forum
May 04, 2024, 09:58:19 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 [74] 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 »
1461  Economy / Trading Discussion / Re: ncurses based MtGox live monitor and trading-bot-framework on: March 13, 2013, 11:29:22 AM
is it possible to make it backward compatible to 2.6?

Not sure, I don't have python 2.6 installed to test it, I relied on the fact that the 2.x branch ended at 2.7 many years ago (I consider it as old and mature and stable) and I assumed that over the time (until now?) from all the different 2.x versions there would eventually only 2.7 be left as the only relevant 2.x version. What Linux distribution are you using? Debian?

What exactly is missing/wrong/different? If it is something trivial it might be possible, but the main problem is I can't (and don't want to) test and maintain it on 2.6 but maybe someone else can temporarily maintain a 2.6 fork until there is no 2.6 anymore (hopefully soon).
python 2.6/2.7 are considered stable, therefore used by most ppls.
well it dosnt work:
Code:
$ python goxtool.py 
Traceback (most recent call last):
  File "goxtool.py", line 1031, in <module>
    main()
  File "goxtool.py", line 1023, in main
    curses.wrapper(curses_loop)
  File "/usr/lib/python2.6/curses/wrapper.py", line 44, in wrapper
    return func(stdscr, *args, **kwds)
  File "goxtool.py", line 947, in curses_loop
    gox = goxapi.Gox(secret, config)
  File "/home/k1773r/git/goxtool/goxapi.py", line 779, in __init__
    BaseObject.__init__(self)
  File "/home/k1773r/git/goxtool/goxapi.py", line 243, in __init__
    self.signal_debug = Signal()
  File "/home/k1773r/git/goxtool/goxapi.py", line 172, in __init__
    self._functions = weakref.WeakSet()
AttributeError: 'module' object has no attribute 'WeakSet'
1462  Economy / Trading Discussion / Re: ncurses based MtGox live monitor and trading-bot-framework on: March 13, 2013, 09:18:05 AM
is it possible to make it backward compatible to 2.6?
1463  Alternate cryptocurrencies / Altcoin Discussion / Re: New Ixcoin fork -> I0coin on: March 13, 2013, 09:15:37 AM
someone used valgrind in combination with i0coind (check out the i0coind thread).
1464  Bitcoin / Pools / Re: Additional subsidy for P2Pool users: 1-3btc/day on: March 13, 2013, 09:11:53 AM
i think subsidys could atract new miners (since we need more GH) to p2pool, anyone interested in reviving this?
1465  Bitcoin / Pools / Re: Pay On Target: New High variance payout System Offered by Ozcoin on: March 13, 2013, 09:04:54 AM
how is your PoT working? are ppl still interested into?
1466  Alternate cryptocurrencies / Altcoin Discussion / Re: Litecoin faucet on: March 13, 2013, 09:00:13 AM
how is your faucet, is "he" feeling good?
1467  Economy / Services / Re: Professional Digital Paintings on: March 13, 2013, 08:54:54 AM
keep us updated if you create something new Tongue
1468  Alternate cryptocurrencies / Altcoin Discussion / Re: [DEAD] Coiledcoin - yet another cryptocurrency, but with OP_EVAL! on: March 13, 2013, 08:51:44 AM
This chain has been humming along nicely lately, not a very high difficulty and you can merged-mine it so what the heck eh.

There are not enough reasonably well behaved merged-mine-able coins in existence to really see how many one could reasonably mine at once, but this one seems well-behaved so it doesn't hurt to include it in the merge.

(i0coin on the other hand tended to eat 20+% of my 8 gigs of RAM and since yesterday is for some reason now eating about 40% (40+% yesterday, 39.9% right now).

-MarkM-

im dropping i0coin soon, with every block it gets more insane (since the memleak in validating blocks). CLC is doing fine tou.
1469  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BBQCoin, the coin you want to eat. on: March 13, 2013, 08:21:54 AM
Yeah I cannot get it to mine for me. The last block I mined was 24 hrs ago and it still hasn't cleared.  Huh
because the diff is high and the "big" miner left, therefore block rate is lower than usual, soon difficulty will adjust and then this problem is gone too. thats how bitcoin works...
1470  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BBQCoin, the coin you want to eat. on: March 13, 2013, 08:01:47 AM
51% attacked?  Huh
thats a long time ago!
1471  Bitcoin / Development & Technical Discussion / Re: ANN: Announcing code availability of the bitsofproof supernode on: March 13, 2013, 05:46:03 AM
It is a modern full validation implementation that loads the chain from scratch in about 8 hours if using the leveldb option.
8 hours is a long time, are the bottlenecks known (ie. tested and made publicly)?
I'd say bootstrap duration is on par with the reference client.
You would use this implementation to create functionality not offered by the reference implementation, not to compete with that within its abilities.
ok then il have to rephrase, 8 hours on which HD/CPU/System?
have you tested it with tmpfs? (its not about to pick a software which syncs the fastest, thats stupid. just wanna know where the known bottlenecks are in generell).
I use a 4 dedicated vCPU server with 2GHz each, 16GB RAM and an encrypted virtual file system. Bootstrap time is about 8 hours if using leveled option. Bottleneck in bootstrap before the checkpoint (hard coded chain hash for height 222222 at the moment) is disk I/O thereafter as it does full script validation, bottleneck becomes CPU. Script validation is fully multithreaded all processors are on 98+% during that time.

Once synced this server is able to cope with current transaction traffic using single digit CPU percentage use. There are very short spikes to 100% as it validates new block coming in. Disk I/O is the limit for serving getdata requests and queries during normal use.

The current disk footprint is 12GB for the chain. Beware that this stores several indices do speed up queries by address to tx and blocks.
thats exactly what i wanted, ty!
1472  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BBQCoin, the coin you want to eat. on: March 13, 2013, 12:19:38 AM
somewhat, u missed it.
1473  Bitcoin / Development & Technical Discussion / Re: ANN: Announcing code availability of the bitsofproof supernode on: March 12, 2013, 10:55:14 PM
It is a modern full validation implementation that loads the chain from scratch in about 8 hours if using the leveldb option.
8 hours is a long time, are the bottlenecks known (ie. tested and made publicly)?
I'd say bootstrap duration is on par with the reference client.
You would use this implementation to create functionality not offered by the reference implementation, not to compete with that within its abilities.
ok then il have to rephrase, 8 hours on which HD/CPU/System?
have you tested it with tmpfs? (its not about to pick a software which syncs the fastest, thats stupid. just wanna know where the known bottlenecks are in generell).
1474  Bitcoin / Project Development / Re: [WIP] FPGA Vanitygen on: March 12, 2013, 10:50:33 PM
source is always welcome Smiley
1475  Bitcoin / Project Development / Re: Bitcoin Search Engine on: March 12, 2013, 10:49:22 PM
http://www.bitcoinsphere.com/

I wouldnt say its the most spectacular search engine but it is a bitcoin one


I'm thinking one that uses the yahoo or google search bar.  Maybe just a bitcoin logo and everyone in the community that has google as their homepage could use this one and not lose anything. (except maybe the fancy daily drawing).

But, it could be kind of fun to have someone in the community submit their daily drawing.
yey more spyware/adware is exactly what we need

What? I fail to see how a community drawn logo on top of the standard google search bar is spyware or adware?  Google adsense shows on the real google homepage too not just their paid for search bar.  The results are the exact same and can easily be removed with adblock plus or the like. 

To each their own I guess.
because google/yahoo toolbar is spyware Wink
1476  Bitcoin / Development & Technical Discussion / Re: ANN: Announcing code availability of the bitsofproof supernode on: March 12, 2013, 08:48:25 PM
It is a modern full validation implementation that loads the chain from scratch in about 8 hours if using the leveldb option.
8 hours is a long time, are the bottlenecks known (ie. tested and made publicly)?
1477  Bitcoin / Project Development / Re: [ANN] GoxGame. So you think you can trade? on: March 12, 2013, 08:42:46 PM
will there be a option for privacy? this could be abused to display/leak/identify someones trading strategys (just had this worst case scenario, well there are probably worse than this Tongue)

anyway, count me in if you start it. that could be a funny thing.
1478  Bitcoin / Project Development / Re: Bitcoin Search Engine on: March 12, 2013, 08:39:53 PM
http://www.bitcoinsphere.com/

I wouldnt say its the most spectacular search engine but it is a bitcoin one


I'm thinking one that uses the yahoo or google search bar.  Maybe just a bitcoin logo and everyone in the community that has google as their homepage could use this one and not lose anything. (except maybe the fancy daily drawing).

But, it could be kind of fun to have someone in the community submit their daily drawing.
yey more spyware/adware is exactly what we need
1479  Bitcoin / Hardware wallets / Re: [ANN] Trezor: Bitcoin hardware wallet on: March 12, 2013, 08:27:27 PM
- Long-term coins on a paperwallet at home --> secure but inconvenient

And I'd say paper wallets are less secure than Trezor, since you cannot back them up on the cloud (well, you can, but then it's not really a paper wallet any longer).
so you want to backup a physical device into the cloud?
1480  Bitcoin / Pools / Re: Round of Applause - Crisis Management on: March 12, 2013, 01:04:16 PM
Applause for the whole forum.

This was handled awesomely.

Except for the speculation forum Wink
The alt cryptocurrency subforum didn't seem to do so well either. They seemed to be very happy about it, not realising the irony that the purpose for alt cryptocurrencies were to push development ideas, yet it was their stagnancy on old bitcoin code that protected them from such a problem. Go figure.
i like altcoins myself too, but thats just silly...
Pages: « 1 ... 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 [74] 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!