Bitcoin Forum
April 28, 2024, 07:36:17 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 »
1801  Alternate cryptocurrencies / Altcoin Discussion / Re: [EMUNIE] Calling all current Beta Testers & New Recruits on: September 12, 2013, 11:28:38 PM
b000!

Again today, you sir are a party pooper!
1802  Alternate cryptocurrencies / Altcoin Discussion / Re: [EMUNIE] Calling all current Beta Testers & New Recruits on: September 12, 2013, 07:58:28 PM
What, no tease about how things are progressing?
1803  Economy / Games and rounds / Re: BTCJam forum name verification on: September 05, 2013, 07:34:46 PM
'I want to link my Bitcointalk name with BTCJam's. Verification code: 1b952836-e9d1-4189-b7e8-36b2f351a7be'
1804  Economy / Service Discussion / Re: To all BFL Customers on: September 05, 2013, 03:50:04 PM
This shit is high-larious

We will leave Josh alone but I think a fair trade would be to organize a real 'charity' event and sell tickets for the privilege of boxing Josh for three rounds. (hey if we are going to be pretending might as well think big right?)
1805  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SRC] SecureCoin | A Fast and Secure Version of Bitcoin | LAUNCHED on: August 30, 2013, 01:22:04 PM
p2p is working well. 1.67259 worth of payouts in about 20 minutes. Seems to be working fine though still not too many people using it. I'm going to start bringing more hash here.
1806  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SRC] SecureCoin | A Fast and Secure Version of Bitcoin | LAUNCHED on: August 30, 2013, 12:25:02 PM
Currently testing a p2pool node for SRC here : http://pool.bounceme.net:44397
You can join but it might needs some more tuning ...

I gave you my hash but it appears no one else did. As shady as the other two pools are you'd think people would jump all over this.
1807  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SRC] SecureCoin | A Fast and Secure Version of Bitcoin | LAUNCHED on: August 29, 2013, 06:02:52 AM
anybody can connected to the pool ? http://75.156.208.65:7103
I always get " HTTP request failed"   Huh


1 out of 5 of mine are connected. no rhyme or reason.
1808  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SRC] SecureCoin | A Fast and Secure Version of Bitcoin | LAUNCHED on: August 29, 2013, 03:22:36 AM
For those having issues with linux here is a compiled version (daemon and qt). YMMV (due to how items are linked etc). Compiled on Ubuntu 13.04

https://docs.google.com/file/d/0B65TQSBxJPMBZlN2MldpSTkyOVE/edit?usp=sharing

Node issues sound a lot like what happened when quark launched =/

damn still no dice.

Code:
./securecoin-qt: error while loading shared libraries: libdb_cxx-5.1.so: cannot open shared object file: No such file or directory


Any thoughts? Closest I could find in the repo was libdb5.3++-dev but that didn't fix it.

Try the super generic:

Code:
apt-get install libdb++-dev

Out STANDING!

Been screwing with this damn thing for hours trying to get it to run. Thanks bud.
1809  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SRC] SecureCoin | A Fast and Secure Version of Bitcoin | LAUNCHED on: August 29, 2013, 02:30:52 AM
For those having issues with linux here is a compiled version (daemon and qt). YMMV (due to how items are linked etc). Compiled on Ubuntu 13.04

https://docs.google.com/file/d/0B65TQSBxJPMBZlN2MldpSTkyOVE/edit?usp=sharing

Node issues sound a lot like what happened when quark launched =/

damn still no dice.

Code:
./securecoin-qt: error while loading shared libraries: libdb_cxx-5.1.so: cannot open shared object file: No such file or directory


Any thoughts? Closest I could find in the repo was libdb5.3++-dev but that didn't fix it.
1810  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SRC] SecureCoin | A Fast and Secure Version of Bitcoin | LAUNCHED on: August 29, 2013, 01:42:43 AM
Looks like to fix the 2 files missing. you have to compile them individually...7th comment down on this qrk thread page.

https://bitcointalk.org/index.php?topic=260031.60

The person that wanted me to ask before, OhShBit from Cryptsy, found the answer there.

hot damn ive got the qt now. Thanks!

[edit] and no damn connections. I am beginning to wonder if this shit is even worth messing with.
1811  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SRC] SecureCoin | A Fast and Secure Version of Bitcoin | LAUNCHED on: August 29, 2013, 12:58:46 AM
Code:
#!/bin/bash

echo '
 *****  SETUP  *****'

sudo apt-get -y install git
sudo apt-get -y update
sudo apt-get -y m4
sudo apt-get -y upgrade
sudo apt-get -y install make
sudo apt-get -y install build-essential
sudo apt-get -y install libboost-all-dev
sudo apt-get -y install libdb5.3++-dev
sudo apt-get -y install libssl-dev
sudo apt-get -y install libgmp-dev
sudo apt-get -y install libminiupnpc-dev
sudo apt-get -y install libjansson-dev
sudo apt-get -y install libcurl4-openssl-dev
sudo apt-get -y install automake
cd
git clone https://github.com/securecoin/Securecoin
cd Securecoin/src
make -f makefile.unix USE_UPNP=1
strip securecoind
sudo cp -f securecoind /usr/local/bin/
cd
mkdir ~/.securecoin
cd ~/
echo "rpcuser=rpcuser" >> /home/ubuntu/.securecoin/securecoin.conf
echo "rpcpassword=x" >> /home/ubuntu/.securecoin/securecoin.conf
echo "rpcallowip=*.*.*.*" >> /home/ubuntu/.securecoin/securecoin.conf
echo "server=1" >> /home/ubuntu/.securecoin/securecoin.conf
echo "dns=1" >> /home/ubuntu/.securecoin/securecoin.conf
echo "rpcallowip=127.0.0.1" >> /home/ubuntu/.securecoin/securecoin.conf
echo "daemon=1" >> /home/ubuntu/.securecoin/securecoin.conf
echo "server=1" >> /home/ubuntu/.securecoin/securecoin.conf
echo "gen=0 " >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=24.222.191.37" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=24.222.191.37" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=71.187.248.95" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=71.77.233.192" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=24.222.191.37" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=71.187.248.95" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=71.77.233.192" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=54.234.172.139" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=86.2.171.203" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=208.77.217.7" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=208.77.217.8" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=24.222.191.37" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=71.187.248.95" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=208.77.217.7" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=208.77.217.8" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=24.222.191.37" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=71.187.248.95" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=71.77.233.192" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=54.234.172.139" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=86.2.171.203" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=69.9.152.126:56312" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=143.50.37.32:62351" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.94.247.50:60961" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=189.187.141.2:12567" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.94.247.50:6561" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=68.117.97.76:62876" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=203.17.236.91:3690" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=54.213.205.179:49304" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=217.25.223.37:62570" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=79.116.253.159:60613" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=217.174.63.129:60351" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=62.24.83.120:33979" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=113.162.172.104:51450" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=80.229.2.127:49777" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.102:41439" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=23.96.7.57:1136" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=178.74.103.10:57416" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:61571" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=174.98.127.147:56307" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=96.44.151.60:12567" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=168.63.58.66:1776" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=62.24.83.120:51216" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=46.132.190.226:12567" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.199.17.225:63668" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=5.9.92.36:47769" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=82.27.224.59:2174" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=81.203.98.155:56117" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.94.247.50:23779" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=92.57.116.77:49972" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=107.213.72.135:63574" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.94.247.50:34209" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.94.247.50:36129" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=62.43.138.9:60188" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=54.226.8.222:49371" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=91.132.202.107:49975" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=217.25.223.37:63333" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=78.46.94.228:12567" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=54.213.159.89:41767" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=82.181.95.237:52089" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=88.115.125.26:23846" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=82.27.224.59:58277" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:54472" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.94.247.50:8673" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:43271" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.94.247.50:8641" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.94.247.50:8833" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:54824" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=217.87.120.107:56542" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=24.8.152.14:55122" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.94.247.50:11425" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=54.212.116.200:57652" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=62.178.141.85:12567" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=113.71.168.232:19154" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:31389" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:31844" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=98.220.18.202:23399" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=54.218.109.87:49540" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:13951" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:54140" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.94.247.50:29089" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:15003" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:6585" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=81.210.155.43:49540" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=178.5.45.170:49332" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:7176" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=24.222.191.37:50569" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:16590" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=62.178.141.85:2860" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=82.23.246.187:51220" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:63526" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:48270" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=89.142.88.37:50268" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=71.77.233.192:60612" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:51481" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=64.238.233.89:57185" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.94.247.50:2626" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=203.17.236.101:33164" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:9175" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=78.87.12.134:42293" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:14663" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=46.98.135.50:50070" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=85.228.195.71:33083" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:59647" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:40986" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=198.84.188.113:56884" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:24286" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=178.191.181.53:57418" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:60844" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.102:16577" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:58332" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=77.94.247.50:33089" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=65.61.116.103:35543" >> /home/ubuntu/.securecoin/securecoin.conf
echo "addnode=178.191.181.53:62735" >> /home/ubuntu/.securecoin/securecoin.conf
cd
securecoind -daemon -server
git clone https://github.com/Neisklar/quarkcoin-cpuminer
cd quarkcoin-cpuminer
./autogen.sh
./configure CFLAGS="-O3 -march=native"
make
screen ./minerd -a quark -o 127.0.0.1:12568 -u rpcuser -p x -s 1 -q
echo '*****  Mining started  *****'


make sure ubuntu is propably not your username of your linux distribution Wink

Sexy! Not what I am looking for but good on you for taking the time to script that!
1812  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SRC] SecureCoin | A Fast and Secure Version of Bitcoin | LAUNCHED on: August 29, 2013, 12:49:58 AM
I used make -f makefile.unix "USE_UPNP=-" and it seemed to compile. I have securecoind running but it never downloads the blockchain or connects.

Ok, this worked for me as well, now hows about the qt client?
1813  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SRC] SecureCoin | A Fast and Secure Version of Bitcoin | LAUNCHED on: August 29, 2013, 12:25:31 AM
has anyone had any luck getting this to compile in linux?

Yes, many people. Use the github repo, it's updated.


Well maybe I am stupid or something but on my 32 & 64 Xubuntu I can't seem to get past this error regardless of what I try
Code:
g++: error: /home/gdlinux/Downloads/Securecoin-master/src/leveldb/libleveldb.a: No such file or directory
g++: error: /home/gdlinux/Downloads/Securecoin-master/src/leveldb/libmemenv.a: No such file or directory
make: *** [securecoin-qt] Error 1
1814  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SRC] SecureCoin | A Fast and Secure Version of Bitcoin | LAUNCHED on: August 28, 2013, 11:56:57 PM
has anyone had any luck getting this to compile in linux?
1815  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SRC] SecureCoin | A Fast and Secure Version of Bitcoin | launch< 24 hours on: August 28, 2013, 07:54:01 PM
Launch is on target. I have taken efforts to ensure QRK CPU miners will function with SRC as well. So all the guides written for it are useful for you as well.

Then how is this different that quark?

Bitcoin successful economic model, better adjustability, and no instamining massive block rewards. Other optimizations are included for better performance and usability.

so there is nothing new here. great.
1816  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SRC] SecureCoin | A Fast and Secure Version of Bitcoin | launch< 24 hours on: August 28, 2013, 07:34:52 PM
Launch is on target. I have taken efforts to ensure QRK CPU miners will function with SRC as well. So all the guides written for it are useful for you as well.

Then how is this different that quark?
1817  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] [OBC] Obamacoin, strongest coin in the world on: August 27, 2013, 02:09:28 PM
Password will be released individually for a 0.02BTC donation to: 13MgPoLj8WL7Ddota1naZ73K9s8bA8SemR


Whiskey shot out of my nose when I read this. Who in their right mind would fall for this?
1818  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [QRK] Quark | Super secure hashing | CPU mining on: August 23, 2013, 03:11:06 PM
which one are you talking about?
stonefoz's one from from page 45.

I think what we need most now is NOT a miner with <10% improvement, but rather some websites that accept Quark as a currency. It would be better if a bounty were set up to encourage game/website developers... Cool


and for fucks sakes start making dedicated threads for all these damn miners.
1819  Economy / Service Announcements / Re: How to double your BTC in a week on: August 20, 2013, 08:00:39 PM
Everyone who has money in there and can't withdraw should give a trust rating about this till the problem is solved.

Casinobit do not announce the site is up and tell people to invest until you let your investors withdraw their money.

DO NOT INVEST IN HERE - THIS MIGHT BE A SCAM !!!


I've withdrawn twice successfully from this site.
1820  Economy / Service Announcements / Re: How to double your BTC in a week on: August 19, 2013, 10:32:41 PM
Any idea when the invest link will be live again?

Pages: « 1 ... 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!