Author

Topic: [NSFW] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX - page 141. (Read 307641 times)

sr. member
Activity: 388
Merit: 250
Well I have good news and I have bad news...

The good news it that I have a p2pool up and running on my home server..
I've connected another miner to it, and at first I was worried that the payouts were not fair, but the payouts on the connected miner are growing, so I think they will be alright..
the bad news is the stats aren't showing when I try to load the stats page.....
who keeps coming to the pool http://66.172.10.55:19337/

and destroying it with 67% DOA

stop it would you!

atleast stop and restart until you get a sensible stability .
IMO the pool is unusable at that moment. Can we use the other pool? I don't care about the stats page as yet.
legendary
Activity: 1624
Merit: 1001
All cryptos are FIAT digital currency. Do not use.
Wooot a 500 SxC block !

LOL...
Damn redneck, popping out a litter of sexcoin Grin


See.. its not the size of the gpu that matters..  Roll Eyes
legendary
Activity: 1876
Merit: 1000
who keeps coming to the pool http://66.172.10.55:19337/

and destroying it with 67% DOA

stop it would you!

atleast stop and restart until you get a sensible stability .
hero member
Activity: 873
Merit: 1035
Sexcoin Core Dev Team Member
Wooot a 500 SxC block !

LOL...
Damn redneck, popping out a litter of sexcoin Grin
legendary
Activity: 1764
Merit: 1007
why not sex.co.in?  Huh

EDIT: aah ok, co.in is a second level domain, didn't notice sorry
sr. member
Activity: 388
Merit: 250
Well I have good news and I have bad news...

The good news it that I have a p2pool up and running on my home server..
I've connected another miner to it, and at first I was worried that the payouts were not fair, but the payouts on the connected miner are growing, so I think they will be alright..
the bad news is the stats aren't showing when I try to load the stats page.....
p2p.sexcoin.co.in
p2p1.sexcoin.co.in
p2p01.sexcoin.co.in
pool.sexcoin.co.in
pool1.sexcoin.co.in
pool01.sexcoin.co.in
We have only one pool.
A second pool is better than only one pool.
legendary
Activity: 1624
Merit: 1001
All cryptos are FIAT digital currency. Do not use.
Wooot a 500 SxC block !

Procreation is a wonderful thing. Grin

pEACe

HT xD
sr. member
Activity: 462
Merit: 251
Well I have good news and I have bad news...

The good news it that I have a p2pool up and running on my home server..
I've connected another miner to it, and at first I was worried that the payouts were not fair, but the payouts on the connected miner are growing, so I think they will be alright..
the bad news is the stats aren't showing when I try to load the stats page.....
sr. member
Activity: 388
Merit: 250
I think the best thing to do for the time being is to link it to this thread.

Done. My provider told me, probably we have to wait right up to 24 hours.
Maybe you have to reload (override cache) with Ctrl + F5 or Ctrl + Shift + R.

I'm accepting emails: [email protected].


edit:
http://sexcoin.co.in/
http://www.sexcoin.co.in/
is working.
full member
Activity: 161
Merit: 102
Should I link my domain

http://www.sexcoin.co.in

to

http://www.Sexcoin-wiki.com

or any other website?

Wait for our website to be ready and then you can link your domain.
LittleDigger is our Website DEV . Contact him
Thanks for your support!
hero member
Activity: 873
Merit: 1035
Sexcoin Core Dev Team Member
Should I link my domain

http://www.sexcoin.co.in

to

http://www.Sexcoin-wiki.com

or any other website?

Cool domain! I like the co.in Wink

www.sexcoin-wiki.com is not up to the best of my knowledge, and it belongs to Chinsu, or somebody else. We are still getting the new official website together. Its close, but not there yet, and we are still kicking around what domain we are going to use. We have secured the server space. I think the best thing to do for the time being is to link it to this thread.

Keep watching. I can assure you it will be announced when its live!

sr. member
Activity: 388
Merit: 250
sr. member
Activity: 462
Merit: 251
Well I've started playing with the P2P side of it.. Made ABE a little sick, but I've sorted that out..
 
hero member
Activity: 873
Merit: 1035
Sexcoin Core Dev Team Member
Hey all,

Let me first say, for everyone, thanks for hanging in there.

Second, none of this would have been possible without some very hard work and insight from nomaxpi and LittleDigger, send them some sugar.

Third, all of this would not have been possible without serious initiative from Bitcoin.Greece. He should get some sugar too.

Fourth, this would all not even work if it weren't for everyone's support. Let's all get some sugar.
Grin

I wanted to get out some quick notes I have on Linux compiles. These are not complete instructions, but information I collected while testing the new client. I hope to get more complete instructions put together, but I think these notes will help point all the Linux people in the right direction if you are running into difficulty.

Right now, I am really speaking as a regular user, not as a member of the dev team.

The compile throws a number of warnings. These are normal, but if the build breaks, here's what I've found:

Ubuntu Linux 12.04 LTS

The default version of Boost-dev is 1.46, you can manually upgrade it:

Code:
sudo apt-get libboost1.48-all-dev

Then run the compile:
Code:
cd src
make -f makefile.unix

Ubuntu Linux 10.04 LTS

The default version of Boost-dev is 1.40, and the easiest option here is to edit main.cpp.( If you don't mind frankensteining your system you might be able to find a ppd, or download the boost source for 1.48. You'll have to set the pathing in makefile.unix )

*A word of caution!!* (and mainly why I'm speaking as a User)
I have been running the client with these changes successfully myself, (sending, receiving, mining and pool tests) but HAVE NOT been able to do EXHAUSTIVE testing. Although all my testing to date has shown this to be safe, and this is my main workhorse client, I MUST put out a disclaimer. This change is at your own risk at the moment.


Here's the diff output:

Code:
16,17c16
< //#include
< #include
---
> #include
826,829c825,826
<       //random::mt19937 gen(s);
<       boost::mt19937 gen(s);
<     //random::uniform_int_distribution<> dist(1, range);
<     uniform_int<> dist(1,range);
---
>       random::mt19937 gen(s);
>     random::uniform_int_distribution<> dist(1, range);

So edit the 'includes' section, then around line 826, make the above changes.
Compile as above.

Sexcoin-qt (GUI candy)
To compile the Sexcoin-qt client in Ubuntu 12.04, I upgraded the Boost libs as above, and used synaptic to install QtCreator. If I recall correctly, all the dependencies I needed for the Qt build were installed with QtCreator.

Use QtCreator to open the Sexcoin-qt.pro project, then click the 'build' button in the lower left corner.
*Note* I had already pulled in dependencies like miniupnpc, boost, and BDB. YMMV.
If you get stuck, I'll try to help you out as best I can.

"But, Your client is SO BIG!"

yeah.
The default makefile creates a debug version. To run for production you have two options:

1) run strip against the binary: (I really hope the irony doesn't escape you!)
Code:
strip sexcoind

OR

2) edit makefile.unix and recompile
Code:
#DEBUG_FLAG=-g
DEBUG_FLAG=

For Sexcoin-qt I found it much easier to run strip.


I hope this helps!
sr. member
Activity: 388
Merit: 250
Great work!
Where is your page to link my domain?

sexcoin.co.in
full member
Activity: 150
Merit: 107
Thanks for bringing the sexy coin back on track  Smiley
full member
Activity: 161
Merit: 102
Hello AliceWonder you are welcome to cooperate with our Dev team
member
Activity: 77
Merit: 10
I'm going to take a look at building the code tomorrow and see if I can create an RPM spec file that work with Fedora. Unless someone else is already doing that.

The problem with coins and fedora is that fedora ships openssl compiled without ECC.

I have OpenSUSE RPMs for various coins at https://build.opensuse.org/project/show?project=home%3Ap_conrad:coins (sexcoin still based on original source, but I'm working on moving to the new client repo).

Update: new client builds available
sr. member
Activity: 462
Merit: 251
Ok folks.. Kesley, I downloaded the P2P pool software and was just about to play with it, but my partner arrived home.. I'll have to chat to the rest of the crew regarding servers...I can't make that decision after we were arranging something else, but a new p2p pool is a priority so I'll see what we all think and where we want to go first and that may take a little while..

I'm going to be in the real world for the rest of the night, but I'll check in to make sure you aren't misbehavin'   Wink
sr. member
Activity: 462
Merit: 251
Normally I'm not a fan of altcoins but I can definitely see a utility in this.
I'm a big fan of phonesex where the confirmation time of bitcoin just doesn't work.

How I see this working out, customer buys sexcoins with bitcoins (or whatever) and then when horny uses the sexcoins for things like phonesex, camgirls, clips4sale, etc.

With a 60 second confirmation time, even phonesex could work instantly because you can cut the customer off quickly if it becomes evident it is a double-spend attempt.

I'm going to take a look at building the code tomorrow and see if I can create an RPM spec file that work with Fedora. Unless someone else is already doing that.

Fantastic, I'm sure Max and Lavajumper would be willing to collaborate should you have any problems but the code sould be good to go.. Max posted the respository for the dependencies under the clients on github
Jump to: