Pages:
Author

Topic: [ANN] cbitcoin 1.0 Alpha 4 Released. (Read 4134 times)

legendary
Activity: 1190
Merit: 1004
January 24, 2013, 12:39:15 PM
#43
It's coming along piece by piece. I'm currently improving some of the old code in preparation for writing the remaining network node code. Recently I completed the implementation of the full validator. If all goes well then I should have everything implemented (Not tested) by a couple of months, but I am quite busy with other things and I can't be sure of anything.

Here is the new topic: https://bitcointalksearch.org/topic/m.1457871

People can watch the github repository to keep updated: https://github.com/MatthewLM/cbitcoin/
sr. member
Activity: 420
Merit: 250
January 23, 2013, 03:27:09 AM
#42
matthew how is your work going?
legendary
Activity: 1190
Merit: 1004
October 19, 2012, 03:22:13 PM
#41
cbitcoin 1.0 is discontinued as many new features and improvements are in development for cbitcoin 2.0 and all work will go towards that from now on.
legendary
Activity: 1190
Merit: 1004
October 05, 2012, 04:50:16 PM
#40
1.0 Alpha 4 is now available to download: http://cbitcoin.com/

This release fixes issues with the CBBigInt code, an issue with compilation and an issue with CBSubScriptRemoveSignature.
legendary
Activity: 1190
Merit: 1004
September 30, 2012, 09:48:05 AM
#39
I replied to Hazek in a PM and said I need to think more about and plan for the direction and organisation of cbitcoin over the next few weeks. I'm willing to hear any general suggestions people have about the project in the meantime, so do not be hesitant to reply in this thread, PM me or email [email protected] if you have anything to say or if you'd like to be involved in any way.

I hope to have more details about my plans reasonably soon, so subscribe to this thread to keep updated.
legendary
Activity: 1078
Merit: 1002
September 29, 2012, 04:52:59 PM
#38
You know what would help to raise you more money MatthewLM? A nice little PR post where you could explain a little bit more about who you are, what are your goals and a donation goal. I'm sure people would be really generous if you could properly reach their awareness. Have you thought about any of this? Would you like some help with that?
legendary
Activity: 1190
Merit: 1004
September 29, 2012, 01:23:49 PM
#37
0.2 bitcoins sent! will be looking to donate much more next month!

Keep it up  Cheesy

Thank you very much.  Smiley
hero member
Activity: 490
Merit: 500
September 29, 2012, 11:41:43 AM
#36
0.2 bitcoins sent! will be looking to donate much more next month!

Keep it up  Cheesy
legendary
Activity: 1190
Merit: 1004
September 29, 2012, 10:52:11 AM
#35
I replied in the other thread (https://bitcointalksearch.org/topic/m.1231003). The reason I made a thread here is to try and obtain interest from non technical people who do not look at the "Development & Technical Discussion" forum. I don't know what to do really. Should the threads be merged into one thread on one of the forums? I guess that's up to any of the moderators if they so choose.
legendary
Activity: 1288
Merit: 1076
September 29, 2012, 09:51:02 AM
#34
Damn.  Just noticed this thread is forked.  What the heck I'll cross-post:

To compile your libraries on my 32-bits, debian GNU/linux host, I had to change line 94 of BUILD.py (why not use a makefile, btw?):

Code:
cflags += " -m64"
into:
Code:
cflags += " -m32"

Also, in src/structures/CBBigInt/CBBigInt.c, line 43:

Code:
for (u_int8_t x = a.length - 1;; x--) {
into:
Code:
for (uint8_t x = a.length - 1;; x--) {

Then all compilation seems fine, but linking failed:
LINKING ./build/bin/libcbitcoin.so
gcc: error: unrecognized command line option ‘-flat_namespace’

so I just removed this option.  I hope it's ok.

I want to try to make an interface to this in Perl6, using the NativeCall module.  If I succeed, it would be really cool.



legendary
Activity: 1190
Merit: 1004
September 22, 2012, 03:24:59 PM
#33
Alpha 3 is released. In this release the CBAddressManager test is fixed for new version numbers, the README has been improved, an old copyright notice has been removed since it is not needed and a problem with the script interpreter was fixed.
legendary
Activity: 1190
Merit: 1004
September 17, 2012, 03:32:27 PM
#32
Thanks, I'm sure those random digits will come in handy.  Grin

I've got some code up for the fully validating node software: https://github.com/MatthewLM/BitEagle-FullNode

Hopefully that will come along smoothly.
sr. member
Activity: 336
Merit: 250
September 17, 2012, 10:04:21 AM
#31
Very cool, 0.5 BTC (plus some random decimals to clean up my wallet) sent.
legendary
Activity: 1190
Merit: 1004
September 17, 2012, 09:33:31 AM
#30
Thank you very much for the donation.

people have been complaining about the satoshi client for ages...

I cannot say I'll be able to satisfy every need and complaint but I am all ears to suggestions and comments about bitcoin.
hero member
Activity: 812
Merit: 1006
September 17, 2012, 09:03:43 AM
#29
BTC sent. Very good project, especially as people have been complaining about the satoshi client for ages...
legendary
Activity: 1190
Merit: 1004
September 17, 2012, 07:41:10 AM
#28
1.0 Alpha 2 is now available for download: http://cbitcoin.com.

I removed some include directives that should not be there. I fixed some warnings by changing the services bitfield to CBVersionServices and fixed the error handling in the CBNetworkCommunicator code. See commits here: https://github.com/MatthewLM/cbitcoin/commits/alpha
jr. member
Activity: 56
Merit: 1
September 15, 2012, 02:57:39 PM
#27
a little bit of btc love coming your way mate - I don't even develop but I can see the benefit of this being in the community, so thanks for spending the time on it.

Thank you.

is it a Dynamic Shared library (dso/dylib/dll) ?

The build script compiles shared/dynamic libraries for Linux and OSX. There is no Windows support yet. You can build or use the source code any way you want of-course.

Well, just wanted to come back and say that libevent appears to officially support Windows. Hell, there was even a libmemcached v0.42 port for Windows and then I was able to port PushPool to Windows.

Though cbitcoin will likely not be windows friendly.


I don't think people should be storing and accessing Bitcoins through a Windows operating system anyways, especially with an NSA backdoor.
legendary
Activity: 1190
Merit: 1004
September 15, 2012, 02:53:54 PM
#26
Thanks to both of you.

I'm working on the full validating node software now. Somewhat soon I should commit some code to https://github.com/MatthewLM/BitEagle-FullNode This should aid with the testing of cbitcoin as I code the components for BitEagle.
donator
Activity: 308
Merit: 250
September 15, 2012, 01:28:42 PM
#25
Nice work, and congratulations on the release!
legendary
Activity: 1008
Merit: 1021
Democracy is the original 51% attack
September 15, 2012, 01:26:24 PM
#24
Small donation sent, keep up the great work!
Pages:
Jump to: