Bitcoin Forum
May 24, 2024, 12:12:19 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 [25] 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 »
481  Bitcoin / Project Development / Re: How to create a coin-flip type address? on: December 27, 2013, 02:21:38 AM
Its not very hard to do in python.
482  Alternate cryptocurrencies / Altcoin Discussion / A Simple python program to autosend a wallets balance(VPS mining FTW) on: December 27, 2013, 12:58:07 AM
https://github.com/hendo420/Bitcoin-Autosend

I was bored today so I made a program for all of those solo VPS miners out there.

Its stupid simple. Here is the source.
Code:
#!/usr/bin/python
  
import bitcoinrpc
import sys, time
  
serverIP = '127.0.0.1'
serverPort = '1069'
user = 'username'
password = 'password'
address = 'AddressToSendCoinTo'
fee = 0.001

conn = bitcoinrpc.connect_to_remote(user, password, host=serverIP, port=serverPort);
  
while True:

    balance = conn.getbalance()
    print 'Your current balance is', balance
  
    if balance > fee:
        adjbalance = float(balance) - float(fee)
        print 'Sending', adjbalance, 'to your designated address'
      
        try:
            conn.sendtoaddress(address,adjbalance)
        except Exception:
            pass
            print 'Coin send fail'
  
    time.sleep(3)

Just add in your RPC port, username, password, and address to send coins to.
Optionally change the serverIP to your VPS's IP if you are running the program from a remote PC.
You should also change the fee to match the coin you are mining.


Enjoy!  Cheesy Cheesy Cheesy
483  Alternate cryptocurrencies / Altcoin Discussion / Re: Who !@#$ed up On Dogewallet? on: December 26, 2013, 09:25:44 PM
To completely clear here,

 Im less interested in Dogecoin and more interested in how these kinds of problems are being managed in the space at large.

 The attitude seems to be 'anything goes' and thus you'd be crazy to give your money to any of these people.  

 Dogecoin is really just the last in the line of altcoins, just goes to show the only thing left to do are parodies.

Let me break it down for you.

Yes, with the address that all the coins were funneled to, it is possible to track the funds through the blockchain.

No, no one with the skills to do so cares enough to track down where all the funds went.

Even if you could find where the funds went, the chances of finding out the perpetrators identity is unlikely
and if you did find that persons identity, getting a DA to prosecute the case, or a judge to award you money in a civil suit, is near impossible

I see it as a futile attempt, there is no reason to expend the resources to track down the perpetrator.
484  Alternate cryptocurrencies / Altcoin Discussion / Re: Who !@#$ed up On Dogewallet? on: December 26, 2013, 08:58:21 PM
never store your cryptocurrency on an external server. use your personal computer.

Words to live by.

Also, always encrypt your wallet and back it up to external storage.
485  Alternate cryptocurrencies / Altcoin Discussion / Re: [POLL] Next cryptocurrency candidates for CoinEX on: December 26, 2013, 10:36:22 AM

Earthcoin
Catcoin


+1
486  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Awesome new coin concept on: December 26, 2013, 10:33:54 AM
whhat about a new algoritm?

Like Blakecoin, Quarkcoin, Primecoin, ect ect

We have quite a few algos to choose from. lol
487  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Awesome new coin concept on: December 26, 2013, 10:17:27 AM
Now i think the most important is offer a new GPU mining with SHA/Scrypt ASIC resistance.

When the Scrypt asics start arriving to the owners the price of Scrypt coins will decrees a lot

Who will make the new Litecoin?

Primecoin   Grin
488  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Awesome new coin concept on: December 26, 2013, 09:58:52 AM
I know this is exploitable by sending coins to yourself, to combat this It would need to be a scalable percent back. Also tweaking the tx fees could prevent this too.

Example.
sending 1-499 coins has the chance to return 0.5%-0.8% to your wallet.  
sending 500-1499 coins has the chance to return 2%-5%
sending 1500-infinity coins has the chance to return 4%-7%

This should discourage people writing scripts to send a bunch of small transactions to themselves and in the process bloating the blockchain.
Can't understand how this should stop somebody from getting free coins.
  • Send from addr. A to addr. B and get free coins
  • Wait for next block
  • Send from B to A and get free coins again
  • Repeat infinitely
  • Profit!

It could be considered another form of mining.  Grin

How about making the coins not eligible to mint new coins using Proof of Spending until they have 120 confirms.
Example.
User 1 sends 300 coins to user 2. User 2 must wait until 120 confirms before those coins are eligible for a % back again. User 2 could send the coins after 1 confirm but would not get any % back.
489  Alternate cryptocurrencies / Altcoin Discussion / [ANN] Awesome new coin concept on: December 26, 2013, 09:45:00 AM
First there was Proof of Work.


Then there came Proof of Stake.


Now, there can be Proof of Spending.


The idea is that when you send coins you have a randomized chance to mint new coins to your wallet. Like a randomized % back rebate.

So not only are coins created by mining, they would be created randomly as new coins given as a "cash back" for spending coins.

I know this is exploitable by sending coins to yourself, to combat this It would need to be a scalable percent back. Also tweaking the tx fees could prevent this too.

Example.
sending 1-499 coins has the chance to return 0.5%-0.8% to your wallet.  
sending 500-1499 coins has the chance to return 0.5%-5%
sending 1500-infinity coins has the chance to return 0.5%-7%

Also make the coins not eligible to mint new coins using Proof of Spending until they have 120 confirms.
Example.
User 1 sends 300 coins to user 2. User 2 must wait until 120 confirms before those coins are eligible for a % back again. User 2 could send the coins after 1 confirm but would not get any % back.

This should discourage people writing scripts to send a bunch of small transactions to themselves and in the process bloating the blockchain.

This would encourage people to spend their coins instead of hording them.


Discuss  Cheesy
490  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] PlayStation 3 - A Beast For Data Mining Purposes. Good Scrypt Coin Miner. on: December 26, 2013, 07:54:32 AM
I don't think so.....just look at the specs !
for a cpu coin, why not...

I remember a few months ago someone was talking about making a custom rig using a bunch of old PS3 cell cpu's. Each cpu uses something like 75w which is quite efficient for the processing power.

I used to reflow ps3's all the time. I can get broken ps3's for like $20-$30 so if someone came up with an open sourced solution I could definitively make use of it.

Its a great idea but there is no way to know if it is economical without trying. lol

I think you could make one hell of a Primecoin miner out of a botched together Ps3 miner tho. lol
491  Alternate cryptocurrencies / Altcoin Discussion / Re: 100 CATCOINS Giveaway meow! CATS STRONER THAN DOGS! IT'S WAR!!! on: December 26, 2013, 06:00:07 AM
9mqr11EeWT41rguvGJA452Q7PvdtNv9SWj

thank you.
492  Alternate cryptocurrencies / Altcoin Discussion / Re: new exchange !!!! u can sell your earthcoins + MOL ( catcoins soon to i hope ) on: December 26, 2013, 05:02:45 AM
I had a little over 10,000 EAC on sell order and I come back to having negative amount of BTC. Now my whole account is bugged. I cant withdraw. No way to contact the exchanges support.

493  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN][DUX] Ducat Exchange Coin [PRELAUNCH] on: December 25, 2013, 06:18:15 AM
Sweet. We have needed this for a long time.
494  Alternate cryptocurrencies / Altcoin Discussion / Re: *EarthCoin* EAC/BTC GOOGLE DOC Exchange *EarthCoin* on: December 24, 2013, 06:45:15 AM
Roll Eyes

there is not one product or service that utilizes earthcoin at the current moment, nor is it on any exchange + the volume of posts from "real accounts" in the main thread is dying down...

yet some of the sellers want to sell their EAC at a price that makes it the most profitable scrypt,sha coin around  Roll Eyes


good luck

my offer still open

I will buy 1million EAC for 0.3  Wink


Lol- your coin sucks, please sell it to me really really cheap!  Roll Eyes

define cheap?

Like your sister.

495  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PRELAUNCH] Catcoin - Scrypt meow! on: December 24, 2013, 03:27:43 AM
Difficulty did go up, so its not completely broken.  Cheesy

Code:
"blocks" : 10082,
"currentblocksize" : 1225,
"currentblocktx" : 1,
"difficulty" : 0.25000000,
"errors" : "",
"generate" : false,
"genproclimit" : -1,
"hashespersec" : 0,
"networkhashps" : 184195224,
"pooledtx" : 0,
"testnet" : false
496  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PRELAUNCH] Catcoin - Scrypt meow! on: December 23, 2013, 11:37:49 PM
497  Alternate cryptocurrencies / Altcoin Discussion / Re: Earthcoin giveaway thread, get 20000 EACs to up to 500000 EACs! on: December 22, 2013, 07:53:00 AM
efa65B5dDhiStj3WFJimQLrmbpH62YK6dv

Thanks
498  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BLC] Blakecoin Fast Blake-256 Cryptographic Coin for CPU/GPU/FPGA on: December 21, 2013, 08:00:44 PM
is it ever coming to an exchange?

I would like to know this as well.
499  Alternate cryptocurrencies / Altcoin Discussion / Re: --------If you are looking for capital and you have the idea, ENTER ---------- on: December 19, 2013, 05:41:53 PM
Investing in alt-coins is not the best way to make money. They are mainly considered Pump&Dump coins.

If you want to get into something big, I mean BIG.

Get ahold of me.

I have a Bitcoin Soda Machine that I can reproduce in mass.

I have a one way ATM USD->BTC Bitcoin ATM that is 95% complete. I just need funding to start on the 2 way BTC<->USD production model.

I also have a Bitcoin Retail Point of Sale in the works.

I come up with new ideas every day.

If you want to check out some of my work see
http://bitcoinsodamachine.com

or check out my youtube channel.
http://www.youtube.com/channel/UCyjmILp-GaSDJMyRG1p0glw/videos

I can make you Billions, just give me a shot. Smiley
500  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Bitcoin/Litecoin Soda Machine Project v0.4 on: December 13, 2013, 04:17:34 AM
I have highly optimized the program and now most transactions take less than 5 seconds, most of the time less.

We did a speed test, see the video below. We were able to buy 3 sodas in under 1 minute, the only thing slowing it down is the soda machine itself.

http://www.youtube.com/watch?v=socQRtYzoxM
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 [25] 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!