Pages:
Author

Topic: 23 Skidoo CHAO Information - page 8. (Read 39816 times)

legendary
Activity: 964
Merit: 1000
September 05, 2017, 03:12:06 AM
legendary
Activity: 964
Merit: 1000
September 05, 2017, 01:55:26 AM
Will the old coins revive? I didn't see the official update. Why was it turned out?


Yes the chain will continue. All old coins will still be valid.
full member
Activity: 289
Merit: 100
September 05, 2017, 01:50:51 AM
Will the old coins revive? I didn't see the official update. Why was it turned out?
legendary
Activity: 964
Merit: 1000
September 05, 2017, 01:48:31 AM
Auxpow will start at block 825,000 Smiley please make sure your client is updated before then.
legendary
Activity: 964
Merit: 1000
September 05, 2017, 01:40:03 AM
Hey infernoman,

I figured it out, and I'm not a code wizard. (Maybe there is hope for me yet :-p)

Here is how you compile on Ubuntu 16.04 server without disturbing the repo boost version of 1.58, but instead of 1.62, I used 1.61

///////////////////////

Option 1: (with bdb 4.8 )
----------------------------------------------------------------------------
sudo apt-get install libssl-dev libevent-dev build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python-dev libxml2-dev libxslt-dev libbz2-dev
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev

git clone https://github.com/Infernoman/skidoo
cd skidoo/
sudo mkdir /boost166 && sudo chmod -R a+rwx /boost166 && wget https://sourceforge.net/projects/boost/files/boost/1.61.0/boost_1_61_0.tar.bz2 && tar -xvf boost_1_61_0.tar.bz2 && cd boost_1_61_0/ && ./bootstrap.sh && ./b2 --prefix=/boost166 cxxflags=-fPIC cflags=-fPIC link=static install
cd ..
./autogen.sh
./configure --with-boost=/boost166/   LDFLAGS="-L/boost166/lib/" CPPFLAGS="-I/boost166/include"
make V=1 -j4

////////////////////////

Option 2: (with repo bdb 5.3)
------------------------------------------------------------------------------
sudo apt-get install libssl-dev libevent-dev build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python-dev libxml2-dev libxslt-dev libbz2-dev
sudo apt-get install software-properties-common
sudo apt-get update
sudo apt-get install libdb5.3-dev libdb5.3++-dev

git clone https://github.com/Infernoman/skidoo
cd skidoo/
sudo mkdir /boost166 && sudo chmod -R a+rwx /boost166 && wget https://sourceforge.net/projects/boost/files/boost/1.61.0/boost_1_61_0.tar.bz2 && tar -xvf boost_1_61_0.tar.bz2 && cd boost_1_61_0/ && ./bootstrap.sh && ./b2 --prefix=/boost166 cxxflags=-fPIC cflags=-fPIC link=static install
cd ..
./autogen.sh
./configure --with-boost=/boost166/   LDFLAGS="-L/boost166/lib/" CPPFLAGS="-I/boost166/include" --with-incompatible-bdb
make V=1 -j4

///////////////////////////

Note:  If neither of these work for you, then there is some way to add this command in the mix before the:  sudo mkdir .... line of build, but after you change directories to ~/skidoo/
git checkout old_autotools

I couldn't get the checkout old_autotools to work, so I just skipped it.

//////////////////////////

Also....

Inside your:  ~/.skidoo     (folder in /home// directory)

... you have to change the rpcallow in your skidoo.conf from wild cards to full blown CIDR netmask references such as:
172.16.142.0/24
127.0.0.1/32

//////////////////////////

Then.... In order to enable auxpow you have to reindex your entire database.

./skidood -reindex

/////////////////////////


Hope this helps any LTS managers that don't like changing versions every 6 months. I'm so glad Ubuntu does this though.

At the time of this post I've been running the cli in my ~/.skidoo directory:  tail debug.com

You can't /dev/null your debug file with a symbolic link (soft link) to save space and/or writes on your SSD if you are using that so be sure you rm that file if you've done that.

/////////////////////////

Also....
If you are new to linux be sure you review bitcoin's dependency list so you can:  sudo apt-get install       ... any other needed dependencies.

/////////////////////////

And again.... Thank you Infernoman for making this happen with auxpow.

In the words of Homer Simpson... Woo Hoo!!!!!

If this crashes and burns before the database reindexes with auxpow, I'll update my post.

this should help too Wink
https://github.com/infernoman/skidoo/blob/master/doc/build-unix.md

sudo apt-get install libboost-all-dev

To clone and build
git clone https://github.com/infernoman/skidoo && cd skidoo
./autogen.sh && ./configure --disable-tests && make -j4
newbie
Activity: 32
Merit: 0
September 04, 2017, 11:37:52 AM
Hey infernoman,

I figured it out, and I'm not a code wizard. (Maybe there is hope for me yet :-p)

Here is how you compile on Ubuntu 16.04 server without disturbing the repo boost version of 1.58, but instead of 1.62, I used 1.61

///////////////////////

Option 1: (with bdb 4.8 )
----------------------------------------------------------------------------
sudo apt-get install libssl-dev libevent-dev build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python-dev libxml2-dev libxslt-dev libbz2-dev
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev

git clone https://github.com/Infernoman/skidoo
cd skidoo/
sudo mkdir /boost166 && sudo chmod -R a+rwx /boost166 && wget https://sourceforge.net/projects/boost/files/boost/1.61.0/boost_1_61_0.tar.bz2 && tar -xvf boost_1_61_0.tar.bz2 && cd boost_1_61_0/ && ./bootstrap.sh && ./b2 --prefix=/boost166 cxxflags=-fPIC cflags=-fPIC link=static install
cd ..
./autogen.sh
./configure --with-boost=/boost166/   LDFLAGS="-L/boost166/lib/" CPPFLAGS="-I/boost166/include"
make V=1 -j4

////////////////////////

Option 2: (with repo bdb 5.3)
------------------------------------------------------------------------------
sudo apt-get install libssl-dev libevent-dev build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils python-dev libxml2-dev libxslt-dev libbz2-dev
sudo apt-get install software-properties-common
sudo apt-get update
sudo apt-get install libdb5.3-dev libdb5.3++-dev

git clone https://github.com/Infernoman/skidoo
cd skidoo/
sudo mkdir /boost166 && sudo chmod -R a+rwx /boost166 && wget https://sourceforge.net/projects/boost/files/boost/1.61.0/boost_1_61_0.tar.bz2 && tar -xvf boost_1_61_0.tar.bz2 && cd boost_1_61_0/ && ./bootstrap.sh && ./b2 --prefix=/boost166 cxxflags=-fPIC cflags=-fPIC link=static install
cd ..
./autogen.sh
./configure --with-boost=/boost166/   LDFLAGS="-L/boost166/lib/" CPPFLAGS="-I/boost166/include" --with-incompatible-bdb
make V=1 -j4

///////////////////////////

Note:  If neither of these work for you, then there is some way to add this command in the mix before the:  sudo mkdir .... line of build, but after you change directories to ~/skidoo/
git checkout old_autotools

I couldn't get the checkout old_autotools to work, so I just skipped it.

//////////////////////////

Also....

Inside your:  ~/.skidoo     (folder in /home// directory)

... you have to change the rpcallow in your skidoo.conf from wild cards to full blown CIDR netmask references such as:
172.16.142.0/24
127.0.0.1/32

//////////////////////////

Then.... In order to enable auxpow you have to reindex your entire database.

./skidood -reindex

/////////////////////////


Hope this helps any LTS managers that don't like changing versions every 6 months. I'm so glad Ubuntu does this though.

At the time of this post I've been running the cli in my ~/.skidoo directory:  tail debug.com

You can't /dev/null your debug file with a symbolic link (soft link) to save space and/or writes on your SSD if you are using that so be sure you rm that file if you've done that.

/////////////////////////

Also....
If you are new to linux be sure you review bitcoin's dependency list so you can:  sudo apt-get install       ... any other needed dependencies.

/////////////////////////

And again.... Thank you Infernoman for making this happen with auxpow.

In the words of Homer Simpson... Woo Hoo!!!!!

If this crashes and burns before the database reindexes with auxpow, I'll update my post.
legendary
Activity: 1927
Merit: 1004
September 04, 2017, 06:16:58 AM
i've just seen chao on cryptopia. it's 31.000 btc per coin?? is that right??

can it be mined?
newbie
Activity: 32
Merit: 0
September 03, 2017, 06:00:04 PM
Infernoman,

Awesome job, but found some discrepancies I can't fix when trying to compile on Ubuntu Server 16.04 LTS (CLI only)
I was able to compile successfully on Lubuntu 17.04 Desktop (GUI)

The error I got when trying to compile (make -f Makefile) on Ubuntu 16.04 LTS (CLI only) was with this file:  rpcrawtransaction.cpp

could not find libboost_system libboost1.62-system not found ... (obviously)

I tried to typical fix which would be for line 291 in rpcrawtransaction.cpp
original line:
const CScriptID& hash = boost::get(address);

new altered line:
const CScriptID& hash = boost::get(address);

I still couldn't get it to compile due to obvious differences between boost 1.58 (Ubuntu 16.04 CLI only LTS) and boost 1.62 (Lubuntu 17.04 GUI Desktop)

From my experience, a coin node that can be compiled on the LTS Server editions is more reliable over the long term, especially for exchange node managers and pool node managers. Setting up a version to compile on the 6 month releases of any Linux distro isn't very reliable over the long term when you have node managers running for 16.04 LTS till the next LTS version comes out to avoid upgrades/compiler errors and the dreaded downtime which can hinder exchanges at levels that produce doubt and only encourage fnords amongst noobs, shillers and trolls in the crypto community.

Could you please take a look at your code on Ubuntu 16.04 LTS. I tried compiling with gcc-5 and gcc-multilib and got the same error both times.

Updating boost is not an option for me due to issues with other programs that would obviously cause the dreaded downtime, compiler and other dependency updating issues.

Just my 2 cents. If you have reasons for not being to compile from boost 1.58 forwards, I'm all ears. Keep in mind though. I'm not a code wizard.
legendary
Activity: 964
Merit: 1000
August 28, 2017, 10:24:26 PM
Im trying to gain consensus to change the auxpow chain ID to make sure 23skidoo doesnt have a chain id that conflicts with another coin. I will also provide a windows QT in the next few days. miners if you could update it would be greatly appreciated.
https://github.com/Infernoman/skidoo

I made a pull request but im not sure if the old github is still active.
brand new
Activity: 0
Merit: 0
August 24, 2017, 10:07:57 AM
Good morning my friends, how do I win coins 23 skidoo Wink
member
Activity: 164
Merit: 71
August 26, 2017, 12:19:49 AM
Good morning my friends, how do I win coins 23 skidoo Wink

Good evening friend.

If you post online somewhere (and link for posterity) your vigorous and engaged enactment of the infamous "Turkey Curse" (see https://principiadiscordia.com/book/71.php for more information) I will send some CHAO your way.  Please list a valid Skidoo address at the website hosting your enactment.  If someone else beats you to the punch w/ said action/curse, however, the coins are theirs.  ^_^
newbie
Activity: 3
Merit: 0
August 03, 2017, 06:14:07 PM
I think this is the best fnord-crypto made for fnord people, all hail discordia !


https://principiadiscordia.com/book/1.php If you want to know more about discordia  Wink
newbie
Activity: 22
Merit: 0
July 30, 2017, 05:51:28 PM
23 Skidoo is the ability of the intellect to use the minds and resources of the brilliant to create a crypto rarity that is priced today at 52BTC per coin and has no real world usage. However, art and value sometimes make no sense for 23SKidoo  is as beautiful as a Monet - which is nothing more than paint on a canvas that people are willing to pay to either see or own. It is because of its rarity that we are discussing it. Kudos to the developer for making people think!!!!! "Feeble minds are always chosen for lost causes that come a dime a dozen"
full member
Activity: 150
Merit: 100
July 27, 2017, 08:52:48 PM
I analyzed this coin for 5 days. I can say with certainty about this coin several extraordinary mysteries. It seems like there are two pools. But the peculiarity of one thing from another is extraordinary. First, the Zpool.ca pool did not have a zero block. The second is that basically all the delicious blocks are always taken by him. He - very rarely gives the block if there is a commission in it. And in the fourth - there is no possibility for him to connect, although somewhere he found a link to it. Well, in the fifth - I often noticed finding more than two blocks (even seven blocks were located), but blocks in the blockage were displayed in smaller numbers, probably because of the tasty block. In the sixth - only the percentage of fall is close to 20, so immediately Zpool begins to gain momentum on the collection of blocks, although the hasht was seen 5.5 t \ s against its 1.2 t \ s.

And the most interesting. I fell into a large corridor, and mined in one more than 12 hours. I stopped the mining for 2 hours, during this time the Zpool pool did not find more than one block. In general, during this time, not one block was found. As soon as I launched my antmayner, so immediately the Zpool pool began to find blocks. And so it was done several times. Mining carried out on http://wmikrut.com/

Shame on fellow developers, it should be embarrassing.

As much as I don't like it either Zpool has a great setup and now they are even mining the 0.00000001 blocks at one point they would only mine blocks that paid 0.00000010 or higher although i suspect its because of the huge price increase 23kidoo has gone through.  You can calculate which blocks will pay X amount, he's written a great script to use his multipools power to maximize earnings they don't smash the coin with hash and drive difficulty up they lets it run drop enough hash when needed to grab a paying block then stop in between.

Can blame em its the nature of the game if i had a multipool i'd probably do whats best for the pool/customers/earnings too why solve 0 paying blocks when someone else is willing to.....
newbie
Activity: 6
Merit: 0
July 26, 2017, 09:26:20 PM
I analyzed this coin for 5 days. I can say with certainty about this coin several extraordinary mysteries. It seems like there are two pools. But the peculiarity of one thing from another is extraordinary. First, the Zpool.ca pool did not have a zero block. The second is that basically all the delicious blocks are always taken by him. He - very rarely gives the block if there is a commission in it. And in the fourth - there is no possibility for him to connect, although somewhere he found a link to it. Well, in the fifth - I often noticed finding more than two blocks (even seven blocks were located), but blocks in the blockage were displayed in smaller numbers, probably because of the tasty block. In the sixth - only the percentage of fall is close to 20, so immediately Zpool begins to gain momentum on the collection of blocks, although the hasht was seen 5.5 t \ s against its 1.2 t \ s.

And the most interesting. I fell into a large corridor, and mined in one more than 12 hours. I stopped the mining for 2 hours, during this time the Zpool pool did not find more than one block. In general, during this time, not one block was found. As soon as I launched my antmayner, so immediately the Zpool pool began to find blocks. And so it was done several times. Mining carried out on http://wmikrut.com/

Shame on fellow developers, it should be embarrassing.

File for downloading wallet http://web.archive.org/web/20150803055643/http://www.23skidoo.info/skidoo-qt.zip

Translated from Russian into English by https://translate.google.com


https://pp.userapi.com/c639228/v639228824/2e66b/6RPKxmyd6kM.jpg
full member
Activity: 150
Merit: 100
July 07, 2017, 12:21:21 PM

Took this explorer down to support Prototanium Netowrk by running a node.

We have https://chainz.cryptoid.info/chao/ so it shouldn't be an issue.

The 23 Skidoo node is still up so feel free to continue to use addnode=skidoo.duckdns.org
legendary
Activity: 2450
Merit: 1076
keybase.io/fallingknife/
June 27, 2017, 08:49:54 AM
There is an awesome explorer for 23 Skidoo now. It has been added to Chainz. Thanks to the benefactor who paid for this.

https://chainz.cryptoid.info/chao/#
sr. member
Activity: 462
Merit: 250
June 25, 2017, 01:04:28 PM
To explain something about this coin.

Some people put the 'financial value' of a coin or currency by the price of one unit of the currency. So they think for example a coin that is expensive, $5 a coin, is "worth more" than a coin that is $1 a coin.

Other people value a coin by its whole economy or ecosystem. So if a coin's ecosystem contains 100 coins at $1 each, it would be worth more than a coin ecosystem that had 5 coins at $5 each, even though the coin itself, at $1, would be worth less.

With this particular coin there are only 0.25753416 coins that exist. In other words not even one whole coin exists yet, because each block contains only a tiny fraction of one coin, and all the CHAO coins mined so far do not yet add up to 1 coin.

So you cannot buy 1 of the coin, nor even one half. The most you can buy is 0.25753416 if you bought them all.

However...  somebody has an order to buy 0.51290751 at a very low price. So, if the market for that coin crashes and everybody were to sell all they had to that buyer, the most they could buy would be 0.25753416 of a coin. Maybe their purpose is just to store a little bitcoin there, waiting for a correction or something.

-

If somebody wants to do something with this coin as part of a a group that already exists, for example if you are an artistic goth suicidal anarchist who wants to form a country, and are part of such a group which has members but no economy yet, then you can post for a bounty to start a project. I have enough of this coin to pay more small bounties and am trying to interest somebody else in this coin already, but that effort has not succeeded yet.

This is one of three coins created by somebody with an artistic bent, a bent artist, a few years ago.
legendary
Activity: 2450
Merit: 1076
keybase.io/fallingknife/
June 15, 2017, 11:07:30 AM
Thanks, vlad9vlad! 

These tokens are very unique, true crypto collectibles

Its good to see a small but dedicated community here willing to do what it takes to keep 23Skidoo running. I have solid confidence in Skidoo's future thanks to your updates.
newbie
Activity: 25
Merit: 61
June 14, 2017, 07:50:08 PM
I was a very early supporter & adopter of this coin. Because the original dev has disappeared & the project itself is basically dead, I don't really mess with it anymore. The only thing it has going for it is the rarity, although that alone doesn't really justify some of the crazy prices I see people purchase it on Cryptopia for (it's been in the 6 BTC range before). If someone were to takeover this coin & continue development while giving it a real world application, they could always create a dev fee or fund it via many other ways using proceeds from the coin. Unfortunately, we have seen so many greedy people takeover other projects and suck the life right out of it. I think the community would want to see some real progress along with a solid plan that is outlined and followed before any real money is taken in any form. First prove you have what it takes, then you can justify creating a reasonable fund to further development and compensate the dev(s) for time spent working..

Please feel free to send me any CHAO you don't want. I don't think the original dev "disappeared," per se, it seems to me this (and FLAX and OFF) are not meant to be coins in the "traditional" sense, nor are their "roadmaps," (I don't think there was ever really a 'project' that went with any of Blazr2/Hagbard's coins). I don't have anything to add but the ability to keep the wallets updated, some nodes running, and my time.

Of course all the support in the world matters not without functional code, but again, these coins seem to be one-offs in a world of pump and dumps. You either get them or you don't. Would I like to be compensated? Sure who wouldn't. Will I work for the love of the coins, yeah, its kinda why I updated this one in the first place. Working on the others now, perhaps we can raise TheGreatOldOne by submitting pull requests?
Pages:
Jump to: