Search content
Sort by

Showing 20 of 99 results by rembrandtt
Post
Topic
Board Announcements (Altcoins)
Re: [LAUNCHED] [NO-IPO, NO PREMINE, NO INSTA, NO NINJA] NIMBUS X15
by
rembrandtt
on 04/09/2014, 18:03:40 UTC
When coin gets traction, motherFUDDERs are active. LOL  Tongue Tongue Tongue

what im saying is if he has no premine means he baught in with his own btc  yeh why would he offer bounties and all of that crap with his own money ask your self that is he a millionair with money coming out his ass ? nothing makes sence here

You are not very good at your "professional FUD service" and not worth 0.5BTC.  Are you saying all coins without premine or IPO/ICO are questionable?

The bounties came from community.
Post
Topic
Board Announcements (Altcoins)
Re: [LAUNCHED] [NO-IPO, NO PREMINE, NO INSTA, NO NINJA] NIMBUS X15
by
rembrandtt
on 04/09/2014, 02:16:09 UTC
Go back to your investment guy, we are fair. Thanks for read but our coin is not for anonymous use and speculations.


@rembrandtt

Sure, he are trying to fud, but do not have proof.

yeah he's probably just trying to scare or annoy you until you pay him.

Anyone who will take the time to read thru this thread will see how fair this coin is with great community willing to help and donate.  No premine needed.  All bounties are from dev and community pockets.
Post
Topic
Board Announcements (Altcoins)
Re: [LAUNCHED] [NO-IPO, NO PREMINE, NO INSTA, NO NINJA] NIMBUS X15
by
rembrandtt
on 04/09/2014, 02:04:28 UTC
^^ I think this guy just wants to fud to blackmail coins from you dev.
Post
Topic
Board Announcements (Altcoins)
Re: [LAUNCHED] [NO-IPO, NO PREMINE, NO INSTA, NO NINJA] NIMBUS X15
by
rembrandtt
on 04/09/2014, 01:22:31 UTC
Wow awesome news.
Good job dev and community!
Post
Topic
Board Announcements (Altcoins)
Re: [PRE-ANN] Coinname - The worlds most innovative and popular coin! Invest now!
by
rembrandtt
on 02/09/2014, 00:13:28 UTC
This is you after investing in this amazing coin!



Disclaimer: This picture is highly accurate!    Cool

Pass.  I was very inclined to be your #1 donator but after seeing this image I'm not impressed.  Just $1 bills???
Post
Topic
Board Announcements (Altcoins)
Re: [LAUNCHED] [NO-IPO, NO PREMINE, NO INSTA, NO NINJA] NIMBUS X15
by
rembrandtt
on 30/08/2014, 19:21:24 UTC
Not sure what's going on but my wallet is still synced with original two nodes
addnode=216.158.84.70
addnode=192.161.48.5
Post
Topic
Board Announcements (Altcoins)
Re: Vertcoin - First Scrypt N | First Stealth Address - Privacy without mixer
by
rembrandtt
on 28/08/2014, 02:12:25 UTC
Seems safe to say VTC price really reached bottom.  Time to accumulate.
I thought that at .10 cents, and now its .07 cents lol.

Looks better if with respect to BTC, not dollars.  Anyway now you got me rethinking this...
Post
Topic
Board Announcements (Altcoins)
Re: Vertcoin - First Scrypt N | First Stealth Address - Privacy without mixer
by
rembrandtt
on 28/08/2014, 00:58:36 UTC
Seems safe to say VTC price really reached bottom.  Time to accumulate.
Post
Topic
Board Announcements (Altcoins)
Re: [LAUNCHED] [NO-IPO, NO PREMINE, NO INSTA, NO NINJA] NIMBUS X15
by
rembrandtt
on 28/08/2014, 00:42:50 UTC
dev,

You should have a donation fund address.  Is this it? NimQKDGkVX8qD3kCKVgTywHQ6XZAdcuvjt
Post
Topic
Board Announcements (Altcoins)
Re: Advertising spam is not allowed
by
rembrandtt
on 05/08/2014, 00:46:41 UTC
Mods don't seem like they're willing to be cooperative. Hell, they avoid even to interact with people in this post anymore. I'm starting to think that there's another reason behind this shady and overly general decision rather than just limiting spam.

I've been following this thread and been thinking this exact same thing.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [TEX] Texas Coin - It's a Ninja Launch, Y'all!
by
rembrandtt
on 24/07/2014, 21:29:11 UTC
Dev,

I reckon you live around here?  If not, you are aware you don't mess with Texas otherwise we will find you and shoot you right?  Smiley
Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] BETARIGS.COM - Cryptocurrency cloud mining - thousands of rigs available!
by
rembrandtt
on 18/07/2014, 01:30:01 UTC

would you be willing to share any of your code? I'm using pycurl but I dont know much about ssl, so the certificate issues are giving me a headache

My code is unfinished so I wouldn't recommend running this as is but it will get you started since it is able to read and make changes to your rigs.  You can improve the algorithm.  It sends 3 algo request to Betarigs every minute so that if one is rented, price on remaining algo will increase to 1BTC/Mh/day.  If rental is finished, all price will be set to hardcoded "marketprice".  I have yet to write an algorithm based on few datas to come up with my version of "market price".  During rental progress, it continues to send request every minute which is not how it should be.  I also have yet to add a condition statement so that it will restart sending request when rental ended.

BTW, I meant I use Jq to work with JSON data.  Not Qt. 

Code:

#!/bin/bash

#my rigs
x11rignum=(your rig #)
x13rignum=(your rig #)
x15rignum=(your rig #)
nist5rignum=(your rig #)

API_KEY=(enter your own API #)


#need marketprice algo, manually hardcode for now
x11marketprice=(enter your price)
x13marketprice=(enter your price)
x15marketprice=(enter your price)

x11highprice=1
x13highprice=1
x15highprice=1

priceincreased=false

while true; do


###################check all rig rent status#####################

#get information from betarigs then store locally to a txt file
curl https://www.betarigs.com/api/v1/rig/$x11rignum > x11info.txt
sleep 1
curl https://www.betarigs.com/api/v1/rig/$x13rignum > x13info.txt
sleep 1
curl https://www.betarigs.com/api/v1/rig/$x15rignum > x15info.txt
sleep 1
#curl https://www.betarigs.com/api/v1/rig/$nist5rignum > nist5info.txt
#sleep 1

#output is true or false
x11statavail=$(cat x11info.txt | jq '.status.available')
x13statavail=$(cat x13info.txt | jq '.status.available')
x15statavail=$(cat x15info.txt | jq '.status.available')
#nist5statavail=$(cat nist5info.txt | jq '.status.available')

#output are: Available, In Progress, Waiting payment, Offline, etc
x11statlabel=$(cat x11info.txt | jq '.status.label')
x13statlabel=$(cat x13info.txt | jq '.status.label')
x15statlabel=$(cat x15info.txt | jq '.status.label')
#nist5statlabel=$(cat nist5info.txt | jq '.status.label')

##remove "" otherwise string comparison won't work
#x11statlabel=${x11statlabel:1:-1}
#x13statlabel=${x13statlabel:1:-1}
#x15statlabel=${x15statlabel:1:-1}
##nist5statlabel=${nist5statlabel:1:-1}

##default not rented
x11rented=false
x13rented=false
x15rented=false

if [ $x11statavail == false ]; then
    x11rented=true
fi
if [ $x13statavail == false ]; then
    x13rented=true
fi
if [ $x15statavail == false ]; then
    x15rented=true
fi

rentinprogress=false
if [ $x11rented == true ] || [ $x13rented == true ] || [ $x15rented == true ]; then
    rentinprogress=true
fi

################### change high price to market price if rental has completed #####################

string1='{"price":{"per_speed_unit":{"value":'
string2=',"unit":"BTC/Mh/day"}}}'

#if rig is not rented
if [ $rentinprogress == false ]; then
    if [ $priceincreased == false ]; then
        ##readback and store all rig currentprice, I can manually change price online
        x11currprice=$(cat x11info.txt | jq '.price.per_speed_unit.value')
        x13currprice=$(cat x13info.txt | jq '.price.per_speed_unit.value')
        x15currprice=$(cat x15info.txt | jq '.price.per_speed_unit.value')
        #nist5currprice=$(cat nist5info.txt | jq '.price.per_speed_unit.value')

    else #if priceincreased=true means rent period just finished
        ##set all to marketprice for now
        x11currprice=$x11marketprice
        x13currprice=$x13marketprice
        x15currprice=$x15marketprice
        #nist5currprice=$nist5marketprice
       
        jsonstring=$string1$x11currprice$string2
        curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$x11rignum
        sleep 1
        jsonstring=$string1$x13currprice$string2
        curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$x13rignum
        sleep 1
        jsonstring=$string1$x15currprice$string2
        curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$x15rignum
        sleep 1
        #jsonstring=$string1$nist5currprice$string2
        #curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$nist5rignum
        sleep 1

        priceincreased=false
    fi


else #if rent is in progress or waiting for payment

################### set price to high if rental started  #####################

    echo "rent in progress"

    if [ $priceincreased == false ]; then
        echo "increase non rented price now"
       
        #set highprice to rigs not rented
        if [ $x11rented == false ]; then
            echo "set x11 price"
            x11currprice=$x11highprice
            jsonstring=$string1$x11currprice$string2
            curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$x11rignum
             sleep 1
        fi
        if [ $x13rented == false ]; then
            x13currprice=$x13highprice
            jsonstring=$string1$x13currprice$string2
            curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$x13rignum
            sleep 1
        fi
        if [ $x15rented == false ]; then
            x15currprice=$x15highprice
            jsonstring=$string1$x15currprice$string2
            curl -X PUT -H "X-Api-Key: "$API_KEY -H "Content-Type: application/json" -d $jsonstring https://www.betarigs.com/api/v1/rig/$x15rignum
            sleep 1
        fi
        priceincreased=true
    fi

fi

sleep 60

done


Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] BETARIGS.COM - Cryptocurrency cloud mining - thousands of rigs available!
by
rembrandtt
on 17/07/2014, 03:21:44 UTC
has anyone had any luck with using the api? I'm trying to use it with python but keep getting SSL errors, and cloudflare 403 errors when trying to access the data or change my rig prices

Yes, but it is still in testing phase and I'm not in a hurry to release.  My programming skills are minimal compared to many software gurus here so my method is most likely not a good approach but its good enough for me.  I'm simply using shell script and Jq to work with JSON data.
Post
Topic
Board Announcements (Altcoins)
Re: Vertcoin - First Scrypt N | First Stealth Address - Privacy without mixer
by
rembrandtt
on 13/07/2014, 21:51:24 UTC
be prepared for the next big dump  

sounds more like the next big bullshit to me...


no, it is just the pattern i see on MP....

i hope we will be out of this range soon, but place your buy orders under 0.0005 if you want to get cheap VTC  Wink

Good call.  Was this a lucky guess?  What pattern?
Post
Topic
Board Announcements (Altcoins)
Re: Vertcoin - First Scrypt N | First Stealth Address - Privacy without mixer
by
rembrandtt
on 13/07/2014, 20:07:22 UTC
Changing anything on Vertcoin - other than scrypt-n diff to eject asics - will result in a loss of trust in the coin.

And yes, i am a miner.
And yes, i am selling some of my coins to pay my bills.
Why? Simple!
I have no big financial background to live from and have to feed my family and pay my bills.

If there is anything changed on the coin with any other target than to get ridd of asics, i'll quit mining VTC.

If the "investors" can't handle it, well, get out of VTC and buy and sell other coins.

But i am pretty sure, most of us miners will just quit VTC and change to another coin if the devs would play with blockreward or anything just to push the price a bit.

And guess what a coin without miners is...

Just to let you know, I do have some VTC but I already accept the loss and not hoping to get my money back so it's not able personal gain.  I'm making it up by mining other P&D coins.  I still however hope that VTC succeeds because of its noble intention to digital currency.

There are not enough VTC supporters.  VTC needs to reach out to new buyers.  Like I said earlier, the perception is not looking good.  Having a series of in-depth discussion then not take action means "there is a crisis and we don't know where to begin".  It is not instilling confidence to potential buyers or merchants.

What coins are u mining now? I was thinking of dumping VTC and mining other coins like you.

Nothing specific.  I'm currently renting out my rig.  If not rented, its either in nicehash or TMB multipool or I try to figure out what majority of renters are mining and point there.
Post
Topic
Board Announcements (Altcoins)
Re: Vertcoin - First Scrypt N | First Stealth Address - Privacy without mixer
by
rembrandtt
on 13/07/2014, 18:35:10 UTC
Changing anything on Vertcoin - other than scrypt-n diff to eject asics - will result in a loss of trust in the coin.

And yes, i am a miner.
And yes, i am selling some of my coins to pay my bills.
Why? Simple!
I have no big financial background to live from and have to feed my family and pay my bills.

If there is anything changed on the coin with any other target than to get ridd of asics, i'll quit mining VTC.

If the "investors" can't handle it, well, get out of VTC and buy and sell other coins.

But i am pretty sure, most of us miners will just quit VTC and change to another coin if the devs would play with blockreward or anything just to push the price a bit.

And guess what a coin without miners is...

Just to let you know, I do have some VTC but I already accept the loss and not hoping to get my money back so it's not about personal gain.  I'm making it up by mining other P&D coins.  I still however hope that VTC succeeds because of its noble intention to digital currency.

There are not enough VTC supporters.  VTC needs to reach out to new buyers.  Like I said earlier, the perception is not looking good.  Having a series of in-depth discussion then not take action means "there is a crisis and we don't know where to begin".  It is not instilling confidence to potential buyers or merchants.
Post
Topic
Board Announcements (Altcoins)
Re: Vertcoin - First Scrypt N | First Stealth Address - Privacy without mixer
by
rembrandtt
on 13/07/2014, 18:11:23 UTC
At this point, it's better to do something than not do anything at all.


I bet you're a fan of the TSA too?

I don't get what you mean.  I am however a fan of vertcoin.
Post
Topic
Board Announcements (Altcoins)
Re: Vertcoin - First Scrypt N | First Stealth Address - Privacy without mixer
by
rembrandtt
on 13/07/2014, 15:33:34 UTC
A quick read to this thread and reddit forum about different ideas and disagreement tells me that things will not move forward, at least not in the near future.  Bottom line is that vertcoin community and devs are afraid to make changes to current VTC situation.  This is a vey bad perception.

Nobody knows what's the right move.  I think devs should make a decision now to implement whatever idea seems most promising at the moment even with risk to MON.

At this point, it's better to do something than not do anything at all.
Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] BETARIGS.COM - Cryptocurrency cloud mining - thousands of rigs available!
by
rembrandtt
on 12/07/2014, 15:41:23 UTC
Need to implement API.  so much to learn...
Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] BETARIGS.COM - Cryptocurrency cloud mining - thousands of rigs available!
by
rembrandtt
on 11/07/2014, 18:32:45 UTC
Also, time for betarigs to have nist5.