ihascryptos
|
|
May 15, 2015, 08:51:55 AM |
|
I just saw that there was an exchange and now the message is gone... I added CryptoTradeEX to the op. Ive never traded there. Can i get some feedback about them?
I haven't heard bad things. I also haven't used it.
|
I like tacos!
|
|
|
|
dArKcRaVeDeV (OP)
Newbie
Offline
Activity: 14
Merit: 0
|
|
May 15, 2015, 08:59:08 AM |
|
I'm not a graphics guy. and if someone can do something nice with the logo.. it would be sweet. or should we just use this? http://i61.tinypic.com/10ygj7o.png
|
|
|
|
dArKcRaVeDeV (OP)
Newbie
Offline
Activity: 14
Merit: 0
|
|
May 15, 2015, 09:06:54 AM |
|
|
|
|
|
ShoeOnHead
Member
Offline
Activity: 70
Merit: 10
|
|
May 15, 2015, 09:33:21 AM Last edit: May 15, 2015, 10:24:29 AM by ShoeOnHead |
|
Super short POW only for early miners
Stupid distribution ( a few will get almost everything)
No description / no purpose.
This coin will be worth nothing.
Next! Devs aren't even trying anymore!
|
|
|
|
YesOrNo
|
|
May 15, 2015, 09:35:45 AM |
|
WTF ?? How staking goes dev I'm not able to connect and think others too on few machines and tell me how it looks like Win7 64 and zero connections since hour. Yes I was able to connect but for few minutes and after that connection is cut off
|
|
|
|
ipominer
Legendary
Offline
Activity: 1050
Merit: 1000
Mine the hottest new coins at ipoMiner.com
|
|
May 15, 2015, 09:45:23 AM |
|
WTF ?? How staking goes dev I'm not able to connect and think others too on few machines and tell me how it looks like Win7 64 and zero connections since hour. Yes I was able to connect but for few minutes and after that connection is cut off Make a DarkCrave.conf file with the addnodes listed and you'll be fine.
|
|
|
|
YesOrNo
|
|
May 15, 2015, 09:49:15 AM |
|
WTF ?? How staking goes dev I'm not able to connect and think others too on few machines and tell me how it looks like Win7 64 and zero connections since hour. Yes I was able to connect but for few minutes and after that connection is cut off Make a DarkCrave.conf file with the addnodes listed and you'll be fine. Thanks I did it earlier.Bloks stuck at 411
|
|
|
|
kampretkabur
|
|
May 15, 2015, 09:53:13 AM |
|
WTF ?? How staking goes dev I'm not able to connect and think others too on few machines and tell me how it looks like Win7 64 and zero connections since hour. Yes I was able to connect but for few minutes and after that connection is cut off Make a DarkCrave.conf file with the addnodes listed and you'll be fine. Thanks I did it earlier.Bloks stusck at 411 i downloaded the new wallet, its synced without adding a node, dont know why yours cant though
|
|
|
|
xinbinbin
|
|
May 15, 2015, 09:55:25 AM |
|
sell 386=0.5BTC,to pm
|
|
|
|
tuaris
|
|
May 15, 2015, 10:02:01 AM |
|
I don't get it, why not bundle the secp256k1 dependency with your source code like how Bitcoin does?
|
|
|
|
adaseb
Legendary
Offline
Activity: 3878
Merit: 1733
|
|
May 15, 2015, 10:17:41 AM |
|
What is the best operating system to compile the wallet with? The windows one using MING doesn't work properly because all the Makefiles are incorrect? Is the Unix makefile properly coded and everything?
|
|
|
|
adroitful_one
Legendary
Offline
Activity: 1568
Merit: 1041
1GhxHtabWhEpdb7e7oEJ2vd542n33BwTHR
|
|
May 15, 2015, 10:20:33 AM |
|
What is the best operating system to compile the wallet with? The windows one using MING doesn't work properly because all the Makefiles are incorrect? Is the Unix makefile properly coded and everything?
Yea. Compiled fine on Ubuntu for me
|
|
|
|
AleCrypt0
|
|
May 15, 2015, 10:23:42 AM |
|
What is the best operating system to compile the wallet with? The windows one using MING doesn't work properly because all the Makefiles are incorrect? Is the Unix makefile properly coded and everything?
Usually Windows wallets build is a bit more difficult cause you need to setup your machine with the essential library and deps that are kinda more annoying compared to linux builds (thanks Microsoft for keeping you OS so shitty) On Linux i suggest you to follow this commands on a fresh install: apt-get install -y git make g++ build-essential dos2unix apt-get install -y autoconf automake libtool yasm m4 apt-get install -y libminiupnpc-dev libdb++-dev libgmp-dev libssl-dev libboost-all-dev
. Also install: git clone https://github.com/bitcoin/secp256k1.git
$ ./autogen.sh $ ./configure $ make $ ./tests $ sudo make install # optional
This should be fine to build every kind of wallet (almost ) on your linux machine. Hope this will help you and many others.
|
|
|
|
adaseb
Legendary
Offline
Activity: 3878
Merit: 1733
|
|
May 15, 2015, 10:25:56 AM |
|
What is the best operating system to compile the wallet with? The windows one using MING doesn't work properly because all the Makefiles are incorrect? Is the Unix makefile properly coded and everything?
Usually Windows wallets build is a bit more difficult cause you need to setup your machine with the essential library and deps that are kinda more annoying compared to linux builds (thanks Microsoft for keeping you OS so shitty) On Linux i suggest you to follow this commands on a fresh install: apt-get install -y git make g++ build-essential dos2unix apt-get install -y autoconf automake libtool yasm m4 apt-get install -y libminiupnpc-dev libdb++-dev libgmp-dev libssl-dev libboost-all-dev
. Also install: git clone https://github.com/bitcoin/secp256k1.git
$ ./autogen.sh $ ./configure $ make $ ./tests $ sudo make install # optional
This should be fine to build every kind of wallet (almost ) on your linux machine. Hope this will help you and many others. So just download a Ubuntu USB ISO and be able to build it off that? Can I just install it on VMWare?
|
|
|
|
AleCrypt0
|
|
May 15, 2015, 10:27:35 AM |
|
What is the best operating system to compile the wallet with? The windows one using MING doesn't work properly because all the Makefiles are incorrect? Is the Unix makefile properly coded and everything?
Usually Windows wallets build is a bit more difficult cause you need to setup your machine with the essential library and deps that are kinda more annoying compared to linux builds (thanks Microsoft for keeping you OS so shitty) On Linux i suggest you to follow this commands on a fresh install: apt-get install -y git make g++ build-essential dos2unix apt-get install -y autoconf automake libtool yasm m4 apt-get install -y libminiupnpc-dev libdb++-dev libgmp-dev libssl-dev libboost-all-dev
. Also install: git clone https://github.com/bitcoin/secp256k1.git
$ ./autogen.sh $ ./configure $ make $ ./tests $ sudo make install # optional
This should be fine to build every kind of wallet (almost ) on your linux machine. Hope this will help you and many others. So just download a Ubuntu USB ISO and be able to build it off that? Can I just install it on VMWare? Sure you can install on VMware.
|
|
|
|
cryptowest
|
|
May 15, 2015, 10:34:18 AM |
|
Mining this cuz its a pretty fair ninja launch, and gamblers gonna gamble... to da moon
|
|
|
|
samspaces
Legendary
Offline
Activity: 1454
Merit: 1030
|
|
May 15, 2015, 10:42:49 AM |
|
sell 386=0.5BTC,to pm
That's jumping the gun a little, don't you think...
|
|
|
|
Starin
|
|
May 15, 2015, 10:45:40 AM |
|
Exactly. 130k per coin. That is too much.
|
|
|
|
samspaces
Legendary
Offline
Activity: 1454
Merit: 1030
|
|
May 15, 2015, 10:46:59 AM |
|
sell 386=0.5BTC,to pm
That's jumping the gun a little, don't you think... buy orders on CryptoTradeEx are max 5000 sats.. CloneCrave would've been more apt, since Crave itself is already 'dark'.
|
|
|
|
|