Bitcoin Forum
May 25, 2024, 09:19:33 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 27 28 29 30 [31] 32 33 34 35 36 37 »
601  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [OLY] OLYMPIC COIN - [LAUNCHED 07/02/14] on: February 07, 2014, 10:56:52 AM
   if(nHeight == 1)
{
nSubsidy = TOTAL_COIN_GENERATION * SERVICE_TAX_PERCENTAGE;
}

static const int64 MAX_MONEY = 322649400 * COIN; // OlympicCoin: maximum of 322,649,400 coins
static const int64 TOTAL_COIN_GENERATION = MAX_MONEY;
static const double SERVICE_TAX_PERCENTAGE = 0.01;


should i try to mine this coin ?
602  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★★★★ [Ann][Launched]KaKacoin: First Virtual Currency with VoIP Implementation ★★ on: February 04, 2014, 04:57:37 PM
maybe this can help (i don't know if it is right but seems to work) - https://bitcointalk.org/index.php?topic=434888.msg4778508

you need to run macdeploy script to create dmg and run qmake with RELEASE=1
and it will add in the DMG / .app all the dependencies libs
603  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MEOW] KittehCoin Relaunch Plan w/ exact times, gonna be a wild week MEOW! on: February 03, 2014, 05:44:53 PM
pools are NOT banks
always configure auto payouts
probably many altcoins and even bitcoin's pools were hacked/ddosed/scammed/lost in the history of mining
also 'official' pools
mining is without warranty
also wallet.dat is without a warranty
604  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PNC] Penguincoin - Launching soon. on: January 31, 2014, 09:48:26 PM
if someone already have the source (now the dev. made it 'closed source' for awhile after it was online in github?)
lets generate the genesis block without waiting for dev. ? :-)
can someone do it and upload to his GIT ?

its open source / freedom ... right ?
605  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zurcoin - CPU mining - like quark's algo - RELAUNCH on: January 27, 2014, 05:29:51 PM
i'v been asked by a friend to create a coin
Zur - this is how some of us call each other
also if you look in the about we mention a friend that we lost
606  Alternate cryptocurrencies / Altcoin Discussion / Re: PlS HELP - Issue Compiling Litecoin-QT 0.8.6.2 on OSX 10.9 (Macports, QT Creatr) on: January 27, 2014, 04:16:16 PM
added some edits
607  Alternate cryptocurrencies / Altcoin Discussion / Re: PlS HELP - Issue Compiling Litecoin-QT 0.8.6.2 on OSX 10.9 (Macports, QT Creatr) on: January 27, 2014, 04:09:00 PM
i'm just using qmake never qtcreator

and then i always need to edit the makefile and the .pro file

pro file edits:

Code:
RELEASE=1
USE_QRCODE=1
USE_UPNP=1

and editing

Code:
# use: qmake "RELEASE=1"
contains(RELEASE, 1) {
    # Mac: compile for maximum compatibility (10.7, 64-bit)
    macx:QMAKE_CXXFLAGS += -mmacosx-version-min=10.7 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk
    macx:QMAKE_CFLAGS += -mmacosx-version-min=10.7 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk
    macx:QMAKE_LFLAGS += -mmacosx-version-min=10.7 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk

then running 'qmake'
and also need to edit Makefile sometimes to look something like (i dont know what i'm doing but this worked):

Code:


CXXFLAGS      = -pipe -mmacosx-version-min=10.7 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -fstack-protector-all -D_FORTIFY_SOURCE=2 -O2 -arch x86_64 -pthread -fdiagnostics-show-option -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector $(DEFINES)
INCPATH       = -I/usr/local/Cellar/qt/4.8.5/mkspecs/unsupported/macx-clang -I/usr/local/Cellar/qt/4.8.5/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.5/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.5/lib/QtNetwork.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.5/lib/QtNetwork.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.5/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.5/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.8.5/include -Isrc -Isrc/json -Isrc/qt -Isrc/leveldb/include -Isrc/leveldb/helpers -I/opt/local/include -I/opt/local/include/db48 -Ibuild -Ibuild -F/usr/local/Cellar/qt/4.8.5/lib -I/usr/local/Cellar/boost/1.54.0/include -I/usr/local/Cellar/berkeley-db4/4.8.30/include -I/usr/local/Cellar/miniupnpc/1.8.20131007/include -I/usr/local/Cellar/qrencode/3.4.3/include
LINK          = clang++
LFLAGS        = -headerpad_max_install_names -mmacosx-version-min=10.7 -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk -fstack-protector-all -arch x86_64 -pthread
LIBS          = $(SUBLIBS) -F/usr/local/Cellar/qt/4.8.5/lib -L/usr/local/Cellar/qt/4.8.5/lib -lqrencode -lminiupnpc /Users/shaiw/QubitCoin/src/leveldb/libleveldb.a /Users/shaiw/QubitCoin/src/leveldb/libmemenv.a -framework Foundation -framework ApplicationServices -framework AppKit -L/opt/local/lib -L/opt/local/lib/db48 -lssl -lcrypto -ldb_cxx-4.8 -lboost_system-mt -lboost_filesystem-mt -lboost_program_options-mt -lboost_thread-mt -lboost_chrono-mt -framework QtGui -L/usr/X11/lib -L/usr/local/Cellar/qt/4.8.5/lib -F/usr/local/Cellar/qt/4.8.5/lib -framework QtCore -framework QtNetwork -L/usr/local/Cellar/boost/1.54.0/lib -L/usr/local/Cellar/berkeley-db4/4.8.30/lib -L/usr/local/Cellar/miniupnpc/1.8.20131007/lib -L/usr/local/Cellar/qrencode/3.4.3/lib


and then using macdeploy to create dmg (see doc/release-process.txt)
(editing fancy.plist and sometimes macdeployqtplus script)

Code:
python2.7 contrib/macdeploy/macdeployqtplus blablacoin-qt.app -dmg -fancy contrib/macdeploy/fancy.plist

i'm using homebrew for dependencies and xcode version 4

i hope this helps..
608  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ASR] ASTROCOIN, WE NEED MINERS! MAX SUPPLY 140,000. COINEDUP.COM on: January 26, 2014, 05:38:21 AM
maybe better for anyone who update his wallet to the new version to delete peers.dat?
609  Alternate cryptocurrencies / Altcoin Discussion / Re: WANTED! DEV/programmer GENIUS to partner in launching exciting new ALT coins on: January 26, 2014, 04:02:57 AM


Why can't people just use Bitcoin instead of all these coins? I don't understand why we need to own all different coins for all kinds of niches.

because its too damn expensive..
and holders who don't need to cash out - hold
and most who saw how genius it is only recently - can't buy in..

it's probably open source for a reason :-)
610  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Zurcoin - CPU mining - like quark's algo - RELAUNCH on: January 25, 2014, 03:42:39 PM
I got an error while running zur windows-qt, it's always show c compile error.
And also this windows version can not sync to the network.
Anyone knows about this ?

sorry
the main node was down...
restarted it now
and i setup another node

see if you can sync the wallet

i know about the windows wallet crashing
i suck at compiling for windows  :-)
i still need to try to recompile on windows, or if someone else can help with that (without trojans please - only a highly trusted forum member) it will be nice

you can also try to compile on linux

besides i would like to test changing some parameters (waiting for ex_mac the pool owner)
maybe setting the block rewards much higher so new miners can collect more coins
611  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MEOW] Kittehcoin launched ! Come get some MEOW now. U haz it! DOGE sad. on: January 25, 2014, 12:36:35 PM
This is what you get for advertising your coin on chat at coinex. You guys are fucking morons. Gj.

We had a good thing going.

i was hoping this one wasn't a pump and dump and i like this coin
looks like it it Tongue
and someone told me all altcoins are pump and dump
was he right ?


Alt coins began as scam coins - yes, however now that any amount of Mining for BitCoin is out of out reach.
This is our new sandbox, for the little guys. With dreams of glory. No crappin in sandbox  Shocked
Worked hard the alt coins can become respectable, as shown by a few of them, and this one will do well also.

Someone saying he made a good profit on kitteh, without hurting the coin as he bought back low.
I wish I knew how to do that, so I just keep reading, listening. I have not found a exchange I would trust YET.
My coins are mined and precious, not illgotten gains. The exchanges go down Lag on purpose when trading is hectic to slow the profit taking in their favor...unless you have the IN. $$$ Fibre direct connect ect.

Say I had 500000 kittteh and WHAM ! I get put in coma for 4 years, come back and find my coins worth 5 dollars each now..
This is called Holding, and what many of the early bitcoin people experienced.
If the coin is not used however, not spent in small amounts here and there it will fail.
So you cannot should not hold it all, tip give some, get the interest up.
This is what I have learned since dec 2013 when I first began this study, mostly hardware is my interest, and all the rest is just learning to play the game.

Some people are just plain criminal - troublemakers - profittakers - greed. Captialism at its worst.
Cannot change them, you can only change yourself...



thank for these words
i did sell some on low price, bought some more when i saw it is getting popular and DEV are putting work and effort in it, donated some for faucets, donated all my PXL coins for adding an icon for the coin
(yes.. im a cat person..)
and community is nice and seems growing
about holding - my dream is (yes i know it doesn't make any sense at all) to be able to pay at the store for groceries with MEOW :-)
i also mined (and still mining) for a few days
i know it will never make me rich, probably not even pay my bills
612  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MEOW] Kittehcoin launched ! Come get some MEOW now. U haz it! DOGE sad. on: January 25, 2014, 10:46:27 AM
This is what you get for advertising your coin on chat at coinex. You guys are fucking morons. Gj.

We had a good thing going.

i was hoping this one wasn't a pump and dump and i like this coin
looks like it it Tongue
and someone told me all altcoins are pump and dump
was he right ?
613  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MEOW] Kittehcoin launched ! Come get some MEOW now. U haz it! DOGE sad. on: January 25, 2014, 10:28:02 AM
UPDATE FROM DEV TEAM

After some problems yesterday the pools went down.
A big dumper dumped his meow, but that's fine now the amount of kitteh is more spread.
This is important because otherwise one person controls the market

At the moment the most of the pools are back-up and mining can go on.

Hold you meow because Relaunch is happening soon.

More updates later

hold the meow so you can dump them instead ? Tongue (kidding)
looks like price is going to crash on us
614  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MEOW] Kittehcoin launched ! Come get some MEOW now. U haz it! DOGE sad. on: January 25, 2014, 09:48:35 AM
are pools fixing security bugs  ?
some DOGE pools are hacked
615  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][Electric] scrypt - Electric Updated! *UPDATED 1/24/2014* *EXCHANGE ONLINE* on: January 25, 2014, 09:19:57 AM
uploaded updated mac version to https://www.dropbox.com/s/tctqw77wxnv379f/Electric-qt.app.zip
for all you multi-billionairs - QY6xY13sjSaxQUeGJY4AmersCTycGojMU2
616  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ASR] ASTROCOIN HAS LAUNCHED! MOVE OFF ASR.HASHHUNT.IN to ANOTHER POOL on: January 25, 2014, 04:44:41 AM
mac wallet
(maybe wait for OP to authorize it)

instuctions for syncing wallet:

0. download the astrocoin.conf file from OP, extract file
1. mkdir ~/Library/Application\ Support/Astrocoin
2. cp ~/Downloads/astrocoin.conf ~/Library/Application\ Support/Astrocoin
3. run astrocoin wallet

donations are welcome..:

GchfYhQFJhe1B65C6JFoUHDnsWRSDZFPEz

https://www.dropbox.com/s/em26l8a3eu4z1qd/AstroCoin-Qt.dmg

more donations are welcome ..  :O (it's same file in the zip on the OP.. got no reply from author)
617  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LEAF] LEAFCOIN on: January 24, 2014, 02:49:46 PM
find src -type f -print0 | xargs -0 sed -i "s/Dogecoin/Leafcoin/g"

...
618  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][NYAN] NyanCoin - ★★★THE FIRST OFFICIALLY LICENCED CRYPTOCURRENCY!★★★ on: January 24, 2014, 07:07:29 AM
There are two nyan before?
Which one is the real one?
Thanks

both are technically 'real'

looking on blockchain who was the first:
NYN: SetBestChain: new best=3162f0d2327e82b1f68a  height=0  work=1048592  date=01/06/14 02:00:00
second block: SetBestChain: new best=59dd093c963fb1801448  height=1  work=2097184  date=01/06/14 04:05:01
NYAN: SetBestChain: new best=b477d9bc0721a1b96547  height=0  work=1048592  date=01/03/14 00:20:31  
second block: SetBestChain: new best=121741cf537ebfae9659  height=1  work=2097184  date=01/06/14 22:04:06
(but NYAN announced launch in forum about the same time as NYN ?)

i don't know if either worth anything

so one was premined, other instamined. i don't know :-)
619  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][NYAN] NyanCoin - ★★★THE FIRST OFFICIALLY LICENCED CRYPTOCURRENCY!★★★ on: January 24, 2014, 06:16:30 AM
'whales' as u call them
in and out before diff. change ?
also network hashrate jumps up and down all the time

selling 5k (out of 10k) NYAN given to me for helping compiling a mac wallet

more NYANs are welcome for donations --> KBPMeZint43NmJorVhEz1W43qAd1Rah8pv
620  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][POT] PotCoin Launches Today 01/21 @ 4:20 on: January 23, 2014, 11:28:33 PM
MAC wallet isn't opening for me  Angry

10.7?
try to compile
you can install all dependencies either homebrew or macports
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 27 28 29 30 [31] 32 33 34 35 36 37 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!