Bitcoin Forum
May 23, 2024, 05:19:34 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 [88] 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 »
1741  Local / Other languages/locations / Re: Bitcoin Translation Room on: February 26, 2011, 11:56:58 PM
can I have access please?

genjix on github

still working on it... http://pastebin.com/KcgUBaU7
1742  Bitcoin / Development & Technical Discussion / Re: Idea for encrypted wallet implementation on: February 26, 2011, 06:22:51 PM
I wrote this program,
https://github.com/genjix/sekureco/blob/master/sekureco

Together with a cloud backup service (see www),
https://github.com/genjix/sekureco

I need someone to vet the security by me explaining what it does. I also need to clean up the code (comments, organisation, consistent naming), but for now it encrypts / backs up to server.

For integrating inside a bitcoin client.

./sekureco is a command line tool you can run with help instructions. See README also.

It works by using symmetric encryption for the wallet file (AES) and encrypting the AES key using an asymmetric encryption scheme (RSA).

For the server backup side, you upload (once only) your RSA keypair + encrypted AES key. The server responds with a 40 character long random ID code which you then use to upload your encrypted wallets. If the client wishes to backup their wallet they need the ID to download the latest version. If the user correctly enters the pass to the RSA keypair they can download the keys or ID (which can be used for fetching the encrypted wallets or uploading new versions). If they guess the pass incorrectly then the restore functionality for that account is locked for 10 hours.
1743  Bitcoin / Development & Technical Discussion / Linux packages should have an autodetect 32/64 bit using bash on: February 26, 2011, 05:30:59 PM
bitcoin.linux
Code:
#!/bin/bash
MACHINE_TYPE=`uname -m`
WORKING_DIR=`basename $0`
if [ ${MACHINE_TYPE} == 'x86_64' ]; then
  # run 64-bit bitcoin here
  $WORKING_DIR/bin/64/bitcoin
else
  # run 32-bit bitcoin here
  $WORKING_DIR/bin/32/bitcoin
fi

Idea came to me after a user on IRC was having trouble running bitcoin (didn't know their arch nor how to navigate in console nor about bitcoin/bitcoind distinction).

My sister has been using bitcoin, and because of the long startup/multiple executables she was just going into every directory under bin and opening all the binaries repeatedly until it bitcoin opens. She assumed it was because bitcoin is broken. This script would also alleviate that problem.
1744  Other / Off-topic / Re: Server-Side Uploader, the bank data aggregation engine - open sourced on: February 26, 2011, 02:34:48 PM
This is great news. I wonder why banks are so shitty as to not provide a simple API themselves.

Is there a list around of which banks it supports?
1745  Economy / Exchanges / Re: mtgox.com has blocked my account with 45 000 USD in it! on: February 26, 2011, 10:40:13 AM
Unfreeze the money. Stop playing policeman. What happens outside mtgox is unrelated. It's a trading platform, nothing more.
1746  Economy / Marketplace / Re: Investors for bitcoin stock market and credit rating agrency, dev started! on: February 26, 2011, 10:13:52 AM
Doesn't a stock system require truthful reporting of a company's profits? How would such system work based on trust?

Or if I sell shares in a company then decide to ignore what the shareholders demand?
1747  Bitcoin / Bitcoin Discussion / Re: When people ask me why I use bitcoin I show them this . on: February 26, 2011, 09:44:19 AM
* genjix hello
1748  Bitcoin / Development & Technical Discussion / Re: Wallet backup in the cloud on: February 26, 2011, 08:51:55 AM
I have done this but am looking for someone to review the code and a VPS to host the service.
1749  Other / Off-topic / Re: Micro startup/investment class project/experiment in China on: February 25, 2011, 08:24:53 PM
How come they must trade with each other? Why not make it so they have to earn 100 BTC per business using these forums or whatever?
1750  Other / Off-topic / Re: Xtreme Programming (XP) on: February 25, 2011, 05:48:16 PM
... over the net:
Oh, over the net...

I will be interested to see how that goes. I don't know if the human communication bandwidth will be high enough.

yeah the OP was talking about in real life, but then as I looked into it I got excited at the idea of trying it on some free software projects I'm currently writing.
1751  Other / Off-topic / Re: Xtreme Programming (XP) on: February 25, 2011, 05:09:14 PM
OK.

Can't wait to try this with another dev.

Here's what I imagine over the net:
Gobby or shared screen session + vim over SSH -X
Skype for voice chat

Shame there's nothing like gobby for vim or vim mode for gobby...
1752  Bitcoin / Development & Technical Discussion / Re: [PATCH] InitializationCompleted on: February 25, 2011, 12:41:44 PM
No it's not.

There's no way to recover if there's some error starting the RPC server. Maybe if there's a SEGV signal you can catch the return value only.

You're insisting on any wrapper around the bitcoin core to use hacks to implement incomplete functionality.
1753  Economy / Marketplace / Re: Experiences about doubletrouble.bitcoinbet.com? on: February 25, 2011, 12:17:50 PM
The chance of losing 8 or more out of 9 games is:

9N8 = from 9 choose 8 = 9

9*(0.5)^9 + (0.5)^9 = 10 * 0.5^9 = 2%

In other words if 50 people played 9 games of double trouble then we expect 1 person to lose 8 or more games.
1754  Other / Off-topic / Re: Xtreme Programming (XP) on: February 25, 2011, 11:51:42 AM
So am I correct to say that:
- The experienced coder is bogged down.
- The inexperienced coder makes massive leaps to the level of the experienced coder.

Definitely keen to try this out.
1755  Economy / Marketplace / Re: Web hosts that can be paid in bitcoins? on: February 25, 2011, 10:09:38 AM
I recommend kalyhost.com

They offer both VPS and web hosting. They're hosting the bitcoin wiki and pretty stable from what I've seen.
1756  Bitcoin / Development & Technical Discussion / [PATCH] InitializationCompleted on: February 25, 2011, 09:57:17 AM
I noticed that https://github.com/bitcoin/bitcoin hasn't had this patch merged into it,

https://github.com/genjix/spesmilo/blob/master/bitcoin.patch

I've been using this for a while and it works fine.

Can it be merged to make it into the next release please?
1757  Bitcoin / Bitcoin Discussion / Re: 6 hours and 0 confirms! on: February 24, 2011, 11:15:05 PM
Did you try using the -rescan switch? This forces it to scan the downloaded block chain for any transactions missing from the wallet.

Ha! thanks! I did that and immediately it shows up with 41 confirms.

Code:
    {
        "account" : "",
        "address" : "16xuHMEHQYVXTRJ6no5MivMVcCtPifEGsu",
        "category" : "send",
        "amount" : -65.48000000,
        "fee" : -0.00769472,
        "confirmations" : 41,
        "txid" : "fc6bd26302ca7362f5b32d87eaaeabf480a132f3639e397024b7a2cc3194e21d",
        "time" : 1298569457
    }
1758  Bitcoin / Bitcoin Discussion / 6 hours and 0 confirms! on: February 24, 2011, 10:51:46 PM
At 1735 I made a transaction sending BTC to another offline wallet of mine using a computer with 0.3.19 beta. 8 connections and the full block chain.

At 2200 I downloaded 0.3.20 and opened that instead... Now it's 2250 and still 0 confirms...

Code:
    {
        "account" : "",
        "address" : "16xuHMEHQYVXTRJ6no5MivMVcCtPifEGsu",
        "category" : "send",
        "amount" : -65.48000000,
        "fee" : -0.00769472,
        "confirmations" : 0,
        "txid" : "fcf8d4487dc2d351879d2e2788e2b9554b80607c29e078f3b2b821496deb0f0e",
        "time" : 1298568918
    }

{
    "version" : 32001,
    "balance" : 0.00000000,
    "blocks" : 110231,
    "connections" : 2,
    "proxy" : "",
    "generate" : false,
    "genproclimit" : -1,
    "difficulty" : 36459.88692508,
    "hashespersec" : 0,
    "testnet" : false,
    "keypoololdest" : 1297624404,
    "paytxfee" : 0.00000000,
    "errors" : ""
}

Can I retrieve my bitcoins now that this transaction seems to be borked?
1759  Other / Off-topic / Xtreme Programming (XP) on: February 24, 2011, 06:43:12 PM
What are your experiences of pair programming when 1 person has significantly higher skill advantage than the other? Is it a good way to teach programming?

How does it work in practice? Do they take turns to code while the other watches? Doesn't seem very efficient... Is there a looser way to code in pairs?

I'm used to agile dev in general though, but am thinking whether I can use pair programming as a teaching tool by constructing shared projects. The usual teacher-student method is too dictatorial for my tastes.
1760  Other / Off-topic / Re: Running a business like an open source project on: February 24, 2011, 05:10:42 PM
Until there are things that are necessary to do but no one wants to do. That's why it's called work, not leisure.

Not so true. You do the 'work' on free software because you want the project to be good and it has to be done. Likewise everyone in this project wants the organisation to do well- that's motivation to do the 'work'.

It's just:
- Dead wood people.
- Aligning people's interest to keep the organisation healthy.
- Fostering an environment where people take initiative, not orders.
Pages: « 1 ... 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 [88] 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!