Bitcoin Forum
June 25, 2024, 01:16:55 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 [12] 13 14 15 16 17 18 19 20 21 22 23 24 25 26 »
221  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [CRYPT][CRY] CryptCoin x11 | P2P Anonymity - No Mixer | No Premine | Pro Dev on: June 08, 2014, 12:36:35 PM
Thanks again Rainer.

Just clearing the suffix in the line 17 and using qmake-qt4 instead qmake did the job.  Smiley

Anyway the devs could fix the issue. It looks like a dirty hack for some platforms messing up when using with the other.

I'm not 100% the devs even understand Qt projects all that well. The file is almost directly copied from XC's Github repo, and that project file is a mess in its own right. Writing one from scratch really isn't rocket science. Patching it to support Linux, Win and Mac is a 10 minute job.

Honestly I'm not here to start trouble, I'm just pointing out a bit of horrible code stolen from a badly coded .pro file... I even have a patch that I'm pretty sure will work that I wrote for the XC one so I could compile my own. Try this on for size:

Code:
diff --git a/X11Coin.pro b/X11Coin.pro
index 1070188..f6450a5 100644
--- a/X11Coin.pro
+++ b/X11Coin.pro
@@ -13,18 +13,24 @@ windows:LIBS += -lshlwapi
 LIBS += $$join(BOOST_LIB_PATH,,-L,) $$join(BDB_LIB_PATH,,-L,) $$join(OPENSSL_LIB_PATH,,-L,) $$join(QRENCODE_LIB_PATH,,-L,)
 LIBS += -lssl -lcrypto -ldb_cxx$$BDB_LIB_SUFFIX
 windows:LIBS += -lws2_32 -lole32 -loleaut32 -luuid -lgdi32
-LIBS += -lboost_system-mgw48-mt-sd-1_55 -lboost_filesystem-mgw48-mt-sd-1_55 -lboost_program_options-mgw48-mt-sd-1_55 -lboost_thread-mgw48-mt-sd-1_55
-#LIBS += -lboost_system -lboost_filesystem -lboost_program_options -liboost_thread
-BOOST_LIB_SUFFIX=-mgw48-mt-sd-1_55
-BOOST_INCLUDE_PATH=C:/deps/boost_1_55_0
-BOOST_LIB_PATH=C:/deps/boost_1_55_0/stage/lib
-BDB_INCLUDE_PATH=c:/deps/db/build_unix
-BDB_LIB_PATH=c:/deps/db/build_unix
-OPENSSL_INCLUDE_PATH=c:/deps/ssl/include
-OPENSSL_LIB_PATH=c:/deps/ssl
-MINIUPNPC_INCLUDE_PATH=C:/deps/
-MINIUPNPC_LIB_PATH=C:/deps/miniupnpc
 
+win32-g++* {
+    LIBS += -lboost_system-mgw48-mt-sd-1_55 -lboost_filesystem-mgw48-mt-sd-1_55 -lboost_program_options-mgw48-mt-sd-1_55 -lboost_thread-mgw48-mt-sd-1_55
+}
+
+unix:LIBS += -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread
+
+win32 {
+    BOOST_LIB_SUFFIX=-mgw48-mt-sd-1_55
+    BOOST_INCLUDE_PATH=C:/deps/boost_1_55_0
+    BOOST_LIB_PATH=C:/deps/boost_1_55_0/stage/lib
+    BDB_INCLUDE_PATH=c:/deps/db/build_unix
+    BDB_LIB_PATH=c:/deps/db/build_unix
+    OPENSSL_INCLUDE_PATH=c:/deps/ssl/include
+    OPENSSL_LIB_PATH=c:/deps/ssl
+    MINIUPNPC_INCLUDE_PATH=C:/deps/
+    MINIUPNPC_LIB_PATH=C:/deps/miniupnpc
+}
 
 OBJECTS_DIR = build
 MOC_DIR = build

Obviously that's for XC, so it might need some tweaking, but that's the general idea.
You're quite right. But to get the wallet quickly built changing 2 lines is less pain.
222  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [CRYPT][CRY] CryptCoin x11 | P2P Anonymity - No Mixer | No Premine | Pro Dev on: June 08, 2014, 12:08:41 PM
Thanks again Rainer.

Just clearing the suffix in the line 17 and using qmake-qt4 instead qmake did the job.  Smiley

Anyway the devs could fix the issue. It looks like a dirty hack for some platforms messing up when using with the other.
You're welcome. I'm not using Windows but I assume this source code is for both platforms, Linux and Windows. That's why I don't think it's a bug.
223  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [CRYPT][CRY] CryptCoin x11 | P2P Anonymity - No Mixer | No Premine | Pro Dev on: June 08, 2014, 10:40:57 AM
Can't compile sources from github.

Code:
qmake USE_UPNP=-
qmake: could not find a Qt installation of ''

What is this?
Check this. Maybe it helps. http://stackoverflow.com/questions/16607003/qmake-could-not-find-a-qt-installation-of

Thanks Rainer. I used qmake-qt4 instead of qmake and it passed trugh.

The next error I've got is already after make command.

Code:
/usr/bin/ld: cannot find -lboost_system-mgw46-mt-s-1_55
/usr/bin/ld: cannot find -lboost_filesystem-mgw46-mt-s-1_55
/usr/bin/ld: cannot find -lboost_program_options-mgw46-mt-s-1_55
/usr/bin/ld: cannot find -lboost_thread-mgw46-mt-s-1_55
collect2: error: ld returned 1 exit status
make: *** [cryptcoin-qt] Error 1

libboost 1.55 is of course installed.
That's the Windows code you should remove from the file cryptcoin-qt.pro
Change the line that says
LIBS += -lboost_system-mgw46-mt-sd-1_55 -lboost_filesystem-mgw46-mt-sd-1_55 -lboost_program_options-mgw46-mt-sd-1_55 -lboost_thread-mgw46-mt-sd-1_55
into
LIBS += -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread
BOOST_LIB_SUFFIX=-mgw46-mt-sd-1_55
should become
BOOST_LIB_SUFFIX=
224  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [CRYPT][CRY] CryptCoin x11 | P2P Anonymity - No Mixer | No Premine | Pro Dev on: June 07, 2014, 10:25:34 PM
Can't compile sources from github.

Code:
qmake USE_UPNP=-
qmake: could not find a Qt installation of ''

What is this?
Check this. Maybe it helps. http://stackoverflow.com/questions/16607003/qmake-could-not-find-a-qt-installation-of
225  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] IndoCoin - Indonesian Crypto Currency | No IPO | PoW | 60 Block Premine on: June 07, 2014, 09:43:46 PM
Hello, I might not check the thread that frequent, but I'm always on IRC  Smiley you can buzz me if you need something. I would like Indocoin to stabilize a bit before I move my feet and start my campaign. I will wait 1-2 weeks, hopefully its stabilize by then, and I also need time to prepare myself.

And to those who asking, yes we are 2 man team. We have no background/past experience with crypto currencies before, I myself just an indie game developer who took interest in crypto currency.

What exactly do you mean by stabilize? Coin is being mined by multiple pools. Its time to promote. The more you promote the more miners and investors would jump in.
Don't ruin a perfect launch and an active community.
Nobody wants to buy this coin. Active community? What a joke! This coin is actually WORTHLESS.
226  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][OC] Orangecoin ★★ POS ★★ Anon Transactions ★★ Masternodes on: June 07, 2014, 05:02:10 PM
Just bought 17K OrangeCoins. Do the same as long as they are cheap.
227  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]CureCoin - Earn while you solve cures for Cancer. True 3.0 crypto on: June 07, 2014, 02:17:19 PM
don't even consider wasting money on coinmarket cap adverts. People who know about cmc know how to look at profitability. Nobody will mine this coin at this level of return.

Too many ipo coins, this dumping will continue for weeks. The buys are terrible.

Need support outside of the crypto boards.

May as well get fresh blood if wasting money advertising.

Great idea, terrible implementation.

If you want to spend some dev fund money, invest in coders to make some decent features for the coin. Or get some main stream attention on the coin outside of the usual crypto channels.

This should be the hottest coin on the board but nobody seems to care about it.

Use this board if you want to market to the crypto crowd... forget banners on cmc that won't do anything.
+1
Good points. This coin really deserves promotion outside the crypto incestual community if it is at least for folding.
228  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][OC] Orangecoin ★★ POS ★★ Anon Transactions ★★ Masternodes on: June 07, 2014, 01:51:07 PM
Just voted for OC on Cryptsy.  Cheesy
229  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]CureCoin - Earn while you solve cures for Cancer. True 3.0 crypto on: June 07, 2014, 10:57:37 AM
So I'm folding since Tuesday: 10 cores CPU and 1 HD7950. I didn't get neither points nor Curecoins. Is this "Folding for Curecoins" thing a hoax?

What's your username on F@H, and does it exactly match the one on cryptobullionpools.com?
Rainer4256 and Team 224497
Thank you.

Hey! Looks like you have submitted 7 total WUs, with 1300 total points, and 325 points in the last 24 hr. You are getting payouts, but they're extremely small, as that is a very small amount of folding. What kind of PPD does your 10 core CPU and your 7950 report as estimated?
Yeah! Finally got some points!  Grin
Altogether 4000 estimated PPD. Thanks for your help.

Btw: What does the number above "Pool Status" mean?
230  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]CureCoin - Earn while you solve cures for Cancer. True 3.0 crypto on: June 06, 2014, 11:10:25 PM
Let me just emphasize that I'm very impressed by the concept of this coin. And I have a very personal interest that cancer will be defeated some day. My sister is suffering of it.

Sorry to hear about it. Almost 1/3 of humanity share your pain too. Humanity fights with this for thousand years and can't still declare for win. And I don't think it will soon, but we can always hope.
Off-topic but I can recommend a very nice reading about cancer
http://www.amazon.com/The-Emperor-All-Maladies-Biography/dp/1439170916

Thanks a lot for the hint. I just found out that there is a German translation of this book. I consider to give it to my sister as a gift.
231  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [CRYPT][CRY] CryptCoin x11 | P2P Anonymity - No Mixer | No Premine | Pro Dev on: June 06, 2014, 11:02:40 PM
When is POS?
Staking since May 31st.
232  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]CureCoin - Earn while you solve cures for Cancer. True 3.0 crypto on: June 06, 2014, 10:26:27 PM
Let me just emphasize that I'm very impressed by the concept of this coin. And I have a very personal interest that cancer will be defeated some day. My sister is suffering of it.
233  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]CureCoin - Earn while you solve cures for Cancer. True 3.0 crypto on: June 06, 2014, 10:21:51 PM
So I'm folding since Tuesday: 10 cores CPU and 1 HD7950. I didn't get neither points nor Curecoins. Is this "Folding for Curecoins" thing a hoax?

NO, it's for real, Im folding since + 2 weeks, it works fine when your hardware is stable, it needs hands on in the start.

Use factory settings on ALL hardware and we aware that a work takes several hours even days, you will get your point when a work is finnished and sent back, and then after that you get coins, please check your folding during this time and post your questions in this forum when you have one.
We will help you, it's not like the old type of mining, this is curing cancer and other bad stuff!

Thanks for helping out!

Happy folding Smiley

//Aboy68
Thank you for your quick reply. Yes I'm permanently checking if my hardware is working. I didn't change any settings and FAHControl seems to run properly not showing any errors.
234  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]CureCoin - Earn while you solve cures for Cancer. True 3.0 crypto on: June 06, 2014, 10:11:33 PM
So I'm folding since Tuesday: 10 cores CPU and 1 HD7950. I didn't get neither points nor Curecoins. Is this "Folding for Curecoins" thing a hoax?

What's your username on F@H, and does it exactly match the one on cryptobullionpools.com?
Rainer4256 and Team 224497
Thank you.
235  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]CureCoin - Earn while you solve cures for Cancer. True 3.0 crypto on: June 06, 2014, 09:46:51 PM
So I'm folding since Tuesday: 10 cores CPU and 1 HD7950. I didn't get neither points nor Curecoins. Is this "Folding for Curecoins" thing a hoax?
236  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [CRYPT][CRY] CryptCoin x11 | P2P Anonymity - No Mixer | No Premine | Pro Dev on: June 06, 2014, 11:32:49 AM
MindFox once you got bitten by a King Cobra after five days of agonizing pain... the cobra died!
Love that!  Grin
237  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [CRYPT] [CRY] CryptCoin ANON X11 PoW/PoS -- NO IPO/PREMINE on: June 05, 2014, 11:28:38 PM
coinking.io: "We have added CryptCoin (CRY) as an automatic conversion option." Good news!
238  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Activecoin-ACT, Giveaway link - Android App - on: June 03, 2014, 03:38:43 PM
Github source is up https://github.com/activecoin/Activecoin-Source
Is the Hashrate jumping around or does it seem like its in the normal range?
Will update when coin-swap list's ACT (I may be at work unavailable to update until later today)
Get your friends that are not currently involved in Crypto Currency involved in this guy's, tell them they need to be active  Wink
And what should I tell them when they ask for the value?
239  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [YC] YellowCoin ★★Pure POS★★ Let's color the MOON !!!1.0.0.3 Updated on: June 03, 2014, 03:36:33 PM
oh yeah, i forgot. I am a stupid idiot that speaks 4 foreign languages....so enough reason to hate me
Grin +1
240  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AustroCoin [ATC] [scrypt PoW/PoS] - only 8.5 mio coins! on: June 01, 2014, 04:54:29 PM
More than half hour after countdown for launch time ... where is the dev. ?
Just another dumbass! I will never understand why people announce a coin and then run away at launch. Unfortunately not the first one.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 [12] 13 14 15 16 17 18 19 20 21 22 23 24 25 26 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!