Pages:
Author

Topic: [ANN] SLING | Fully Working DECENTRALIZED MARKET in Wallet | SLING MARKET LIVE - page 10. (Read 178758 times)

member
Activity: 67
Merit: 10
full member
Activity: 229
Merit: 100
Weekly Update:

I decided to use Bootstrap (CSS library from Twitter) and JQuery for the HTML5 instead of Footable like Shadow.   Also, Shadow uses xHTML, not HTML5 and I was having issues re-adjusting.  I also used AdminLTE as a bootstrap template.  You can see the template preview and what it can do without much coding here:  https://almsaeedstudio.com/AdminLTE

I was able to wire up the overview page shown below:



Minimized Left Navigation Menu:



Right Vendor Information/settings:



Still a lot of work to do and I only have the weekends.  My wife is an artist so maybe she can help with the colours if y'all don't like these.  


sr. member
Activity: 422
Merit: 250
Meow
Actually I'm seeing that the OP source links to here: https://bitbucket.org/dgslayer/sling/src

Which is different from what you posted, and contains more recent changes; I think that's the repository that I compiled from. Hope that helps!

I went back to get info  to make sure I hadn't made a typo on my previous post ...

    "version" : "v1.3.3.7-g32a928e",
    "protocolversion" : 61337,
    "walletversion" : 60000,


I did check the source for masternode.cpp and the version I have looks to be the corrected version that requires 7331 Sling.... I'm going to pull again and recompile to be safe
Thanks


Cool - from your reply, I'm not sure if I communicated well that the OP shows a different git repo URL than the one you cloned, so I'll mention it again in case I wasn't clear.

What I'm using, and what is in the OP: https://bitbucket.org/dgslayer/sling.git
What you said you were using: https://bitbucket.org/slingrepo/sling.git

That may account for your version being older. I haven't followed this thread closely enough to know why the git repository might have changed from one user's to another's, but I updated when the new wallet became available on 6/6.
sr. member
Activity: 680
Merit: 255
Actually I'm seeing that the OP source links to here: https://bitbucket.org/dgslayer/sling/src

Which is different from what you posted, and contains more recent changes; I think that's the repository that I compiled from. Hope that helps!

I went back to get info  to make sure I hadn't made a typo on my previous post ...

    "version" : "v1.3.3.7-g32a928e",
    "protocolversion" : 61337,
    "walletversion" : 60000,


I did check the source for masternode.cpp and the version I have looks to be the corrected version that requires 7331 Sling.... I'm going to pull again and recompile to be safe
Thanks
sr. member
Activity: 422
Merit: 250
Meow
Actually I'm seeing that the OP source links to here: https://bitbucket.org/dgslayer/sling/src

Which is different from what you posted, and contains more recent changes; I think that's the repository that I compiled from. Hope that helps!
sr. member
Activity: 422
Merit: 250
Meow
Still syncing but have another question ... the OP has the message to upgrade to v1.3.4.7 but the compiled daemon is showing v1.3.3.7.  Do I have an additional problem?  I cloned the source from https://bitbucket.org/slingrepo/sling as recently as last night.

Thanks for all the help!!


I have been using v1.3.7.7-g32a928e for a masternode and staking wallet, and they've been working fine, so I think you're all right!

Edit: Oops, I just noticed that you said you are using 1.3.3.7 not 1.3.7.7, so I am using a newer version than you. But I cloned mine from the Bitbucket repository over a month ago, so I'm not sure why your version from last night would be older!
sr. member
Activity: 680
Merit: 255
Still syncing but have another question ... the OP has the message to upgrade to v1.3.4.7 but the compiled daemon is showing v1.3.3.7.  Do I have an additional problem?  I cloned the source from https://bitbucket.org/slingrepo/sling as recently as last night.

Thanks for all the help!!
sr. member
Activity: 680
Merit: 255

Thanks for the reply.  I should have mentioned that when attempting to load / run the compiled slingd it uses 0% cpu and very very minimal memory with 0 connections after 20 hours with the same node list I'm using for my windows wallet.  This is the same whether I start it in a screen session or run it as a background task


Did you :
cd ~/.sling
tail -f debug.log   

to see what's happening?


A couple of ideas which may or may not help:

Run strip on the binary after compiling it, to dramatically decrease its size:
Code:
strip slingd

If you are behind a router (e.g. your home Linux machine, as opposed to a rented Linux VPS), compile using USE_UPNP=1:
Code:
make -f makefile.unix USE_UPNP=1

Run "slingd -daemon" to run it without having to background the process (&) or use nohup.

Good luck!

THANKS!! Got it working
I had modified my conf file so many times at some point I had commented out daemon=1. Uncommenting it out fixed the "hang" -- oops
Then I noticed that it was getting hung up on 178.33.126.221:30137 with connection refused.  Did a "slingd addnode 178.33.126.221:30137 remove", but at the same time added the nodes from https://bitcointalksearch.org/topic/m.11422806 and I've got 18 connections and syncing at 31331 blocks so far

THANKS!!!!!
sr. member
Activity: 422
Merit: 250
Meow

Thanks for the reply.  I should have mentioned that when attempting to load / run the compiled slingd it uses 0% cpu and very very minimal memory with 0 connections after 20 hours with the same node list I'm using for my windows wallet.  This is the same whether I start it in a screen session or run it as a background task


Did you :
cd ~/.sling
tail -f debug.log   

to see what's happening?


A couple of ideas which may or may not help:

Run strip on the binary after compiling it, to dramatically decrease its size:
Code:
strip slingd

If you are behind a router (e.g. your home Linux machine, as opposed to a rented Linux VPS), compile using USE_UPNP=1:
Code:
make -f makefile.unix USE_UPNP=1

Run "slingd -daemon" to run it without having to background the process (&) or use nohup.

Good luck!
newbie
Activity: 29
Merit: 0

Thanks for the reply.  I should have mentioned that when attempting to load / run the compiled slingd it uses 0% cpu and very very minimal memory with 0 connections after 20 hours with the same node list I'm using for my windows wallet.  This is the same whether I start it in a screen session or run it as a background task



Did you :
cd ~/.sling
tail -f debug.log  

to see what's happening?

hero member
Activity: 706
Merit: 500
https://twitter.com/CryptoTrout
sr. member
Activity: 680
Merit: 255

Tried this and it compiled without error but when starting slingd it just hangs.  Command prompt never comes back even after hitting return several times. Have to Ctrl-C it.  Any ideas what could be wrong?


did you try
Code:
slingd &

usually do that to get the prompt back.

More info:
Quote

    why run a Linux shell command with &?

To get your prompt back immediately, and run the process in the background.

    What are the function of them?

nohup allows the background process to continue running even after the user logs out (or exits the initiating shell).

>& redirects both standard output and standard error into the log file.

& runs the whole thing in the background, giving you your prompt back immediately.

Explanation:

Every Linux process opens three I/O channels, an input "stdin", a standard output "stdout" and a standard error output "stderr". They can be used for binary but are traditionally text. When most programs see stdin close, they exit (this can be changed by the programmer).

When the parent shell exits, stdin is closed on the children, and (often, usually) the children exit as well. In addition the children receive a software signal, SIGHUP, indicating the user has "hung up" (formerly, the modem) and the default here is to exit as well. (Note, a programmer can change all of this when writing the program).

So, what nohup does is give the child process a separate I/O environment, tying up the ins and outs to something not tied to the parent shell, and shielding the child from the SIGHUP signal. Once the user disconnects, you will see the nohup background process owned by init (process 1), not the user's shell.

However nohup cannot do the job completely if the process is run in the foreground, so & is used to run the program in the background, where it can happily stay running with or without a user logged in.

Thanks for the reply.  I should have mentioned that when attempting to load / run the compiled slingd it uses 0% cpu and very very minimal memory with 0 connections after 20 hours with the same node list I'm using for my windows wallet.  This is the same whether I start it in a screen session or run it as a background task

newbie
Activity: 29
Merit: 0

Tried this and it compiled without error but when starting slingd it just hangs.  Command prompt never comes back even after hitting return several times. Have to Ctrl-C it.  Any ideas what could be wrong?


did you try
Code:
slingd &

usually do that to get the prompt back.

More info:
Quote

    why run a Linux shell command with &?

To get your prompt back immediately, and run the process in the background.

    What are the function of them?

nohup allows the background process to continue running even after the user logs out (or exits the initiating shell).

>& redirects both standard output and standard error into the log file.

& runs the whole thing in the background, giving you your prompt back immediately.

Explanation:

Every Linux process opens three I/O channels, an input "stdin", a standard output "stdout" and a standard error output "stderr". They can be used for binary but are traditionally text. When most programs see stdin close, they exit (this can be changed by the programmer).

When the parent shell exits, stdin is closed on the children, and (often, usually) the children exit as well. In addition the children receive a software signal, SIGHUP, indicating the user has "hung up" (formerly, the modem) and the default here is to exit as well. (Note, a programmer can change all of this when writing the program).

So, what nohup does is give the child process a separate I/O environment, tying up the ins and outs to something not tied to the parent shell, and shielding the child from the SIGHUP signal. Once the user disconnects, you will see the nohup background process owned by init (process 1), not the user's shell.

However nohup cannot do the job completely if the process is run in the foreground, so & is used to run the program in the background, where it can happily stay running with or without a user logged in.
sr. member
Activity: 680
Merit: 255

Getting errors trying to compile the daemon on linux.
I'm using GCC 4.9.2, boost 1.55, and tried with both libdb(++) 5.1 and 5.3.

Quote
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -DUSE_SECP256K1 -I/home/user/1/sling/src -I/home/user/1/sling/src/obj -DENABLE_WALLET -I/home/user/1/sling/src/leveldb/include -I/home/user/1/sling/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/crypto/hmac_sha256.d -o obj/crypto/hmac_sha256.o crypto/hmac_sha256.cpp
crypto/hmac_sha256.cpp:34:1: fatal error: opening dependency file obj/crypto/hmac_sha256.d: No such file or directory
 }
 ^
compilation terminated.
makefile.unix:201: recipe for target 'obj/crypto/hmac_sha256.o' failed
make: *** [obj/crypto/hmac_sha256.o] Error 1


Can anyone help?
Code:
git clone https://bitbucket.org/slingrepo/sling
cd sling
cd secp256k1
./autogen.sh
./configure
make
make install
cp /usr/local/lib/libsecp256k1.* /usr/lib
cd ..
cd src
mkdir obj
cp crypto obj/crypto -rR
make -f makefile.unix
sudo cp slingd /usr/bin
cd ../..

Tried this and it compiled without error but when starting slingd it just hangs.  Command prompt never comes back even after hitting return several times. Have to Ctrl-C it.  Any ideas what could be wrong?
hero member
Activity: 706
Merit: 500
newbie
Activity: 29
Merit: 0
Whats up Slingers !?!!

At least the price (although low) seems evenly / stable.  
Important for use as a currency!



legendary
Activity: 2548
Merit: 1009
Leading Crypto Sports Betting & Casino Platform
any news ??
price really sick..
full member
Activity: 229
Merit: 100
Looks like support got hammered today. Must be the masternodes dumping.....

Do you still need help with masternode setup?  Are you using Linux or Windows?
hero member
Activity: 826
Merit: 1000
Looks like support got hammered today. Must be the masternodes dumping.....
hero member
Activity: 770
Merit: 500
FLY DONATION ADDRESS IN SIGNATURE

I'm guessing the way that could be linked is when you're using clearnet and you can see your IP on irc,  could be linked through what's called "coincidental occurrence"
ie. watching what IP is active at certain times when transactions happen,  plus if they are a seller they could guesstimate a link between IP and the transaction.

This is just my best guess of the process someone might use.  
I thought I read somewhere that's how bitcoin transactions were being traced - coincidental occurrence / pattern analysis.

Okay, I get it.  So VPN, Tor or I2P would solve this and obscure the real IP for those that care to hide it.  I guess it is inevitable to use this technology for dark markets and people are going to want to hide their IP.  I was hoping this would be an eBay buster, not a dark market but I don't see why it can't be used as both if we add filters.

I2P is built into this coin.  I need to play around with it.  I see code to support Tor but I don't think it is fully implemented except for a masternode setup.  Maybe a built in VPN (like VPNcoin) would help?
See that's the way I was seeing the marketplace as well was more of an ebay type in-wallet store where people could sell their wares and what not but having the added feature to remain anonymous I guess helps with people who would rather sell illegal or questionable items on the marketplace lol  Cheers
Pages:
Jump to: