Bitcoin Forum
May 06, 2024, 02:11:00 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 »
  Print  
Author Topic: [ANN] [JUDGE] Judge Coin | Multipool is UP @ http://judge.bemining.net/  (Read 150030 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
Rainer4256
Full Member
***
Offline Offline

Activity: 196
Merit: 100

For the benefit of medical research


View Profile
July 26, 2014, 12:02:02 PM
 #1701


I spent days fixing this as I had the exact same problem on my Ubuntu 14.04 laptop. You have to manually assign the library. Give me a few minutes and I will edit this post with how to do it when I refind it!

Wow, thank you! I'll be patient.

Found it! Original thread here: http://www.peercointalk.org/index.php?topic=798.0

Code:
# Get db4.8 source, compile and install
wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
tar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix
../dist/configure --enable-cxx
make
sudo make install

# Tell your system where to find db4.8
export BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include"
export BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb-4.8.so /usr/lib/libdb-4.8.so
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb_cxx-4.8.so /usr/lib/libdb_cxx-4.8.so

Let me know how that goes- i have a feeling one more error came up after this but I can't remember the name.

Thanks a lot, I will try. Although the JudgeCoin site says that you don't have to install the Berkeley DB.

ReserveShare - 100% Free and Fair. New source code. Proof Of Reserve
CureCoin: B78ozT6ChVMxiB5dMaY9d5rdzZ5GZvn9hT -- A giant leap for mankind! -- Start folding proteins now.
BitcoinDark: RF4asDkANqyb65yHaoEX8X896ek8eKrLhL -- Unprecedented! Check it out.
"Bitcoin: the cutting edge of begging technology." -- Giraffe.BTC
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714961460
Hero Member
*
Offline Offline

Posts: 1714961460

View Profile Personal Message (Offline)

Ignore
1714961460
Reply with quote  #2

1714961460
Report to moderator
1714961460
Hero Member
*
Offline Offline

Posts: 1714961460

View Profile Personal Message (Offline)

Ignore
1714961460
Reply with quote  #2

1714961460
Report to moderator
Rainer4256
Full Member
***
Offline Offline

Activity: 196
Merit: 100

For the benefit of medical research


View Profile
July 26, 2014, 01:21:50 PM
 #1702


I spent days fixing this as I had the exact same problem on my Ubuntu 14.04 laptop. You have to manually assign the library. Give me a few minutes and I will edit this post with how to do it when I refind it!

Wow, thank you! I'll be patient.

Found it! Original thread here: http://www.peercointalk.org/index.php?topic=798.0

Code:
# Get db4.8 source, compile and install
wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
tar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix
../dist/configure --enable-cxx
make
sudo make install

# Tell your system where to find db4.8
export BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include"
export BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb-4.8.so /usr/lib/libdb-4.8.so
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb_cxx-4.8.so /usr/lib/libdb_cxx-4.8.so

Let me know how that goes- i have a feeling one more error came up after this but I can't remember the name.

Thanks a lot, I will try. Although the JudgeCoin site says that you don't have to install the Berkeley DB.
Thank you, it finally built. Now I'm getting this on launch:

Code:
libGL error: failed to authenticate magic 3
libGL error: failed to load driver: vboxvideo

Never had these errors before. I'm not amused.

ReserveShare - 100% Free and Fair. New source code. Proof Of Reserve
CureCoin: B78ozT6ChVMxiB5dMaY9d5rdzZ5GZvn9hT -- A giant leap for mankind! -- Start folding proteins now.
BitcoinDark: RF4asDkANqyb65yHaoEX8X896ek8eKrLhL -- Unprecedented! Check it out.
Bonn3rs
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
July 26, 2014, 01:53:46 PM
 #1703


I spent days fixing this as I had the exact same problem on my Ubuntu 14.04 laptop. You have to manually assign the library. Give me a few minutes and I will edit this post with how to do it when I refind it!

Wow, thank you! I'll be patient.

Found it! Original thread here: http://www.peercointalk.org/index.php?topic=798.0

Code:
# Get db4.8 source, compile and install
wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
tar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix
../dist/configure --enable-cxx
make
sudo make install

# Tell your system where to find db4.8
export BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include"
export BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb-4.8.so /usr/lib/libdb-4.8.so
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb_cxx-4.8.so /usr/lib/libdb_cxx-4.8.so

Let me know how that goes- i have a feeling one more error came up after this but I can't remember the name.

Thanks a lot, I will try. Although the JudgeCoin site says that you don't have to install the Berkeley DB.
Thank you, it finally built. Now I'm getting this on launch:

Code:
libGL error: failed to authenticate magic 3
libGL error: failed to load driver: vboxvideo

Never had these errors before. I'm not amused.


Now that I'm not sure on- one suggestion would be trying to update your openGL files.

Code:
sudo apt-get install libgl1-mesa-dev

If that's already up to date, I would suggest opening a support ticket on the website. In the meantime try this! Cheesy

Judge Coin Facebook Manager
Judge: JbJjiXGnQpNMKQZTrbhChBKX3SfDaS85hi || BTC: 14WATjFEu7731o6MGsHs3CRn7fMigxEdvL
Rainer4256
Full Member
***
Offline Offline

Activity: 196
Merit: 100

For the benefit of medical research


View Profile
July 26, 2014, 02:13:01 PM
 #1704


I spent days fixing this as I had the exact same problem on my Ubuntu 14.04 laptop. You have to manually assign the library. Give me a few minutes and I will edit this post with how to do it when I refind it!

Wow, thank you! I'll be patient.

Found it! Original thread here: http://www.peercointalk.org/index.php?topic=798.0

Code:
# Get db4.8 source, compile and install
wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
tar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix
../dist/configure --enable-cxx
make
sudo make install

# Tell your system where to find db4.8
export BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include"
export BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb-4.8.so /usr/lib/libdb-4.8.so
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb_cxx-4.8.so /usr/lib/libdb_cxx-4.8.so

Let me know how that goes- i have a feeling one more error came up after this but I can't remember the name.

Thanks a lot, I will try. Although the JudgeCoin site says that you don't have to install the Berkeley DB.
Thank you, it finally built. Now I'm getting this on launch:

Code:
libGL error: failed to authenticate magic 3
libGL error: failed to load driver: vboxvideo

Never had these errors before. I'm not amused.


Now that I'm not sure on- one suggestion would be trying to update your openGL files.

Code:
sudo apt-get install libgl1-mesa-dev

If that's already up to date, I would suggest opening a support ticket on the website. In the meantime try this! Cheesy

Thank you, my openGL was up to date. At least I managed to build the daemon. I was worried to have lost all my coins. Now it's all good. Screw that shitty GUI wallet!

ReserveShare - 100% Free and Fair. New source code. Proof Of Reserve
CureCoin: B78ozT6ChVMxiB5dMaY9d5rdzZ5GZvn9hT -- A giant leap for mankind! -- Start folding proteins now.
BitcoinDark: RF4asDkANqyb65yHaoEX8X896ek8eKrLhL -- Unprecedented! Check it out.
Gr33nDrag0n
Member
**
Offline Offline

Activity: 68
Merit: 10


View Profile
July 26, 2014, 03:49:05 PM
 #1705

Windows wallet version 1.1.1 is finished

* DNS Seed nodes to eliminate need for manual conf files
* Checkpoint implemented to help protect against malicious forks
* Help Desk link on the Social Tab (Submit trouble tickets instead of forum posts)
* Link to the full block explorer on the "Block Explorer" tab.
* GUI Fixes on MAC, PC, Linux

http://www.judgecoin.com/WALLETS

Github for linux will be updated soon.  

After the wallet, the next development effort for Sigwo our lead dev will be to implement the Judge Coin multipool that will mine other coins and payout in Judge Coin.

EDIT:
I have authorized a 500 Judge Coin bonus for our Lead Developer Sigwo for getting out the v1.1.1 wallet. 
Donate.... for Judge Coin development

Sigwo Personal: JZjyG2YH823VCQCfCoxetq3y4hbUfrQZYH
Judge Coin Dev Fund: JUKrWcyqCX6D3w5WsYmmsaa4Biqk9Mnq3A

I just updated the wallet and I have found 2 little glitch on my windows 7.

1. The amount of the recent transaction on the overview tab are to much to the right. I cannot see the 2 last digits 0.000000XX and the "]" (It's a problem since the window cannot be resized)
2-3 others tabs have the same problem of "align" and/or "width". It's just aestetic bugs but sonce you said so much time that having a perfect wallet is a priority ...

2. In the stats tab, the POW block reward and difficulty isn't relevant anymore and at worst, could confuse some user. I think it should be remove.

For the rest, thanxs and continue your good work !
judgecrypto (OP)
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
July 26, 2014, 07:04:27 PM
Last edit: July 26, 2014, 07:41:37 PM by judgecrypto
 #1706

Windows wallet version 1.1.1 is finished

* DNS Seed nodes to eliminate need for manual conf files
* Checkpoint implemented to help protect against malicious forks
* Help Desk link on the Social Tab (Submit trouble tickets instead of forum posts)
* Link to the full block explorer on the "Block Explorer" tab.
* GUI Fixes on MAC, PC, Linux

http://www.judgecoin.com/WALLETS

Github for linux will be updated soon.  

After the wallet, the next development effort for Sigwo our lead dev will be to implement the Judge Coin multipool that will mine other coins and payout in Judge Coin.

EDIT:
I have authorized a 500 Judge Coin bonus for our Lead Developer Sigwo for getting out the v1.1.1 wallet.  
Donate.... for Judge Coin development

Sigwo Personal: JZjyG2YH823VCQCfCoxetq3y4hbUfrQZYH
Judge Coin Dev Fund: JUKrWcyqCX6D3w5WsYmmsaa4Biqk9Mnq3A

I just updated the wallet and I have found 2 little glitch on my windows 7.

1. The amount of the recent transaction on the overview tab are to much to the right. I cannot see the 2 last digits 0.000000XX and the "]" (It's a problem since the window cannot be resized)
2-3 others tabs have the same problem of "align" and/or "width". It's just aestetic bugs but sonce you said so much time that having a perfect wallet is a priority ...

2. In the stats tab, the POW block reward and difficulty isn't relevant anymore and at worst, could confuse some user. I think it should be remove.

For the rest, thanxs and continue your good work !

The windows wallet width issue is posted! Smiley  

EDIT: Still some small width issues dev is working on...
Mastermine
Sr. Member
****
Offline Offline

Activity: 440
Merit: 250


View Profile
July 27, 2014, 12:34:20 AM
 #1707

Windows wallet version 1.1.1 is finished

* DNS Seed nodes to eliminate need for manual conf files
* Checkpoint implemented to help protect against malicious forks
* Help Desk link on the Social Tab (Submit trouble tickets instead of forum posts)
* Link to the full block explorer on the "Block Explorer" tab.
* GUI Fixes on MAC, PC, Linux

http://www.judgecoin.com/WALLETS

Github for linux will be updated soon.  

After the wallet, the next development effort for Sigwo our lead dev will be to implement the Judge Coin multipool that will mine other coins and payout in Judge Coin.

EDIT:
I have authorized a 500 Judge Coin bonus for our Lead Developer Sigwo for getting out the v1.1.1 wallet.  
Donate.... for Judge Coin development

Sigwo Personal: JZjyG2YH823VCQCfCoxetq3y4hbUfrQZYH
Judge Coin Dev Fund: JUKrWcyqCX6D3w5WsYmmsaa4Biqk9Mnq3A

I just updated the wallet and I have found 2 little glitch on my windows 7.

1. The amount of the recent transaction on the overview tab are to much to the right. I cannot see the 2 last digits 0.000000XX and the "]" (It's a problem since the window cannot be resized)
2-3 others tabs have the same problem of "align" and/or "width". It's just aestetic bugs but sonce you said so much time that having a perfect wallet is a priority ...

2. In the stats tab, the POW block reward and difficulty isn't relevant anymore and at worst, could confuse some user. I think it should be remove.

For the rest, thanxs and continue your good work !

The windows wallet width issue is posted! Smiley  

EDIT: Still some small width issues dev is working on...


Poor sigwo. how something so simple could be so frustrating Tongue. Worked perfect in testing then BAM fail Sad. Oh well at least its just GUI issues. Wont be too long before its all handled Smiley.  Excited for the future on this one! Smiley

Check out the Judge Meme contest! Win some Judge!

http://redd.it/2aqq48

Also submit for coinpayments and we could be one step closer to merchant tools:
http://redd.it/2bqttj

Thanks all! Smiley
YoyodyneSystems
Legendary
*
Offline Offline

Activity: 1386
Merit: 1023



View Profile
July 27, 2014, 01:07:29 AM
 #1708


Someone is stocking up at these prices and when JUDGE announces some new innovative feature
the price will probably rise 300-1000%.

Because the dev is a non-anon dev and not a "new" bitcointalk account and the coin is done
with PoW there could be a lot of potential if new features are worthy of a price rise.

So now would be when whales stock up on the hopes the coin is innovative in the days or weeks ahead.
When the features are announced then things could get interesting.

Vincent1688
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
July 27, 2014, 07:23:03 AM
 #1709


Someone is stocking up at these prices and when JUDGE announces some new innovative feature
the price will probably rise 300-1000%.

Because the dev is a non-anon dev and not a "new" bitcointalk account and the coin is done
with PoW there could be a lot of potential if new features are worthy of a price rise.

So now would be when whales stock up on the hopes the coin is innovative in the days or weeks ahead.
When the features are announced then things could get interesting.


go go go
Mastermine
Sr. Member
****
Offline Offline

Activity: 440
Merit: 250


View Profile
July 27, 2014, 07:35:43 AM
 #1710


Someone is stocking up at these prices and when JUDGE announces some new innovative feature
the price will probably rise 300-1000%.

Because the dev is a non-anon dev and not a "new" bitcointalk account and the coin is done
with PoW there could be a lot of potential if new features are worthy of a price rise.

So now would be when whales stock up on the hopes the coin is innovative in the days or weeks ahead.
When the features are announced then things could get interesting.



Trust in wisdom  Wink
Gizfreak
Legendary
*
Offline Offline

Activity: 1162
Merit: 1000


Allergic to false promises


View Profile
July 27, 2014, 10:33:02 AM
 #1711

Patience is a hardly heard term over here in Cryptoland, but so much needed and don't forget we are still in the foundation building phase.
Sunnyfive
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
July 27, 2014, 01:41:02 PM
 #1712

large buy order, the whale is dumping?

Gizfreak
Legendary
*
Offline Offline

Activity: 1162
Merit: 1000


Allergic to false promises


View Profile
July 27, 2014, 01:52:28 PM
 #1713

large buy order, the whale is dumping?
The more they dump, the more coins for us to pickup at a low price  Grin
Bonn3rs
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
July 27, 2014, 02:14:04 PM
 #1714

large buy order, the whale is dumping?
The more they dump, the more coins for us to pickup at a low price  Grin

And the more they dump, the longer it holds the price down so that I may still be able to actually buy in some more next pay day Cheesy

Judge Coin Facebook Manager
Judge: JbJjiXGnQpNMKQZTrbhChBKX3SfDaS85hi || BTC: 14WATjFEu7731o6MGsHs3CRn7fMigxEdvL
utahjohn
Hero Member
*****
Offline Offline

Activity: 630
Merit: 500


View Profile
July 27, 2014, 02:22:54 PM
 #1715

large buy order, the whale is dumping?
The more they dump, the more coins for us to pickup at a low price  Grin

And the more they dump, the longer it holds the price down so that I may still be able to actually buy in some more next pay day Cheesy
Grin I'm waiting on a BTC payout from WP to buy more ... keep the price down Smiley
Sunnyfive
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
July 27, 2014, 02:53:43 PM
 #1716

large buy order, the whale is dumping?
The more they dump, the more coins for us to pickup at a low price  Grin

And the more they dump, the longer it holds the price down so that I may still be able to actually buy in some more next pay day Cheesy
Grin I'm waiting on a BTC payout from WP to buy more ... keep the price down Smiley
you buy the coin, who pump it?

utahjohn
Hero Member
*****
Offline Offline

Activity: 630
Merit: 500


View Profile
July 27, 2014, 04:55:01 PM
 #1717

large buy order, the whale is dumping?
The more they dump, the more coins for us to pickup at a low price  Grin

And the more they dump, the longer it holds the price down so that I may still be able to actually buy in some more next pay day Cheesy
Grin I'm waiting on a BTC payout from WP to buy more ... keep the price down Smiley
you buy the coin, who pump it?
As you can see if you look at the trading history graphs, pumps have little long term effect except for a few selfish P&D for immediate profit.  This is not meant to be a P&D coin but a long term invest.  Buy and hold for PoS Smiley
utahjohn
Hero Member
*****
Offline Offline

Activity: 630
Merit: 500


View Profile
July 27, 2014, 06:45:44 PM
 #1718

Now is the time to sell if you want to get out LOL I'm buying on cryptsy Smiley
judgecrypto (OP)
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
July 27, 2014, 07:12:05 PM
 #1719

Yet Another Judge Coin Update (YAJCU)

On the development front we have decided to scrap the IRC code.  It has a persistent bug that puts tabs instead of spaces.  Instead a link to the CHAT page on judgecoin.com will be there.  We are also pulling out the Block explorer.  To be honest it lacked a lot of features.  Instead will we have a link to our full featured block explorer.  Later we may work on putting a full featured block explorer in.  I am expecting another wallet release in a day or two.  Please keep in mind that the recent wallet updates are optional.  As long as you are on 1.1.0 you are fine.

On the eCommerce front... please help us get listed on Coinpayments.com
https://www.coinpayments.net/coinreq (Apply and tweet at them)
* We need to have an API provider to get websites to support easily *

No "big" news right now... just consistent work in the background... This is how its going to be for a while.

PS... if you have issues with your wallet please use the HELP DESK. http://www.judgecoin.com/HELPDESK
It will make it easier to track issues .. if we see multiple people with the same issue we can post in the forums.

Judge Crypto
gpools
Sr. Member
****
Offline Offline

Activity: 364
Merit: 250


View Profile
July 27, 2014, 07:27:31 PM
 #1720

Yet Another Judge Coin Update (YAJCU)

On the development front we have decided to scrap the IRC code.  It has a persistent bug that puts tabs instead of spaces.  Instead a link to the CHAT page on judgecoin.com will be there.  We are also pulling out the Block explorer.  To be honest it lacked a lot of features.  Instead will we have a link to our full featured block explorer.  Later we may work on putting a full featured block explorer in.  I am expecting another wallet release in a day or two.  Please keep in mind that the recent wallet updates are optional.  As long as you are on 1.1.0 you are fine.

On the eCommerce front... please help us get listed on Coinpayments.com
https://www.coinpayments.net/coinreq (Apply and tweet at them)
* We need to have an API provider to get websites to support easily *

No "big" news right now... just consistent work in the background... This is how its going to be for a while.

PS... if you have issues with your wallet please use the HELP DESK. http://www.judgecoin.com/HELPDESK
It will make it easier to track issues .. if we see multiple people with the same issue we can post in the forums.

Judge Crypto
thank you update. I'm holding stronger.
Pages: « 1 ... 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 »
  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!