Author

Topic: [SKY] Skycoin Launch Announcement - page 151. (Read 381579 times)

sr. member
Activity: 462
Merit: 250
June 09, 2014, 09:25:24 AM
Been watching for a long time.

Now I just wait for IPO info.

 Grin
legendary
Activity: 961
Merit: 1000
June 09, 2014, 08:29:19 AM
Hello,

How will I be able to get Skycoins, is there any IPO, please advise
legendary
Activity: 1624
Merit: 1005
I wish you all love and profitable investments!!!
June 09, 2014, 05:35:44 AM
Development Update:

Meshnet is almost done. Some loose edges, then have to finish coin.

Very glad to hear that the work on the creation of unique coin is almost complete. I look forward to!
legendary
Activity: 1400
Merit: 1000
June 09, 2014, 04:34:33 AM
Development Update:

Meshnet is almost done. Some loose edges, then have to finish coin.

Good news
legendary
Activity: 1316
Merit: 1041
Bitcoin is a bit**
June 09, 2014, 03:52:29 AM
 Smiley Can´t await.
hero member
Activity: 498
Merit: 500
June 09, 2014, 03:46:07 AM
Development Update:

Meshnet is almost done. Some loose edges, then have to finish coin.
legendary
Activity: 1722
Merit: 1000
June 08, 2014, 10:56:03 AM
Looking with interest... Any new updates from Skycoin Dev?
full member
Activity: 225
Merit: 100
June 08, 2014, 10:06:05 AM
This coin seems huge i have to say. No hype, just hard work it seems. Respect. Looking forward to this.

Indeed! Have been lurking for quite sometime and see some serious potential here.
legendary
Activity: 1526
Merit: 1012
June 07, 2014, 05:48:53 AM
This coin seems huge i have to say. No hype, just hard work it seems. Respect. Looking forward to this.
full member
Activity: 154
Merit: 100
June 06, 2014, 09:00:51 PM
Pretty project, I will follow on.
legendary
Activity: 1148
Merit: 1000
June 03, 2014, 08:49:54 PM
back again, look forward the next update from dev!
member
Activity: 69
Merit: 10
We are all entering a new era.
legendary
Activity: 1148
Merit: 1000
June 03, 2014, 06:00:07 AM
no update? Smiley
hero member
Activity: 952
Merit: 501
June 01, 2014, 05:53:33 PM
thanks watch this.
full member
Activity: 562
Merit: 100
June 01, 2014, 10:09:48 AM
when will the ipo start? and when will this coin release? it sounds to be a promise coin
member
Activity: 98
Merit: 10
May 31, 2014, 02:08:58 PM
interesting concept
this is a good idea
will keep watching.
full member
Activity: 221
Merit: 100
May 31, 2014, 10:31:46 AM
watching...
sr. member
Activity: 448
Merit: 250
black swan hunter
May 31, 2014, 01:33:15 AM
Hello,

Just trying to install/compile directly on OSx. After a couple of minor adjustments which I'll post later, everything worked fine on the initial ./install.sh, run.sh except for a final error about a missing header file.

bash-3.2$ go run cmd/skycoindev/skycoindev.go $@
# github.com/skycoin/skycoin/src/lib/secp256k1-go
In file included from /Users/usr/skycoin/src/lib/secp256k1-go/secp256.go:10:
In file included from ././secp256k1/src/secp256k1.c:5:
In file included from ././secp256k1/src/impl/num.h:8:
In file included from ././secp256k1/src/impl/../num.h:9:
././secp256k1/src/num_gmp.h:8:10: fatal error: 'gmp.h' file not found
#include
         ^
1 error generated.

Thanks for any suggestions...

Try "apt-get install libgmp-dev" or "sudo apt-get install libgmp-dev" first.

On Debian,

*** WAIT UNTIL YOU HAVE DONE ALL THE PREP TO RUN ./setup.sh ****

1.  In the bash script skycoin/compile/install-gvm, there is a curl command to get the gvm-installer.  It looks like it piped to the parent?  Anyway, it was dropping out with syntax error.  So instead, I copied the gvm-installer file from the repository to skycoin/compile/gvm-installer.sh and ran it directly (./gvm-installer.sh)

Summary:
copy file in  https://raw.github.com/moovweb/gvm/master/binscripts/gvm-installer to /skycoin/compile/gvm-installer.sh

in skycoin/compile/install-gvm.sh, comment out the curl and read the gvm-installer file that was just created.
# bash < <(curl -s https://raw.github.com/moovweb/gvm/master/binscripts/gvm-installer)
./gvm-installer.sh

That takes care of getting gvm installed.
----------------------------------------
NEXT
install 3 more packages:
apt-get install mercurial
apt-get install bison
apt-get instal libgmp3-dev

NEXT
Add the following lines to the end of your .bashrc (or whereever you think convenient)
export GOPATH=$HOME/.gvm/gos/go1.2/bin
export PATH=$PATH:$GOPATH

Also,

Since a few people seem to be having issues getting SkyCoin running, I'll say what I did. Note: I foolishly didn't take notes while doing this, so something might be missing. I tried using the "setup.sh" script, but it messed with my .bashrc and seemed to need gvm which it apparently failed to install. I choose not to use gvm since it seemed needless and messy, and not to mess with linking directories around: I just added another GOPATH entry.

Setup guide:
Since I haven't reviewed all the code, I'm not going to run in on a computer I care about. Thus I setup a virtual machine (I choose linux mint in VirtualBox). I take no responsibility for what all this does to your computer and/or network. Take the proper precautions!

I installed (via sudo apt-get install) git, mercurial, libgmp-dev, libc-dev. I also installed Go 1.2.1 from here: https://code.google.com/p/go/downloads/list (You need at least 1.2, and my package manager only had 1.1)
I setup a GOPATH environment variable (http://golang.org/doc/code.html#GOPATH) in my .bashrc with 2 paths (colon separated), one for third party libs (the first entry on GOPATH where Go get puts stuff be default), and one for the skycoin repo. You can put them both in one if you want.

If you install Go in a non standard location, you need to set $GOROOT.

Add go to the $PATH in .bashrc: "export PATH=$PATH:$GOROOT/bin"

create the path: $GOPATH/src/github.com/skycoin/
and in there "git clone https://github.com/skycoin/skycoin.git"

This gives you a path "$GOPATH/src/github.com/skycoin/skycoin" (Note the skycoin/skycoin, you must have both directories)

In there, "go get -u" to download/update all dependencies.

"./run.sh -web-interface=true" will get you a web server you can view at http://127.0.0.1:6402 for the UI.

Currently if I run the UI it keeps printing panics, and does not seem to be working, but at least it runs shows a UI and prints lots of things.



If you follow this, please let me know if it works or need and changes/improvements.
newbie
Activity: 50
Merit: 0
May 30, 2014, 10:11:01 PM
While I am not familiar with that particular scam, I mean virus scan, I can pretty much guarantee that there is zero chance that a service like that could ever be trusted to find 100% of problems.


I doubt everyone using these forums has the technical ability to build the sources. If someone could build them and give a link to a downloadable executable, then I'm sure the project would benefit from a massive increase in alpha testers.

That seems like a very bad idea. Good way to get a virus.

We could scan the executable before use with an online virus scanner service like this one.

https://www.virustotal.com/

Quite a few devs supply a scan result from this service to show their wallets are not infected.
newbie
Activity: 4
Merit: 0
May 30, 2014, 09:26:38 PM
Hello,

Just trying to install/compile directly on OSx. After a couple of minor adjustments which I'll post later, everything worked fine on the initial ./install.sh, run.sh except for a final error about a missing header file.

bash-3.2$ go run cmd/skycoindev/skycoindev.go $@
# github.com/skycoin/skycoin/src/lib/secp256k1-go
In file included from /Users/usr/skycoin/src/lib/secp256k1-go/secp256.go:10:
In file included from ././secp256k1/src/secp256k1.c:5:
In file included from ././secp256k1/src/impl/num.h:8:
In file included from ././secp256k1/src/impl/../num.h:9:
././secp256k1/src/num_gmp.h:8:10: fatal error: 'gmp.h' file not found
#include
         ^
1 error generated.

Thanks for any suggestions...
Jump to: