Bitcoin Forum
October 01, 2025, 02:33:36 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Bitcoin / Project Development / Re: Bitcoin-Tools: Live Linux Distro on: December 15, 2013, 06:50:39 PM
Quote
First, I would need this checked by other's before I or anyone is likely to use it. Not saying we don't trust you, just the human race as a whole
Agreed. I'm going to build scripts so anyone can generate the "same" distro .iso file in a VirtualBox VM.

Quote
Second, If you could implement bitcoinpaperwallet.com as an offline file and printer support. Printing a pretty paper wallet from a live CD boot would be great.
Honestly, I don't trust computer random number generators like those used by javascript apps which is why I've implemented a physical dice rolling, seed generator. Also, printers have memory which can be exploited. I've chosen the more traditional, pen and paper method.
2  Bitcoin / Project Development / Bitcoin-Tools: Live Linux Distro on: December 13, 2013, 05:37:01 AM
This is a Live Linux ISO (bootable from USB Stick or CD-Rom) which provides a simple, console interface for generating secure, Bitcoin paper wallets in an off-line environment. Deterministic keys are generated utilizing libbitcoin and sx. This is a minimalist Debian distribution with all networking code removed. An alpha version of the .iso can be downloaded from: (bitcoin-tools.iso 338.0 MB md5sum 5d6d3f663a459820268803f63f55bea9) https://mega.co.nz/#!VMtizKiS!fb94WEVx3eXkYvfAiWGUUmCzRfMI04dBwv16rMO9LtM

https://github.com/gehlm/paper-btc
http://imgur.com/a/J7rES#0

Looking for feedback and some help building scripts to automate the distribution build. Until you can build it yourself, you shouldn't trust it.
3  Bitcoin / Development & Technical Discussion / Re: sx command line utilities - Empower The Sysadmin With Bitcoin Tools on: December 02, 2013, 04:24:01 PM
Use this Python code:

$ python
>>> "%x" % int("".join([str(int(c) - 1) for c in "6132235463233123456522124112542554365223124562346652123111266"]), 6)

Replace the string "613...." with whatever you want. I'm assuming that each digit represents a dice roll from 1 to 6.

Thanks - that worked.

I was playing around with libbitcoin/sx using a bash script wrapper to generate offline, electrum compatible wallets.
https://github.com/gehlm/paper-btc
4  Bitcoin / Development & Technical Discussion / Re: sx command line utilities - Empower The Sysadmin With Bitcoin Tools on: November 30, 2013, 03:11:53 PM
Is there a way to generate a new seed/12-word mnemonic with dice rolls?

http://world.std.com/~reinhold/diceware.html

I'm not looking to generate a private key. I'm trying to create a libbitcoin seed and the associated deterministic wallet from the dice rolls. The sx code that generates random seeds is in https://github.com/spesmilo/libbitcoin/blob/master/src/deterministic_wallet.cpp

Code:
void deterministic_wallet::new_seed()
{
    constexpr size_t bits_needed = 8 * seed_size / 2;
    ssl_bignum rand_value;
    BN_rand(rand_value, bits_needed, 0, 0);
    bool set_success = set_seed(bignum_hex(rand_value));
    BITCOIN_ASSERT(set_success);
}

Best case would be something like...
Code:
>echo "6132235463233123456522124112542554365223124562346652123111266" | sx newseed | sx mnemonic
5  Bitcoin / Development & Technical Discussion / Re: sx command line utilities - Empower The Sysadmin With Bitcoin Tools on: November 30, 2013, 11:56:39 AM
Is there a way to generate a new seed/12-word mnemonic with dice rolls?
6  Economy / Securities / Re: [Cryptostocks] Bitbond 200Gh/s 105% PPS mining bond - Relaunched on: November 26, 2013, 08:09:21 PM
I've got quite a few BITBOND shares on Cryptostocks as well. No resolution and no response from Amazingrando <todd@spiralcomputing.com>.

Last message from him:

Quote
On Sun, Nov 25, 2012 at 10:55 PM, Amazingrando <todd@spiralcomputing.com> wrote:
Dear BITBOND bondholder-

GLBSE has recently sent me a list of BITBOND bondholders and their holdings at the time of its closure.  This email is to notify you of the information I have received.  Please reply to this email and confirm that this information is correct.

Wallet address: xxx
Bonds held: xxx

While I await confirmations, I have started the process of migrating all bonds to Cryptostocks.  I hope to relaunch the security soon.  Additionally I will be providing more information about buyback and upgrade programs once they are finalized.

Thank you for your patience

Todd
7  Economy / Computer hardware / [WTS] Butterfly Labs ASIC Jalapeno 5 GH/s * In Hand * on: July 23, 2013, 08:52:31 PM
IN HAND!!! THIS IS NOT A PREORDER!!!

This is a Butterfly Labs' Jalapeņo ASIC Bitcoin miner. It runs around 5 GH/s. It has been attached to my Linux computer since I received it, hashing away. I have the original packaging - it's in exactly the condition you would receive it in if you got it from BFL directly ... without the wait. Item will ship within 24 hours of payment confirmation


http://www.ebay.com/itm/251307194093


8  Economy / Computer hardware / [WTS] Butterfly Labs ASIC Jalapeno 5 GH/s On Hand - Ship Now Jalapeņo on: July 19, 2013, 12:48:25 PM
This is a Butterfly Labs' Jalapeņo ASIC Bitcoin miner. It runs around 5 GH/s. It has been attached to my Linux computer since I received it, hashing away. I have the original packaging - it's in exactly the condition you would receive it in if you got it from BFL directly ... without the wait. You can see it at work in the screen capture of the miner along with some stats and proof that I have the miner on hand.

Shipping to USA only.

http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=251307194093
9  Economy / Securities / Re: [Cryptostocks] Bitbond 200Gh/s 105% PPS mining bond - Relaunched on: June 12, 2013, 08:35:28 PM
I'm with RedRobin2442 on this one. I invested in BITBOND knowing the risk.
10  Alternate cryptocurrencies / Altcoin Discussion / Re: Ripple Giveaway! on: June 01, 2013, 03:53:32 PM
rQ3ZXiktpJJeaTrsPJm7f3XPHhbPmh8HVd
11  Bitcoin / Development & Technical Discussion / Re: 0.8.2rc1 ready for testing on: May 13, 2013, 02:01:30 AM
Initial test results:

Code:
OS: Ubuntu 12.04 LTS 64-bit
Memory: 3.9GB
Processor: Intel Core2 Quad CPU Q8200
Graphics: Vesa Cypress

01) >cp ~/.bitcoin .bitcoin-bak
02) >rm .bitcoin/wallet.dat
03) >rm .bitcoin/addr.dat
04) Built bitcoind, bitcoin-qt
05) Launched bitcoin-qt: [Error:Invalid amount for -mintxfee=<amount>:'0.00000000']
06) >rm .bitcoin/bitcoin.conf
07) Launched bitcoin-qt
---> 8:17pm, Verifying Blocks
---> 8:18pm, Rescanning [no indication anything is happening]
---> 8:24pm, Main Wallet Screen [2 hours behind blockchain]
---> 8:25pm, Sync [OK]
08) quit bitcoin-qt
09) >cp ../.bitcoin-bak/addr.dat .
10) Launched bitcoin-qt, addresses not available
11) Quit bitcoin-qt
12) >cp ../.bitcoin-bak/wallet.dat .
13) Launched bitcoin-qt, addresses and previous balance [OK]
14) Quit bitcoin-qt
15) Launched bitcoind [ran a few commands, OK]
16) Built bitcoin, bitcoin-qt tests
17) ./test_bitcoin [Running 93 test cases... *** No errors detected]
18) ./bitcoin-qt_test [Config: Using QTest library 4.8.1, Qt 4.8.1 -- Totals: 3 passed, 0 failed, 0 skipped]
12  Bitcoin / Development & Technical Discussion / Re: Ubuntu 12.04 directory for wallet.dat on: April 07, 2013, 02:04:26 PM
~/.bitcoin/
13  Bitcoin / Bitcoin Discussion / Re: Main developers don't give a damn about us, bitcoiners! on: March 29, 2013, 09:22:16 PM
Quote
I'm a member of the Bitcoin Foundation, hence paying your salary, so I demand an explanation to all this.

With friends like these...
14  Bitcoin / Bitcoin Discussion / Re: Win 10 BTC: Guess the price on February 1st (no entry fee) on: January 22, 2013, 11:07:05 PM
23.62351
15  Economy / Goods / [WTS] Bitcoin 4" Window Decal on: December 08, 2012, 11:41:37 AM
Give your dorm, apartment or vehical's window some cryptocurrency style with this Bitcoin decal created just for windows! It's made from a transparent, vinyl material with a sticky backside, so it's easy to position on the outside of your window, and it features a bold, two-color, Bitcoin logo.

  • Bitcoin Decal for Windows
  • Outside adhesive application
  • Measuring 4" x 4"
  • Clings to any smooth surface
  • Free shipping - USA only, USPS First Class Mail

https://www.bitmit.net/en/item/7153-bitcoin-4-window-decal
16  Economy / Goods / [WTS] Bitcoin 4" Window Decal on: September 21, 2012, 10:42:46 PM

https://www.bitmit.net/en/trade/i/6559-bitcoin-4-window-decal/description

Give your dorm, apartment or vehical's window some cryptocurrency style with this Bitcoin decal created just for windows! It's made from a transparent, vinyl material with a sticky backside, so it's easy to position on the outside of your window, and it features a bold, two-color, Bitcoin logo.

  • Bitcoin Decal for Windows
  • Outside adhesive application
  • Measuring 4" x 4"
  • Clings to any smooth surface
  • Free shipping - USA only, USPS First Class Mail
17  Bitcoin / Project Development / Re: BTC-Puppy - Live, No network, Brainwallet CD-ROM on: September 12, 2012, 05:20:25 PM
My goal would be to turn all external access off. Network, USB, Serial...

Your passphrase, address & key would get hand-written on paper.

This is obviously not for everyday use. This is for long-term savings accounts where the key is stored in a safety deposit box or your brain.
18  Bitcoin / Project Development / BTC-Puppy - Live, No network, Brainwallet CD-ROM on: September 12, 2012, 03:57:22 PM
BTC-Puppy is a compact linux distribution (network disabled) designed for a single purpose - to generate offline, bitcoin brain wallets. This is a 'Live' booting CDROM that runs from RAM, launches a local copy of bitaddress.org in a web browser to generate offline bitcoin addresses.

This is a very early concept. If people find it useful, I'll trim all the unnecessary software from the distribution to create an ISO under 40MB.

Project page is at: https://sourceforge.net/projects/btcpuppy

More information on Puppy Linux here: http://puppylinux.org

19  Economy / Goods / [WTS] 3D Gold & Silver Bitcoin on: July 16, 2012, 11:22:04 AM


Selling a 3D Gold & Silver Bitcoin scenery file built in blender
http://www.blender.org.

The file can be modified to suit your needs. Reflective textures and
a simple flipping animation included. Can be downloaded from CoinDL:
https://www.coindl.com/page/item/298.

Sample animation: http://youtu.be/0TlhfJZcmYI
20  Other / Beginners & Help / Re: Whitelist Requests (Want out of here?) on: May 15, 2012, 06:59:46 PM
I'd like to be whitelisted. Been reading the forum for about a year. Would now like to offer 3D modeling and 3D printing services for BTC.
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!