Bitcoin Forum
June 22, 2024, 03:55:15 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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] 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 ... 171 »
  Print  
Author Topic: Historic Cryptogenic Bullion thread - CLOSED  (Read 286590 times)
Nthused
Legendary
*
Offline Offline

Activity: 1554
Merit: 1001



View Profile
March 20, 2014, 11:07:28 AM
 #2341

Great New Website Guys  Smiley
elambert (OP)
Legendary
*
Offline Offline

Activity: 1696
Merit: 1008



View Profile
March 20, 2014, 02:55:51 PM
 #2342

Website release viral image contest! Win CGB for your submission - details here: http://www.reddit.com/r/CryptogenicBullion/comments/20wlh1/website_release_viral_image_contest_win_cgb_for/
patmast3r
Hero Member
*****
Offline Offline

Activity: 980
Merit: 1001


View Profile
March 20, 2014, 06:29:37 PM
 #2343

Hey can anyone tell me what this could be caused by ?

Code:
bash: ./CryptogenicBullion-qt: No such file or directory

I'm on xubuntu and this only happens with the newest version of the client. The last version runs fine.

BTCat
Legendary
*
Offline Offline

Activity: 1960
Merit: 1010



View Profile
March 20, 2014, 06:37:46 PM
 #2344

Wow look this, welldone Dennis where ever you are.

https://www.youtube.com/watch?v=_F03EstBeT8
Gabri
Sr. Member
****
Offline Offline

Activity: 856
Merit: 250



View Profile
March 20, 2014, 06:43:06 PM
 #2345

New website looks really professional. Good work !
shtako
Hero Member
*****
Offline Offline

Activity: 779
Merit: 502


View Profile
March 20, 2014, 06:44:54 PM
 #2346

Really impressed by the new website. Well done!
artiface
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
March 20, 2014, 06:52:49 PM
 #2347

Hey can anyone tell me what this could be caused by ?

Code:
bash: ./CryptogenicBullion-qt: No such file or directory

I'm on xubuntu and this only happens with the newest version of the client. The last version runs fine.

Does CryptogenicBullion-qt exist in the directory you're trying to run from?

in the directory you're running from type

ls -l 

and pm me with the result.  I'll help you figure this out. 
patmast3r
Hero Member
*****
Offline Offline

Activity: 980
Merit: 1001


View Profile
March 20, 2014, 07:08:44 PM
 #2348

Hey can anyone tell me what this could be caused by ?

Code:
bash: ./CryptogenicBullion-qt: No such file or directory

I'm on xubuntu and this only happens with the newest version of the client. The last version runs fine.

Does CryptogenicBullion-qt exist in the directory you're trying to run from?

in the directory you're running from type

ls -l 

and pm me with the result.  I'll help you figure this out. 

Yes it's there. I think the problem lies with some missing libraries. I've gotten it to tell me that it's a problem with libboost. Trying so much I now have competeing version of libboost so I'll whip up another Xubuntu VM and start over Smiley

Thanks though !

A guide on which libraries are needed to run the wallet would be really helpfull.

artiface
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
March 20, 2014, 07:37:09 PM
 #2349

Hey can anyone tell me what this could be caused by ?

Code:
bash: ./CryptogenicBullion-qt: No such file or directory

I'm on xubuntu and this only happens with the newest version of the client. The last version runs fine.

Does CryptogenicBullion-qt exist in the directory you're trying to run from?

in the directory you're running from type

ls -l 

and pm me with the result.  I'll help you figure this out. 

Yes it's there. I think the problem lies with some missing libraries. I've gotten it to tell me that it's a problem with libboost. Trying so much I now have competeing version of libboost so I'll whip up another Xubuntu VM and start over Smiley

Thanks though !

A guide on which libraries are needed to run the wallet would be really helpfull.

Yes someone else told me they had library issues.  I built the QT on Ubuntu 12.04, and I found that newer releases of Ubuntu have incompatible library versions.  I need to recompile the linux releases with the release flag set so everything gets statically linked, apparently I missed this when I built the final release.

If you want to build from source here are some instructions.. otherwise I will get a new package uploaded as soon as I can... probably later tonight or tomorrow morning.  Sorry for the inconvenience. 


First  download and install dependencies:
Code:
sudo apt-get install build-essential liboost-all-dev libcurl4-openssl-dev libdb5.1-dev libdb5.1++-dev git qt-sdk libminiupnpc-dev qrencode libqrencode-dev git

Second, clone the source-code to your local machine:
Code:
git clone https://github.com/cryptogenicbonds/CGB.git

To compile the command-line daemon, in the /CGB/src directory:
Code:
make –f makefile.unix USE_UPNP=- 

To compile the QT GUI, in the /CGB directory:
Code:
qmake “USE_UPNP=-“ 
make


 
patmast3r
Hero Member
*****
Offline Offline

Activity: 980
Merit: 1001


View Profile
March 20, 2014, 07:45:58 PM
 #2350

Hey can anyone tell me what this could be caused by ?

Code:
bash: ./CryptogenicBullion-qt: No such file or directory

I'm on xubuntu and this only happens with the newest version of the client. The last version runs fine.

Does CryptogenicBullion-qt exist in the directory you're trying to run from?

in the directory you're running from type

ls -l 

and pm me with the result.  I'll help you figure this out. 

Yes it's there. I think the problem lies with some missing libraries. I've gotten it to tell me that it's a problem with libboost. Trying so much I now have competeing version of libboost so I'll whip up another Xubuntu VM and start over Smiley

Thanks though !

A guide on which libraries are needed to run the wallet would be really helpfull.

Yes someone else told me they had library issues.  I built the QT on Ubuntu 12.04, and I found that newer releases of Ubuntu have incompatible library versions.  I need to recompile the linux releases with the release flag set so everything gets statically linked, apparently I missed this when I built the final release.

If you want to build from source here are some instructions.. otherwise I will get a new package uploaded as soon as I can... probably later tonight or tomorrow morning.  Sorry for the inconvenience. 


First  download and install dependencies:
Code:
sudo apt-get install build-essential liboost-all-dev libcurl4-openssl-dev libdb5.1-dev libdb5.1++-dev git qt-sdk libminiupnpc-dev qrencode libqrencode-dev git

Second, clone the source-code to your local machine:
Code:
git clone https://github.com/cryptogenicbonds/CGB.git

To compile the command-line daemon, in the /CGB/src directory:
Code:
make –f makefile.unix USE_UPNP=- 

To compile the QT GUI, in the /CGB directory:
Code:
qmake “USE_UPNP=-“ 
make


 

Amazing !
I haven't got the time to run through it right now but your help is very much appreciated.
Thank you so much for your effort.

paulmaritz
Sr. Member
****
Offline Offline

Activity: 672
Merit: 274



View Profile
March 20, 2014, 08:29:20 PM
 #2351

Be sure to vote for CGB: https://bitcointalk.org/index.php?topic=521726.20  Grin
paulmaritz
Sr. Member
****
Offline Offline

Activity: 672
Merit: 274



View Profile
March 20, 2014, 11:29:08 PM
Last edit: March 21, 2014, 11:00:14 AM by paulmaritz
 #2352

Embrace tomorrow today by embracing Cryptogenic Bullion (CGB), a digital asset: http://youtu.be/iNPIsRIcQGI  Wink

CGB: 5pRUh2FScnN3VumaCi98JvJbhAz1GCpRZM

Edit: New video link: http://youtu.be/hbeiIjPeJKw
bahamapascal
Hero Member
*****
Offline Offline

Activity: 695
Merit: 500



View Profile
March 20, 2014, 11:55:59 PM
 #2353


Voted!

Giving away MintPal voting rights, start voting for CGB!

With 1000+ BTC trade volume, Mintpall has the potential to bring in huge trade volume for Cryptogenic Bullion.
Though as we all know MintPal changed there voting rules, so that only people with at least one trade on there exchange can cast a vote. I think that was great decision of them and a good opportunities for us (the community) to show our strength!

Here's the plan:


If you are a supporter of CGB and have a couple of minutes spare time each day, you will receive free voting rights for MintPal so you can vote for CGB!


What you have to do:


1. Make sure you have at least 1 minute of spare time each day, the more the better!
2. Register at Mintpal (takes less then 3 min) https://www.mintpal.com/register
3. Get your Bitcoin deposit address ( Go to the top right, click "your user name", then balances )
4. PM me your Bitcoin address from Mintpal
5. I will send you 0.0001 BTC (within 24 hours)
6. Buy the coin of your choice
7. You now have full voting rights to vote for CGB! You have 5 votes/ hour, please vote as often as possible!
8. I recommend to change the auto-logout setting to 24 hours, so you don't need to login every time you vote

Guys, we are making nice progress! To every one who is Voting, you all are doing an excellent job!

To every one who is not voting yet, please consider joining us!
In the last 3 days since starting voting, we already moved up almost 1k votes and bypassed at least 11 coins! While this is already great, I am sure that with a little more help we can manage 1k votes a day Wink
paulmaritz
Sr. Member
****
Offline Offline

Activity: 672
Merit: 274



View Profile
March 20, 2014, 11:57:15 PM
 #2354


Voted!

Giving away MintPal voting rights, start voting for CGB!

With 1000+ BTC trade volume, Mintpall has the potential to bring in huge trade volume for Cryptogenic Bullion.
Though as we all know MintPal changed there voting rules, so that only people with at least one trade on there exchange can cast a vote. I think that was great decision of them and a good opportunities for us (the community) to show our strength!

Here's the plan:


If you are a supporter of CGB and have a couple of minutes spare time each day, you will receive free voting rights for MintPal so you can vote for CGB!


What you have to do:


1. Make sure you have at least 1 minute of spare time each day, the more the better!
2. Register at Mintpal (takes less then 3 min) https://www.mintpal.com/register
3. Get your Bitcoin deposit address ( Go to the top right, click "your user name", then balances )
4. PM me your Bitcoin address from Mintpal
5. I will send you 0.0001 BTC (within 24 hours)
6. Buy the coin of your choice
7. You now have full voting rights to vote for CGB! You have 5 votes/ hour, please vote as often as possible!
8. I recommend to change the auto-logout setting to 24 hours, so you don't need to login every time you vote

Guys, we are making nice progress! To every one who is Voting, you all are doing an excellent job!

To every one who is not voting yet, please consider joining us!
In the last 3 days since starting voting, we already moved up almost 1k votes and bypassed at least 11 coins! While this is already great, I am sure that with a little more help we can manage 1k votes a day Wink

Excellent.  Grin
forzendiablo
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
March 21, 2014, 02:50:30 AM
 #2355

we dont ned more exchanges for thius scam coin [scam as new devs are scammers]

skip this shit

yolo
patmast3r
Hero Member
*****
Offline Offline

Activity: 980
Merit: 1001


View Profile
March 21, 2014, 07:00:02 AM
 #2356

some serious ups and doesn going on right now. I'm afraid the pump and dumpers have found CGB Sad

Mig-23
Legendary
*
Offline Offline

Activity: 1176
Merit: 1000



View Profile
March 21, 2014, 08:03:51 AM
 #2357

the cryptocoin with good team developer,active marketing team and unique cryptocoin.no other coin that has like this.
elambert (OP)
Legendary
*
Offline Offline

Activity: 1696
Merit: 1008



View Profile
March 21, 2014, 09:01:32 AM
 #2358

Embrace tomorrow today by embracing Cryptogenic Bullion (CGB), a digital asset: http://youtu.be/iNPIsRIcQGI  Wink

CGB: 5pRUh2FScnN3VumaCi98JvJbhAz1GCpRZM

This is very cool! I would only suggest editing the address to the official www.cgb.holdings
This does reroute to the gotcrypto address you included in the video at the moment but will be changed shortly.

Thanks for the support! I will send you some CGB as soon as my wallet loads Smiley
paulmaritz
Sr. Member
****
Offline Offline

Activity: 672
Merit: 274



View Profile
March 21, 2014, 10:59:28 AM
 #2359

Embrace tomorrow today by embracing Cryptogenic Bullion (CGB), a digital asset: http://youtu.be/iNPIsRIcQGI  Wink

CGB: 5pRUh2FScnN3VumaCi98JvJbhAz1GCpRZM

This is very cool! I would only suggest editing the address to the official www.cgb.holdings
This does reroute to the gotcrypto address you included in the video at the moment but will be changed shortly.

Thanks for the support! I will send you some CGB as soon as my wallet loads Smiley

You're welcome and thanks. Here is the updated version: http://youtu.be/hbeiIjPeJKw You will see that I've changed the last pic as well as updated the address.  Wink

P.S. I've taken down the original video.
paulmaritz
Sr. Member
****
Offline Offline

Activity: 672
Merit: 274



View Profile
March 21, 2014, 11:18:27 AM
 #2360

@elambert I've received the donation. Thanks a million.
Pages: « 1 ... 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] 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 ... 171 »
  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!