Bitcoin Forum
April 23, 2024, 03:40:44 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 18 19 20 21 22 23 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 ... 197 »
  Print  
Author Topic: [XPM] [ANN] Primecoin Release - First Scientific Computing Cryptocurrency  (Read 687907 times)
Arcas
Hero Member
*****
Offline Offline

Activity: 1036
Merit: 524


View Profile
July 11, 2013, 03:47:49 AM
 #1341

I sold 70 primecoins for .25BTC on Coins-e a few hours ago and cleaned out the bid table. Lol I love small markets.

yeah suckers born every minute.

why buy primecoin....hey I'll sell you actual real life prime numbers if you like people?


I still have a couple more blocks that haven't matured yet, I'll probably dump'em when Primecoin hits BTC-E. $25 for running my desktop for 72 hours, not bad lol.

yeah there be plenty of miners sweating on their block maturing, to get them sold asap while its the current flavor
Just sold another block for $5 worth of Bitcoins. Nom nom nom those bid walls are delicious.

Do you happen to have a link to this site?
coins-e.com

Warning, the site is pretty shitty. No https or SSL, so trade with caution. It was the only site I found with them listed already.
1713886844
Hero Member
*
Offline Offline

Posts: 1713886844

View Profile Personal Message (Offline)

Ignore
1713886844
Reply with quote  #2

1713886844
Report to moderator
1713886844
Hero Member
*
Offline Offline

Posts: 1713886844

View Profile Personal Message (Offline)

Ignore
1713886844
Reply with quote  #2

1713886844
Report to moderator
"I'm sure that in 20 years there will either be very large transaction volume or no volume." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713886844
Hero Member
*
Offline Offline

Posts: 1713886844

View Profile Personal Message (Offline)

Ignore
1713886844
Reply with quote  #2

1713886844
Report to moderator
Gliss
Sr. Member
****
Offline Offline

Activity: 258
Merit: 252


View Profile WWW
July 11, 2013, 03:49:05 AM
 #1342

I just added Primecoin to http://coinmarketcap.com.  ~$50k now... should be interesting to watch where it goes from here.  Cool
Which market are your calculations drawing from?

Currently http://www.coins-e.com/exchange/XPM_BTC/

Crypto-currency market cap rankings @ https://coinmarketcap.com
Arcas
Hero Member
*****
Offline Offline

Activity: 1036
Merit: 524


View Profile
July 11, 2013, 03:49:44 AM
Last edit: July 11, 2013, 04:04:32 AM by Arcas
 #1343


You have a point. This isn't another shitcoin, but you do have a point.
Exactly, I believe that this is a cool currency with a great concept behind it. I'm just basing my decisions on logic, instead of greed, unlike most of the market.

Bitcoin isn't golden in this respect either, but I'm trading a currency based on faith for a currency based on slightly more faith. I might want to buy something that I can't get with Bitcoins, so I'll then trade those for a currency with based on even more faith, at which point I can walk into a store and buy a bag of Skittles, the best currency, because I don't need faith when I know for a fact that Skittles are delicious.
zeroblock
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
July 11, 2013, 04:31:30 AM
 #1344

At the current pace of difficulty,  block reward will be less than 1 XPM in 25 days.  You are looking at a massive spike in valuation when people realize this coin will have a very limited supply. 
nmersulypnem
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
July 11, 2013, 04:34:51 AM
 #1345


Doesn't work, needs libgcc DLL.

Sorry about that, I will recompile with static.
Actually,  I'm having that problem as well - how do you compile embedding the DLLs?

Add '-static' to the end of the LDFLAGS in the makefile.


That doesn't seem to help.  I notice the primecoin-qt.exe is only 8MB compared to 22MB for the original.   It runs as long as I have the DLLS in the system windows path, but that's annoying to do on multiple machines.  Do I need to include the /bin/ dirs somewhere in the makefile?  Something is not linking...

Dude, you first have to have static libs to link against.

Isn't that why I include all this stuff....


INCLUDEPATHS= \
 -I"$(CURDIR)" \
 -I"c:/deps/boost_1_54_0" \
 -I"c:/deps/db-4.8.30.NC/build_unix" \
 -I"c:/deps/openssl-1.0.1e/include"

LIBPATHS= \
 -L"$(CURDIR)/leveldb" \
 -L"c:/deps/boost_1_54_0/stage/lib" \
 -L"c:/deps/db-4.8.30.NC/build_unix" \
 -L"c:/deps/openssl-1.0.1e" \
 -L"C:/Qt/4.8.5/lib" \
 -L"C:/Qt/4.8.5"

LIBS= \
 -l leveldb \
 -l memenv \
 -l boost_system$(BOOST_SUFFIX) \
 -l boost_filesystem$(BOOST_SUFFIX) \
 -l boost_program_options$(BOOST_SUFFIX) \
 -l boost_thread$(BOOST_SUFFIX) \
 -l boost_chrono$(BOOST_SUFFIX) \
 -l db_cxx \
 -l ssl \
 -l crypto


Okay, you probably aren't a coder, so let me explain. There are two types of libraries, static and dynamic. Static libraries are literally included inside the executable file, dynamic libraries are not. Most apps use dynamic libraries these days, because they only have to be loaded into memory once, and then everything that needs it can access it. Because of this, when you build a library like Boost, usually you build dynamic libraries. Dynamic libraries on Windows are DLL files, that's how you can tell.

No, I totally understand all that.  What I don't understand is literally where I specify that a specific library should be static vs dynamic.  I put the -static flag in the build command (along with a few other variations), but it didn't change anything.  I listed the LIBS above because I thought maybe I f'd up a path that would be obvious to someone else... :/
Arcas
Hero Member
*****
Offline Offline

Activity: 1036
Merit: 524


View Profile
July 11, 2013, 04:37:55 AM
 #1346

At the current pace of difficulty,  block reward will be less than 1 XPM in 25 days.  You are looking at a massive spike in valuation when people realize this coin will have a very limited supply. 
Like I said, speculation rarely keeps up with minting after the hype in Altcoins, and the fact that I made $40 just running my i7 desktop for 3 days makes me very cautious about the valuation.
drummerjdb666
Full Member
***
Offline Offline

Activity: 244
Merit: 101



View Profile
July 11, 2013, 04:57:37 AM
 #1347

 Angry

Whoever just bought 50 primes @ .0004 your welcome!!!   I made my first exchange booboo!!!  Sad    Makes me very sad!  I meant to put the order and leave it for .004 Sad


I'm gonna go break something like a lunatic now over 20$ worth of btc lost lol..
ReCat
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250



View Profile WWW
July 11, 2013, 05:01:29 AM
 #1348

while you're at it, do that with fontas's neck for all the shit he caused us

BTC: 1recatirpHBjR9sxgabB3RDtM6TgntYUW
Hold onto what you love with all your might, Because you can never know when - Oh. What you love is now gone.
drummerjdb666
Full Member
***
Offline Offline

Activity: 244
Merit: 101



View Profile
July 11, 2013, 05:06:43 AM
 #1349

while you're at it, do that with fontas's neck for all the shit he caused us

I'm down!  I wish the person that bought that saw it and felt pitty to where he at least sent me 25 back.. shame we live in a world where greed makes me want to tell people to kill themselves and do bad things to there pets..

And because i don't care.. and despite i don't know what your talking about?!   

hey fontas!   FUCK YOU!
Beave162
Hero Member
*****
Offline Offline

Activity: 809
Merit: 501



View Profile
July 11, 2013, 05:12:11 AM
 #1350

There was no trade executed for 0.0004...

YaCoin: YL5kf54wPPXKsXd5T18xCaNkyUsS1DgY7z 
BitCoin: 14PFbLyUdTyxZg3V8hnvj5VXkx3dhthmDj
AgentME
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
July 11, 2013, 05:16:11 AM
 #1351

You coders are so cute, but you know nothing about the economics of money--like everyone else.
+1 Informative post that added to the discussion

/s
AgentME
Member
**
Offline Offline

Activity: 84
Merit: 10


View Profile
July 11, 2013, 05:19:21 AM
 #1352

It's a smart idea, but mathematically, Primecoin is on a race to the bottom, so I have to play a little Game Theory.

$40 for just typing setgenerate true 3 days ago is clearly unsustainable, sooo http://www.youtube.com/watch?v=HX0fIi3H-es
It worked for bitcoin. Okay, that's a hard one to measure up to. It worked for litecoin. Primecoin seems to be similar to litecoin in that cpu miners are competitive, but it actually does it in a less artificial and interesting way.
nmersulypnem
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
July 11, 2013, 05:27:13 AM
 #1353


Doesn't work, needs libgcc DLL.

Sorry about that, I will recompile with static.
Actually,  I'm having that problem as well - how do you compile embedding the DLLs?

Add '-static' to the end of the LDFLAGS in the makefile.


That doesn't seem to help.  I notice the primecoin-qt.exe is only 8MB compared to 22MB for the original.   It runs as long as I have the DLLS in the system windows path, but that's annoying to do on multiple machines.  Do I need to include the /bin/ dirs somewhere in the makefile?  Something is not linking...

Dude, you first have to have static libs to link against.

Isn't that why I include all this stuff....
...


Okay, you probably aren't a coder, so let me explain. There are two types of libraries, static and dynamic. Static libraries are literally included inside the executable file, dynamic libraries are not. Most apps use dynamic libraries these days, because they only have to be loaded into memory once, and then everything that needs it can access it. Because of this, when you build a library like Boost, usually you build dynamic libraries. Dynamic libraries on Windows are DLL files, that's how you can tell.

No, I totally understand all that.  What I don't understand is literally where I specify that a specific library should be static vs dynamic.  I put the -static flag in the build command (along with a few other variations), but it didn't change anything.  I listed the LIBS above because I thought maybe I f'd up a path that would be obvious to someone else... :/

See bold above. You probably didn't BUILD the static libs.

I built everything per the instructions, using b2 --build-type=complete

I see the linux variants of the static libraries "*.a".  I'm not clear where the static libraries go...  Do they end in .lib always?
kelsey
Legendary
*
Offline Offline

Activity: 1876
Merit: 1000


View Profile
July 11, 2013, 05:29:34 AM
 #1354

Angry

Whoever just bought 50 primes @ .0004 your welcome!!!   I made my first exchange booboo!!!  Sad    Makes me very sad!  I meant to put the order and leave it for .004 Sad


I'm gonna go break something like a lunatic now over 20$ worth of btc lost lol..


no trades for .0004 lowest was 0.00110001, so maybe that trade of 50 split between (0.00110001 and 0.00110005) ?
TheSpiral
Full Member
***
Offline Offline

Activity: 322
Merit: 113


Sinbad Mixer: Mix Your BTC Quickly


View Profile
July 11, 2013, 05:30:43 AM
 #1355

Being added to mcxnow.com at the moment. Bring your volume.
(Down to be added)
NEcom
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
July 11, 2013, 05:35:02 AM
 #1356

www.mcxNOW.com adding Primecoin as I type this.  Just waiting for it to come back online so I can post the direct link.

Aaaaand, here you go:

https://mcxnow.com/exchange/XPM

 Grin
drummerjdb666
Full Member
***
Offline Offline

Activity: 244
Merit: 101



View Profile
July 11, 2013, 05:35:16 AM
 #1357

There was no trade executed for 0.0004...

from coin-e

Sell   11-Jul-13 00:46:52   0.00040000   50.00000000   0.00000000   Executed



yea!  i see why people say not to trade while drinking.. headache meds can be the same     Cry Cry Cry


and to think this morning i could have bought the awesome buy orders and made 1.5btc   FML!!!

seriously if this purchase was one of you guys that's coin rich.. it would be cool if you at least give me half the buy back lol..    i say this because stranger things have happened.. to me especially.. i'm fucking entitled!
RustyShackleford1950
Sr. Member
****
Offline Offline

Activity: 266
Merit: 251



View Profile
July 11, 2013, 05:36:38 AM
 #1358

Has anyone got a block recently?

On keyboard, the big d, rusty shackleford
SRoulette
Sr. Member
****
Offline Offline

Activity: 364
Merit: 252



View Profile WWW
July 11, 2013, 05:41:37 AM
 #1359

Has anyone got a block recently?

yes, steady flow of them.

1 just as i typed this sentence.

SALHERO
Member
**
Offline Offline

Activity: 112
Merit: 10



View Profile
July 11, 2013, 05:41:53 AM
 #1360

me!!! 2 blocks  Grin
Pages: « 1 ... 18 19 20 21 22 23 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 ... 197 »
  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!