geekz
Full Member
Offline
Activity: 189
Merit: 100
जगत् िमत
|
|
July 13, 2014, 01:19:34 PM |
|
I just wanted to make a quick update on the RSA UFO generation. It's close to being done, but at the tail end, I will make the B1 bound quickly increase (which will mean more CPU and memory usage). Because of the memory usage, I advise you all to put -maxmem <#MB to use> in index.js (ask in IRC for help with this). This prevents your OS from killing the ecm workers due to out of memory conditions. To tell if it is working, you shouldn't see warnings in the output like "ecm exited with code/signal SIGKILL" or "ecm exited with code/signal 1". If you have set -maxmem and you still see these errors, decrease the value and try again. Also, to exit gracefully, in a separate console, run "kill -HUP `pidof nodejs`" (or `pidof node`, for OS X / Arch users). This means that the client will stop getting new work from the server, and exit after all existing work is complete and the results are sent back to the server. Another effect is that information about factors found is printed, like you see below. Also, that's a lot to everyone who has participated so far! Factors found so far: r_ufos[0]: [ "343810981150389" ] r_ufos[1]: [ "115412498689", "5723658356239", "883149015851" ] r_ufos[2]: [ "61", "72389", "4990156296342055149130621" ] r_ufos[3]: [ "27", "389496311485", "294124347865623446938813247186352083" ] r_ufos[4]: [ "1487", "513185737" ] r_ufos[5]: [ "2", "938392049867543128089" ] r_ufos[6]: [ "2", "2", "2", "2", "12391943225" ] r_ufos[7]: [ "2", "927970989233", "3709325652813743117", "63349504689419628697" ] r_ufos[8]: [ "2", "2", "47", "14247753", "41774513100113", "13508957500516480069344262089789438931" ] r_ufos[9]: [ "2", "3", "125240142769", "4847098997452479264547624149620773122209" ] r_ufos[10]: [ "2", "2", "3", "57339689668273983034643" ] r_ufos[11]: [ "2", "2", "11", "4821663504619", "1467940420233890879", "1626705360387841829553827447164829" ] r_ufos[12]: [ "2", "2", "954281315724659097444271382229215179801" ] r_ufos[13]: [ "1175", "52633631971", "1162610355722628661", "169824584474597274047951", "207324525547502120257409089", "9762819963164821775930726472633089", "336634520264174108651877520152312103" ] r_ufos[14]: [ "81941098523" ] r_ufos[15]: [ "2", "2", "31", "18536450704392727", "20153043929894944228905854901600084557" ] Deactivated UFO candidates: 5, 7, 13. These were deactivated because, after dividing out all found factors, the results were found to be either prime or less than 3456 bits in length. The thirteen candidates still active have been tested up to B1 bound 19,000,000. That's awesome! Thanks for the update!
|
|
|
|
matthewh3
Legendary
Offline
Activity: 1372
Merit: 1003
|
|
July 13, 2014, 05:03:29 PM |
|
When I follow this guide on compiling the Anoncoin wallet - https://anoncoin.net/index.php/guides2 - on Xubuntu 14.04LTS (64) I get the following error - $ sudo apt-get build-dep bitcoin -y [sudo] password for xxxx: Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to find a source package for bitcoin If I ignore it and carry on with the guide I then get the following error - $ make -f makefile.unix USE_UPNP=- Building LevelDB ... make[1]: Entering directory `/home/bob/anoncoin/src/leveldb' g++ -I. -I./include -fno-builtin-memcmp -pthread -DOS_LINUX -DLEVELDB_PLATFORM_POSIX -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -DENABLE_WALLET -I/home/bob/anoncoin/src -I/home/bob/anoncoin/src/obj -DUSE_IPV6=1 -I/home/bob/anoncoin/src/leveldb/include -I/home/bob/anoncoin/src/leveldb/helpers -DUSE_NATIVE_I2P -I/home/bob/anoncoin/i2psam -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -c db/builder.cc -o db/builder.o make[1]: g++: Command not found make[1]: *** [db/builder.o] Error 127 make[1]: Leaving directory `/home/bob/anoncoin/src/leveldb' make: *** [leveldb/libleveldb.a] Error 2
|
|
|
|
meeh (OP)
|
|
July 13, 2014, 05:54:57 PM |
|
When I follow this guide on compiling the Anoncoin wallet - https://anoncoin.net/index.php/guides2 - on Xubuntu 14.04LTS (64) I get the following error - $ sudo apt-get build-dep bitcoin -y [sudo] password for xxxx: Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to find a source package for bitcoin If I ignore it and carry on with the guide I then get the following error - $ make -f makefile.unix USE_UPNP=- Building LevelDB ... make[1]: Entering directory `/home/bob/anoncoin/src/leveldb' g++ -I. -I./include -fno-builtin-memcmp -pthread -DOS_LINUX -DLEVELDB_PLATFORM_POSIX -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -DENABLE_WALLET -I/home/bob/anoncoin/src -I/home/bob/anoncoin/src/obj -DUSE_IPV6=1 -I/home/bob/anoncoin/src/leveldb/include -I/home/bob/anoncoin/src/leveldb/helpers -DUSE_NATIVE_I2P -I/home/bob/anoncoin/i2psam -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -c db/builder.cc -o db/builder.o make[1]: g++: Command not found make[1]: *** [db/builder.o] Error 127 make[1]: Leaving directory `/home/bob/anoncoin/src/leveldb' make: *** [leveldb/libleveldb.a] Error 2 make[1]: g++: Command not found Installing GCC/G++ compiler usually solves this problem I myself prefer to install the meta package build-essential. It includes make, gcc etc.. including g++ IIRC.
|
|
|
|
niteglider
Full Member
Offline
Activity: 126
Merit: 100
Lean into the curves.
|
|
July 13, 2014, 06:00:45 PM |
|
4) Lastly. Least important. Shiny things like anonymity perfection that 90% of folks, like me, don't worry about too much.
While I agree with your points I disagree that this is least important. As the crypto-sphere gets more and more regulated people will want options for black market dealings, and absolute anonymity will be the major requirement for the winning coin. I really don't believe that only black market dealings will be a factor here. Many people are just plain uncomfortable with the idea of anyone, especially government agencies, tracking their purchases, even mundane, daily shopping- but also such things as medications and other private but essential consumables. So, I agree that anonymity is far from the least important factor in the long run.
|
|
|
|
Apraksin
Sr. Member
Offline
Activity: 420
Merit: 251
Moon?
|
|
July 13, 2014, 08:44:59 PM |
|
I am mystified. If I'm to believe you it almost sounds like the aspect of anonymity in anoncoin is of little to no value and rather the value is in factors like political appeal. I always thought crypto-currency was about the viability of the coins. Should we perhaps abort the implementation of zerocoin and save Gnosis time and work?
|
|
|
|
matthewh3
Legendary
Offline
Activity: 1372
Merit: 1003
|
|
July 13, 2014, 08:48:58 PM |
|
''''''''
make[1]: g++: Command not found Installing GCC/G++ compiler usually solves this problem I myself prefer to install the meta package build-essential. It includes make, gcc etc.. including g++ IIRC. I installed build-essential and the compilation got much further this time. However it still exited with the following error. alert.cpp:6:53: fatal error: boost/algorithm/string/classification.hpp: No such file or directory #include <boost/algorithm/string/classification.hpp> ^ compilation terminated. make: *** [obj/alert.o] Error 1 So I installed libboost1.54-dev for a try and then got a much shorter compilation effort with the following error code. $ make -f makefile.unix USE_UPNP=- g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -DENABLE_WALLET -I/home/bob/anoncoin/src -I/home/bob/anoncoin/src/obj -DUSE_IPV6=1 -I/home/bob/anoncoin/src/leveldb/include -I/home/bob/anoncoin/src/leveldb/helpers -DUSE_NATIVE_I2P -I/home/bob/anoncoin/i2psam -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -MMD -MF obj/alert.d -o obj/alert.o alert.cpp In file included from serialize.h:22:0, from netbase.h:10, from util.h:34, from alert.h:13, from alert.cpp:11: allocators.h:12:53: fatal error: openssl/crypto.h: No such file or directory #include <openssl/crypto.h> // for OPENSSL_cleanse() ^ compilation terminated. make: *** [obj/alert.o] Error 1 Although I have the package openssl already installed so got stuck there.
|
|
|
|
notabot
Member
Offline
Activity: 99
Merit: 10
|
|
July 13, 2014, 09:04:21 PM |
|
The work on the anonymity feature of the coin is why I am here. Implementation of this will be a major accomplishment. I support all the contenders efforts towards this goal, but I watch to see who the dev team is behind a coin. This coin has a really good dev team, and that is what I base my investment bias on. Keep up the good work guys.
|
|
|
|
Apraksin
Sr. Member
Offline
Activity: 420
Merit: 251
Moon?
|
|
July 13, 2014, 10:11:29 PM |
|
I am mystified. If I'm to believe you it almost sounds like the aspect of anonymity in anoncoin is of little to no value and rather the value is in factors like political appeal. I always thought crypto-currency was about the viability of the coins. Should we perhaps abort the implementation of zerocoin and save Gnosis time and work?
Aprakin, your use of the word "we" makes me uncomfortable. Gnosis is doing what he thinks is most important and many people support that. I personally have an opinion and I share it, whether anyone agrees or even listens. Each person should be able to say what they want without attempts to manipulate. This isn't kindergarten or the mafia. The long term potential of anoncoin comes from factors already mentioned, not from any feature. Anonymity is a valuable feature. It helped propel bitcoin and if it is improved in anoncoin it will give it a push up in popularity. But I am very uncomfortable with anyone pushing any notion that any technology or feature in a coin will provide perfect anonymity. For one it simply is not true. Any anonymity, any perfect code, any tech breakthrough, is fleeting. That's the simple truth. Pretending otherwise is dishonest. Wow. Don't have a cow man. By all means keep your opinion, but don't post in in a public forum if you can't handle simple feedback. I happen to be in this coin for at least a year now due to the steady focus on anonymity.
|
|
|
|
BroTroxer
|
|
July 14, 2014, 12:04:14 AM |
|
Cryptsy works again. Both withdraws and deposits seems to work fine now.
|
|
|
|
drAGon925
|
|
July 14, 2014, 01:51:52 PM |
|
Anoncoin is now accepting donations:Acoin7tkEib9d8BfomQYUK66z5fhwN3DgV Most of your donations will be used for the setting up of bounties for public relations work, but some may also be used for specific code development tasks as well. Specific bounties that we envision for the immediate future include - Creation of press releases
- Writing of Blog entries
- Writing of popular articles about Anoncoin
- Writing of in-depth articles on the wiki and
- Web design and support.
As soon as enough ANC has been donated, we will set up a dedicated page describing the conditions attached to these bounties. For your info, the above public address is owned by the lead developer, Meeh. It would be good to have some list of donors? Maybe it would speed up the desire for donating.
|
|
|
|
drAGon925
|
|
July 14, 2014, 02:38:45 PM |
|
Devs are active more than ever, cryptsy deposit/withdraw work normal, and ANC value go down?? Somebody want cheap coins before rise of volume, or I missing some news of new fake anonymity coin! If you missed... meeh is on active vacation https://github.com/orignal/i2pd/commits?author=meeh420
|
|
|
|
drAGon925
|
|
July 14, 2014, 06:53:41 PM |
|
Anoncoin is now accepting donations:Acoin7tkEib9d8BfomQYUK66z5fhwN3DgV Most of your donations will be used for the setting up of bounties for public relations work, but some may also be used for specific code development tasks as well. Specific bounties that we envision for the immediate future include - Creation of press releases
- Writing of Blog entries
- Writing of popular articles about Anoncoin
- Writing of in-depth articles on the wiki and
- Web design and support.
As soon as enough ANC has been donated, we will set up a dedicated page describing the conditions attached to these bounties. For your info, the above public address is owned by the lead developer, Meeh. I'll be the first in a series, the current value is small, it is better than nothing, with lucky 7 at the end of the donation
|
|
|
|
meeh (OP)
|
|
July 14, 2014, 07:52:30 PM |
|
''''''''
make[1]: g++: Command not found Installing GCC/G++ compiler usually solves this problem I myself prefer to install the meta package build-essential. It includes make, gcc etc.. including g++ IIRC. I installed build-essential and the compilation got much further this time. However it still exited with the following error. alert.cpp:6:53: fatal error: boost/algorithm/string/classification.hpp: No such file or directory #include <boost/algorithm/string/classification.hpp> ^ compilation terminated. make: *** [obj/alert.o] Error 1 So I installed libboost1.54-dev for a try and then got a much shorter compilation effort with the following error code. $ make -f makefile.unix USE_UPNP=- g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -DENABLE_WALLET -I/home/bob/anoncoin/src -I/home/bob/anoncoin/src/obj -DUSE_IPV6=1 -I/home/bob/anoncoin/src/leveldb/include -I/home/bob/anoncoin/src/leveldb/helpers -DUSE_NATIVE_I2P -I/home/bob/anoncoin/i2psam -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -MMD -MF obj/alert.d -o obj/alert.o alert.cpp In file included from serialize.h:22:0, from netbase.h:10, from util.h:34, from alert.h:13, from alert.cpp:11: allocators.h:12:53: fatal error: openssl/crypto.h: No such file or directory #include <openssl/crypto.h> // for OPENSSL_cleanse() ^ compilation terminated. make: *** [obj/alert.o] Error 1 Although I have the package openssl already installed so got stuck there. > I installed build-essential and the compilation got much further this time. However it still exited with the following error. Great to hear it worked better, however sad to hear it didn't compile 100%. Do you got the libssl-dev package installed? IIRC that's the name of openssl development files. you can simply do a "ls /usr/include/openssl/", if it's listing files it's something wrong with our build scripts, if you get a error you're just missing the development files
|
|
|
|
K1773R
Legendary
Offline
Activity: 1792
Merit: 1008
/dev/null
|
|
July 14, 2014, 10:45:59 PM |
|
''''''''
make[1]: g++: Command not found Installing GCC/G++ compiler usually solves this problem I myself prefer to install the meta package build-essential. It includes make, gcc etc.. including g++ IIRC. I installed build-essential and the compilation got much further this time. However it still exited with the following error. alert.cpp:6:53: fatal error: boost/algorithm/string/classification.hpp: No such file or directory #include <boost/algorithm/string/classification.hpp> ^ compilation terminated. make: *** [obj/alert.o] Error 1 So I installed libboost1.54-dev for a try and then got a much shorter compilation effort with the following error code. $ make -f makefile.unix USE_UPNP=- g++ -c -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -DENABLE_WALLET -I/home/bob/anoncoin/src -I/home/bob/anoncoin/src/obj -DUSE_IPV6=1 -I/home/bob/anoncoin/src/leveldb/include -I/home/bob/anoncoin/src/leveldb/helpers -DUSE_NATIVE_I2P -I/home/bob/anoncoin/i2psam -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -MMD -MF obj/alert.d -o obj/alert.o alert.cpp In file included from serialize.h:22:0, from netbase.h:10, from util.h:34, from alert.h:13, from alert.cpp:11: allocators.h:12:53: fatal error: openssl/crypto.h: No such file or directory #include <openssl/crypto.h> // for OPENSSL_cleanse() ^ compilation terminated. make: *** [obj/alert.o] Error 1 Although I have the package openssl already installed so got stuck there. > I installed build-essential and the compilation got much further this time. However it still exited with the following error. Great to hear it worked better, however sad to hear it didn't compile 100%. Do you got the libssl-dev package installed? IIRC that's the name of openssl development files. you can simply do a "ls /usr/include/openssl/", if it's listing files it's something wrong with our build scripts, if you get a error you're just missing the development files he could just follow the compilation documentation in doc/
|
[GPG Public Key]BTC/DVC/TRC/FRC: 1 K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM A K1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: N K1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: L Ki773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: E K1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: b K1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
|
|
|
meeh (OP)
|
|
July 15, 2014, 02:19:29 AM |
|
Blog update finally; https://sigterm.no/blog/30/Other news; Nothing is decided yet, but it might end up in a agreement where I work some % of my dayjob to speedup the i2pd process, meaning I'm founded to program on it, again resulting in i2pd would be ready faster and I can implement it. But I will get back to you guys if this becomes a reality/actual deal. I would also like to add this; fluffypon(the dev) and the Monero coin is someone we might co-work with to increase anonymity, but again, we haven't decided much else than that we don't shittalk eachother. So not you fans too Side note; Yes, We're still working on Zerocoin, no problems there, so don't start thinking that because we're might co-work with Monero in the future we have given up on Zerocoin or anything in that form.
|
|
|
|
drAGon925
|
|
July 15, 2014, 05:53:51 AM |
|
Blog update finally; https://sigterm.no/blog/30/Other news; Nothing is decided yet, but it might end up in a agreement where I work some % of my dayjob to speedup the i2pd process, meaning I'm founded to program on it, again resulting in i2pd would be ready faster and I can implement it. But I will get back to you guys if this becomes a reality/actual deal. I would also like to add this; fluffypon(the dev) and the Monero coin is someone we might co-work with to increase anonymity, but again, we haven't decided much else than that we don't shittalk eachother. So not you fans too Side note; Yes, We're still working on Zerocoin, no problems there, so don't start thinking that because we're might co-work with Monero in the future we have given up on Zerocoin or anything in that form. If nothing else, we will have a new drunk photo for twitter after few mushrooms maybe new coin Anoner0 ; ) have a nice trip and get back safe with news!
|
|
|
|
geekz
Full Member
Offline
Activity: 189
Merit: 100
जगत् िमत
|
|
July 15, 2014, 07:47:12 AM |
|
Great news meeh! May be we can have Anoncon wallet with i2p working for mobile phones. It would be awesome. So much awesomeness on the way.
|
|
|
|
drAGon925
|
|
July 15, 2014, 08:06:29 AM |
|
Great news meeh! May be we can have Anoncon wallet with i2p working for mobile phones. It would be awesome. So much awesomeness on the way. Hello to India! TripleAwesome : ) any news on blockchain?
|
|
|
|
Apraksin
Sr. Member
Offline
Activity: 420
Merit: 251
Moon?
|
|
July 15, 2014, 10:56:48 AM |
|
I would also like to add this; fluffypon(the dev) and the Monero coin is someone we might co-work with to increase anonymity, but again, we haven't decided much else than that we don't shittalk eachother. So not you fans too Intriguing news! Please elaborate when possible.
|
|
|
|
meeh (OP)
|
|
July 15, 2014, 01:18:30 PM |
|
If nothing else, we will have a new drunk photo for twitter Oh yea , hang on! Flight is going in four hours! Thanks ppl!
|
|
|
|
|