1 <?xml version=
"1.0" encoding=
"utf-8"?>
2 <rss version='
2.0' xmlns:lj='http://www.livejournal.org/rss/lj/
1.0/'
>
4 <title>Petter Reinholdtsen - Entries tagged bitcoin
</title>
5 <description>Entries tagged bitcoin
</description>
6 <link>http://www.hungry.com/~pere/blog/
</link>
10 <title>Plain text accounting file from your bitcoin transactions
</title>
11 <link>http://www.hungry.com/~pere/blog/Plain_text_accounting_file_from_your_bitcoin_transactions.html
</link>
12 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/Plain_text_accounting_file_from_your_bitcoin_transactions.html
</guid>
13 <pubDate>Thu,
7 Mar
2024 18:
00:
00 +
0100</pubDate>
14 <description><p
>A while back I wrote a small script to extract the Bitcoin
15 transactions in a wallet in the
16 <ahref=
"https://plaintextaccounting.org/
">ledger plain text accounting
17 format
</a
>. The last few days I spent some time to get it working
18 better with more special cases. In case it can be useful for others,
19 here is a copy:
</p
>
21 <p
><blockquote
><pre
>
23 # -*- coding: utf-
8 -*-
24 # Copyright (c)
2023-
2024 Petter Reinholdtsen
26 from decimal import Decimal
33 def format_float(num):
34 return numpy.format_float_positional(num, trim=
'-
')
37 u
'amount
' :
'Assets:BTC:main
',
41 '<some address
>' :
'Assets:bankkonto
',
42 '<some address
>' :
'Assets:bankkonto
',
46 proc = subprocess.Popen(cmd,stdout=subprocess.PIPE)
47 j = json.loads(proc.communicate()[
0], parse_float=Decimal)
51 # get all transactions for all accounts / addresses
56 cmd = [
'bitcoin-cli
',
'listtransactions
',
'*
', str(limit)]
58 txs.extend(exec_json(cmd))
60 # Useful for debugging
61 with open(
'transactions.json
') as f:
62 txs.extend(json.load(f, parse_float=Decimal))
64 for tx in sorted(txs, key=lambda a: a[
'time
']):
65 # print tx[
'category
']
66 if
'abandoned
' in tx and tx[
'abandoned
']:
68 if
'confirmations
' in tx and
0 >= tx[
'confirmations
']:
70 when = time.strftime(
'%Y-%m-%d %H:%M
', time.localtime(tx[
'time
']))
71 if
'message
' in tx:
72 desc = tx[
'message
']
73 elif
'comment
' in tx:
74 desc = tx[
'comment
']
75 elif
'label
' in tx:
76 desc = tx[
'label
']
79 print(
"%s %s
" % (when, desc))
80 if
'address
' in tx:
81 print(
" ; to bitcoin address %s
" % tx[
'address
'])
83 print(
" ; missing address in transaction, txid=%s
" % tx[
'txid
'])
84 print(f
" ; amount={tx[
'amount
']}
")
85 if
'fee
'in tx:
86 print(f
" ; fee={tx[
'fee
']}
")
87 for f in accounts.keys():
88 if f in tx and Decimal(
0) != tx[f]:
90 print(
" %-
20s %s BTC
" % (accounts[f], format_float(amount)))
91 if
'fee
' in tx and Decimal(
0) != tx[
'fee
']:
92 # Make sure to list fee used in several transactions only once.
93 if
'fee
' in tx and tx[
'txid
'] in txidfee \
94 and tx[
'fee
'] == txidfee[tx[
'txid
']]:
97 fee = tx[
'fee
']
98 print(
" %-
20s %s BTC
" % (accounts[
'amount
'], format_float(fee)))
99 print(
" %-
20s %s BTC
" % (
'Expences:BTC-fee
', format_float(-fee)))
100 txidfee[tx[
'txid
']] = tx[
'fee
']
102 if
'address
' in tx and tx[
'address
'] in addresses:
103 print(
" %s
" % addresses[tx[
'address
']])
105 if
'generate
' == tx[
'category
']:
106 print(
" Income:BTC-mining
")
108 if amount
< Decimal(
0):
109 print(f
" Assets:unknown:sent:update-script-addr-{tx[
'address
']}
")
111 print(f
" Assets:unknown:received:update-script-addr-{tx[
'address
']}
")
115 print(
"# Found %d transactions
" % c)
117 print(f
"# Warning: Limit {limit} reached, consider increasing limit.
")
123 </pre
></blockquote
></p
>
125 <p
>It is more of a proof of concept, and I do not expect it to handle
126 all edge cases, but it worked for me, and perhaps you can find it
127 useful too.
</p
>
129 <p
>To get a more interesting result, it is useful to map accounts sent
130 to or received from to accounting accounts, using the
131 <tt
>addresses
</tt
> hash. As these will be very context dependent, I
132 leave out my list to allow each user to fill out their own list of
133 accounts. Out of the box,
'ledger reg BTC:main
' should be able to
134 show the amount of BTCs present in the wallet at any given time in the
135 past. For other and more valuable analysis, a account plan need to be
136 set up in the
<tt
>addresses
</tt
> hash. Here is an example
137 transaction:
</p
>
139 <p
><blockquote
><pre
>
140 2024-
03-
07 17:
00 Donated to good cause
141 Assets:BTC:main -
0.1 BTC
142 Assets:BTC:main -
0.00001 BTC
143 Expences:BTC-fee
0.00001 BTC
144 Expences:donations
0.1 BTC
145 </pre
></blockquote
></p
>
147 <p
>It need a running Bitcoin Core daemon running, as it connect to it
148 using
<tt
>bitcoin-cli listtransactions *
100000</tt
> to extract the
149 transactions listed in the Wallet.
</p
>
151 <p
>As usual, if you use Bitcoin and want to show your support of my
152 activities, please send Bitcoin donations to my address
153 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
158 <title>Updated Valutakrambod, now also with information from NBX
</title>
159 <link>http://www.hungry.com/~pere/blog/Updated_Valutakrambod__now_also_with_information_from_NBX.html
</link>
160 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/Updated_Valutakrambod__now_also_with_information_from_NBX.html
</guid>
161 <pubDate>Sat,
27 Feb
2021 13:
30:
00 +
0100</pubDate>
162 <description><p
>I have neglected the Valutakrambod library for a while, but decided
163 this weekend to give it a face lift. I fixed a few minor glitches in
164 several of the service drivers, where the API had changed since I last
165 looked at the code. I also added support for fetching the order book
166 from the newcomer Norwegian Bitcoin Exchange.
</p
>
168 <p
>I also decided to migrate the project from github to gitlab in the
169 process. If you want a python library for talking to various currency
171 <a href=
"https://gitlab.com/petterreinholdtsen/valutakrambod
">code for
172 valutakrambod
</a
>.
</p
>
174 <p
>This is what the output from
'<tt
>bin/btc-rates-curses -c
</tt
>'
175 looked like a few minutes ago:
</p
>
177 <p
><blockquote
><pre
>
178 Name Pair Bid Ask Spread Ftcd Age Freq
179 Bitfinex BTCEUR
39229.0000 39246.0000 0.0%
44 44 nan
180 Bitmynt BTCEUR
39071.0000 41048.9000 4.8%
43 74 nan
181 Bitpay BTCEUR
39326.7000 nan nan%
39 nan nan
182 Bitstamp BTCEUR
39398.7900 39417.3200 0.0%
0 0 1
183 Bl3p BTCEUR
39158.7800 39581.9000 1.1%
0 nan
3
184 Coinbase BTCEUR
39197.3100 39621.9300 1.1%
38 nan nan
185 Kraken+BTCEUR
39432.9000 39433.0000 0.0%
0 0 0
186 Paymium BTCEUR
39437.2100 39499.9300 0.2%
0 2264 nan
187 Bitmynt BTCNOK
409750.9600 420516.8500 2.6%
43 74 nan
188 Bitpay BTCNOK
410332.4000 nan nan%
39 nan nan
189 Coinbase BTCNOK
408675.7300 412813.7900 1.0%
38 nan nan
190 MiraiEx BTCNOK
412174.1800 418396.1500 1.5%
34 nan nan
191 NBX BTCNOK
405835.9000 408921.4300 0.8%
33 nan nan
192 Bitfinex BTCUSD
47341.0000 47355.0000 0.0%
44 53 nan
193 Bitpay BTCUSD
47388.5100 nan nan%
39 nan nan
194 Coinbase BTCUSD
47153.6500 47651.3700 1.0%
37 nan nan
195 Gemini BTCUSD
47416.0900 47439.0500 0.0%
36 336 nan
196 Hitbtc BTCUSD
47429.9900 47386.7400 -
0.1%
0 0 0
197 Kraken+BTCUSD
47401.7000 47401.8000 0.0%
0 0 0
198 Exchangerates EURNOK
10.4012 10.4012 0.0%
38 76236 nan
199 Norgesbank EURNOK
10.4012 10.4012 0.0%
31 76236 nan
200 Bitstamp EURUSD
1.2030 1.2045 0.1%
2 2 1
201 Exchangerates EURUSD
1.2121 1.2121 0.0%
38 76236 nan
202 Norgesbank USDNOK
8.5811 8.5811 0.0%
31 76236 nan
203 </pre
></blockquote
></p
>
205 <p
>Yes, I notice the negative spread on Hitbtc. Either I fail to
206 understand their Websocket API or they are sending bogus data. I
've
207 seen the same with Kraken, and suspect there is something wrong with
208 the data they send.
</p
>
210 <p
>As usual, if you use Bitcoin and want to show your support of my
211 activities, please send Bitcoin donations to my address
212 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
217 <title>Websocket from Kraken in Valutakrambod
</title>
218 <link>http://www.hungry.com/~pere/blog/Websocket_from_Kraken_in_Valutakrambod.html
</link>
219 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/Websocket_from_Kraken_in_Valutakrambod.html
</guid>
220 <pubDate>Fri,
1 Feb
2019 22:
25:
00 +
0100</pubDate>
221 <description><p
>Yesterday, the Kraken virtual currency exchange announced
222 <a href=
"https://blog.kraken.com/post/
2019/websockets-public-api-launching-soon/
">their
223 Websocket service
</a
>, providing a stream of exchange updates to its
224 clients. Getting updated rates quickly is a good idea, so I used
225 their
<a href=
"https://www.kraken.com/en-us/help/websocket-api
">API
226 documentation
</a
> and added Websocket support to the Kraken service in
227 Valutakrambod today. The python library can now get updates
228 from Kraken several times per second, instead of every time the
229 information is polled from the REST API.
</p
>
231 <p
>If this sound interesting to you, the code for valutakrambod is
233 <a href=
"http://github.com/petterreinholdtsen/valutakrambod
">github
</a
>.
234 Here is example output from the example client displaying rates in a
235 curses view:
</p
>
237 <p
><blockquote
><pre
>
238 Name Pair Bid Ask Spr Ftcd Age
239 BitcoinsNorway BTCEUR
2959.2800 3021.0500 2.0%
36 nan nan
240 Bitfinex BTCEUR
3087.9000 3088.0000 0.0%
36 37 nan
241 Bitmynt BTCEUR
3001.8700 3135.4600 4.3%
36 52 nan
242 Bitpay BTCEUR
3003.8659 nan nan%
35 nan nan
243 Bitstamp BTCEUR
3008.0000 3010.2300 0.1%
0 1 1
244 Bl3p BTCEUR
3000.6700 3010.9300 0.3%
1 nan nan
245 Coinbase BTCEUR
2992.1800 3023.2500 1.0%
34 nan nan
246 Kraken+BTCEUR
3005.7000 3006.6000 0.0%
0 1 0
247 Paymium BTCEUR
2940.0100 2993.4400 1.8%
0 2688 nan
248 BitcoinsNorway BTCNOK
29000.0000 29360.7400 1.2%
36 nan nan
249 Bitmynt BTCNOK
29115.6400 29720.7500 2.0%
36 52 nan
250 Bitpay BTCNOK
29029.2512 nan nan%
36 nan nan
251 Coinbase BTCNOK
28927.6000 29218.5900 1.0%
35 nan nan
252 MiraiEx BTCNOK
29097.7000 29741.4200 2.2%
36 nan nan
253 BitcoinsNorway BTCUSD
3385.4200 3456.0900 2.0%
36 nan nan
254 Bitfinex BTCUSD
3538.5000 3538.6000 0.0%
36 45 nan
255 Bitpay BTCUSD
3443.4600 nan nan%
34 nan nan
256 Bitstamp BTCUSD
3443.0100 3445.0500 0.1%
0 2 1
257 Coinbase BTCUSD
3428.1600 3462.6300 1.0%
33 nan nan
258 Gemini BTCUSD
3445.8800 3445.8900 0.0%
36 326 nan
259 Hitbtc BTCUSD
3473.4700 3473.0700 -
0.0%
0 0 0
260 Kraken+BTCUSD
3444.4000 3445.6000 0.0%
0 1 0
261 Exchangerates EURNOK
9.6685 9.6685 0.0%
36 22226 nan
262 Norgesbank EURNOK
9.6685 9.6685 0.0%
36 22226 nan
263 Bitstamp EURUSD
1.1440 1.1462 0.2%
0 1 2
264 Exchangerates EURUSD
1.1471 1.1471 0.0%
36 22226 nan
265 BitcoinsNorway LTCEUR
1.0009 22.6538 95.6%
35 nan nan
266 BitcoinsNorway LTCNOK
259.0900 264.9300 2.2%
35 nan nan
267 BitcoinsNorway LTCUSD
0.0000 29.0000 100.0%
35 nan nan
268 Norgesbank USDNOK
8.4286 8.4286 0.0%
36 22226 nan
269 </pre
></blockquote
></p
>
271 <p
>Yes, I notice the strange negative spread on Hitbtc. I
've seen the
272 same on Kraken. Another strange observation is that Kraken some times
273 announce trade orders a fraction of a second in the future. I really
274 wonder what is going on there.
</p
>
276 <p
>As usual, if you use Bitcoin and want to show your support of my
277 activities, please send Bitcoin donations to my address
278 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
283 <title>Valutakrambod - A python and bitcoin love story
</title>
284 <link>http://www.hungry.com/~pere/blog/Valutakrambod___A_python_and_bitcoin_love_story.html
</link>
285 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/Valutakrambod___A_python_and_bitcoin_love_story.html
</guid>
286 <pubDate>Sat,
29 Sep
2018 22:
20:
00 +
0200</pubDate>
287 <description><p
>It would come as no surprise to anyone that I am interested in
288 bitcoins and virtual currencies. I
've been keeping an eye on virtual
289 currencies for many years, and it is part of the reason a few months
290 ago, I started writing a python library for collecting currency
291 exchange rates and trade on virtual currency exchanges. I decided to
292 name the end result valutakrambod, which perhaps can be translated to
293 small currency shop.
</p
>
295 <p
>The library uses the tornado python library to handle HTTP and
296 websocket connections, and provide a asynchronous system for
297 connecting to and tracking several services. The code is available
299 <a href=
"http://github.com/petterreinholdtsen/valutakrambod
">github
</a
>.
</p
>
301 </p
>There are two example clients of the library. One is very simple and
302 list every updated buy/sell price received from the various services.
303 This code is started by running bin/btc-rates and call the client code
304 in valutakrambod/client.py. The simple client look like this:
</p
>
306 <p
><blockquote
><pre
>
308 import tornado.ioloop
310 class SimpleClient(object):
315 def newdata(self, service, pair, changed):
316 print(
"%-
15s %s-%s: %
8.3f %
8.3f
" % (
317 service.servicename(),
320 service.rates[pair][
'ask
'],
321 service.rates[pair][
'bid
'])
323 async def refresh(self, service):
324 await service.fetchRates(service.wantedpairs)
326 self.ioloop = tornado.ioloop.IOLoop.current()
327 self.services = valutakrambod.service.knownServices()
328 for e in self.services:
330 service.subscribe(self.newdata)
331 stream = service.websocket()
333 self.streams.append(stream)
335 # Fetch information from non-streaming services immediately
336 self.ioloop.call_later(len(self.services),
337 functools.partial(self.refresh, service))
338 # as well as regularly
339 service.periodicUpdate(
60)
340 for stream in self.streams:
344 except KeyboardInterrupt:
345 print(
"Interrupted by keyboard, closing all connections.
")
347 for stream in self.streams:
349 </pre
></blockquote
></p
>
351 <p
>The library client loops over all known
"public
" services,
352 initialises it, subscribes to any updates from the service, checks and
353 activates websocket streaming if the service provide it, and if no
354 streaming is supported, fetches information from the service and sets
355 up a periodic update every
60 seconds. The output from this client
356 can look like this:
</p
>
358 <p
><blockquote
><pre
>
359 Bl3p BTC-EUR:
5687.110 5653.690
360 Bl3p BTC-EUR:
5687.110 5653.690
361 Bl3p BTC-EUR:
5687.110 5653.690
362 Hitbtc BTC-USD:
6594.560 6593.690
363 Hitbtc BTC-USD:
6594.560 6593.690
364 Bl3p BTC-EUR:
5687.110 5653.690
365 Hitbtc BTC-USD:
6594.570 6593.690
366 Bitstamp EUR-USD:
1.159 1.154
367 Hitbtc BTC-USD:
6594.570 6593.690
368 Hitbtc BTC-USD:
6594.580 6593.690
369 Hitbtc BTC-USD:
6594.580 6593.690
370 Hitbtc BTC-USD:
6594.580 6593.690
371 Bl3p BTC-EUR:
5687.110 5653.690
372 Paymium BTC-EUR:
5680.000 5620.240
373 </pre
></blockquote
></p
>
375 <p
>The exchange order book is tracked in addition to the best buy/sell
376 price, for those that need to know the details.
</p
>
378 <p
>The other example client is focusing on providing a curses view
379 with updated buy/sell prices as soon as they are received from the
380 services. This code is located in bin/btc-rates-curses and activated
381 by using the
'-c
' argument. Without the argument the
"curses
" output
382 is printed without using curses, which is useful for debugging. The
383 curses view look like this:
</p
>
385 <p
><blockquote
><pre
>
386 Name Pair Bid Ask Spr Ftcd Age
387 BitcoinsNorway BTCEUR
5591.8400 5711.0800 2.1%
16 nan
60
388 Bitfinex BTCEUR
5671.0000 5671.2000 0.0%
16 22 59
389 Bitmynt BTCEUR
5580.8000 5807.5200 3.9%
16 41 60
390 Bitpay BTCEUR
5663.2700 nan nan%
15 nan
60
391 Bitstamp BTCEUR
5664.8400 5676.5300 0.2%
0 1 1
392 Bl3p BTCEUR
5653.6900 5684.9400 0.5%
0 nan
19
393 Coinbase BTCEUR
5600.8200 5714.9000 2.0%
15 nan nan
394 Kraken BTCEUR
5670.1000 5670.2000 0.0%
14 17 60
395 Paymium BTCEUR
5620.0600 5680.0000 1.1%
1 7515 nan
396 BitcoinsNorway BTCNOK
52898.9700 54034.6100 2.1%
16 nan
60
397 Bitmynt BTCNOK
52960.3200 54031.1900 2.0%
16 41 60
398 Bitpay BTCNOK
53477.7833 nan nan%
16 nan
60
399 Coinbase BTCNOK
52990.3500 54063.0600 2.0%
15 nan nan
400 MiraiEx BTCNOK
52856.5300 54100.6000 2.3%
16 nan nan
401 BitcoinsNorway BTCUSD
6495.5300 6631.5400 2.1%
16 nan
60
402 Bitfinex BTCUSD
6590.6000 6590.7000 0.0%
16 23 57
403 Bitpay BTCUSD
6564.1300 nan nan%
15 nan
60
404 Bitstamp BTCUSD
6561.1400 6565.6200 0.1%
0 2 1
405 Coinbase BTCUSD
6504.0600 6635.9700 2.0%
14 nan
117
406 Gemini BTCUSD
6567.1300 6573.0700 0.1%
16 89 nan
407 Hitbtc+BTCUSD
6592.6200 6594.2100 0.0%
0 0 0
408 Kraken BTCUSD
6565.2000 6570.9000 0.1%
15 17 58
409 Exchangerates EURNOK
9.4665 9.4665 0.0%
16 107789 nan
410 Norgesbank EURNOK
9.4665 9.4665 0.0%
16 107789 nan
411 Bitstamp EURUSD
1.1537 1.1593 0.5%
4 5 1
412 Exchangerates EURUSD
1.1576 1.1576 0.0%
16 107789 nan
413 BitcoinsNorway LTCEUR
1.0000 49.0000 98.0%
16 nan nan
414 BitcoinsNorway LTCNOK
492.4800 503.7500 2.2%
16 nan
60
415 BitcoinsNorway LTCUSD
1.0221 49.0000 97.9%
15 nan nan
416 Norgesbank USDNOK
8.1777 8.1777 0.0%
16 107789 nan
417 </pre
></blockquote
></p
>
419 <p
>The code for this client is too complex for a simple blog post, so
420 you will have to check out the git repository to figure out how it
421 work. What I can tell is how the three last numbers on each line
422 should be interpreted. The first is how many seconds ago information
423 was received from the service. The second is how long ago, according
424 to the service, the provided information was updated. The last is an
425 estimate on how often the buy/sell values change.
</p
>
427 <p
>If you find this library useful, or would like to improve it, I
428 would love to hear from you. Note that for some of the services I
've
429 implemented a trading API. It might be the topic of a future blog
432 <p
>As usual, if you use Bitcoin and want to show your support of my
433 activities, please send Bitcoin donations to my address
434 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
439 <title>EU-domstolen konkluderer motsatt av Skatteetaten når det gjelder Bitcoin
</title>
440 <link>http://www.hungry.com/~pere/blog/EU_domstolen_konkluderer_motsatt_av_Skatteetaten_n_r_det_gjelder_Bitcoin.html
</link>
441 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/EU_domstolen_konkluderer_motsatt_av_Skatteetaten_n_r_det_gjelder_Bitcoin.html
</guid>
442 <pubDate>Thu,
22 Oct
2015 13:
20:
00 +
0200</pubDate>
443 <description><p
>Bitcoin er i litt vinden i Norge for tiden, med
444 <a href=
"http://www.nrk.no/ytring/en-digital-robin-hood-
1.12604681">kronikk
445 om bitcoin-overføringer på tvers av landegrensene
</A
> hos NRK Ytring
446 for to dager siden og
447 <a href=
"https://tv.nrk.no/program/KOID25009815/kapital-bitcoin-en-digital-pengebinge
">dokumentar
448 om bitcoin
</a
> på NRK
2 i forgårs og i går. I den sammenhengen er det
449 spesielt hyggelig med en gladnyhet fra EU om Bitcoin.
</p
>
451 <p
>I dag konkluderte EU-domstolen at
452 <a href=
"http://curia.europa.eu/juris/document/document.jsf?text=
&docid=
170305&pageIndex=
0&doclang=en
&mode=req
&dir=
&occ=first
&part=
1&cid=
604079">Bitcoin-kjøp
453 fra Bitcoin-børser ikke er MVA-pliktig
</a
> (sak C‑
264/
14). Fant
454 <a href=
"http://www.reuters.com/article/
2015/
10/
22/us-bitcoin-tax-eu-idUSKCN0SG0X920151022
">nyheten
455 først hos Reuters
</a
>, etter tips fra innehaveren av
456 <a href=
"http://www.bitmynt.no/
">Bitmynt
</a
>. EU-domstolens avgjørelse
458 <a href=
"http://www.skatteetaten.no/no/Radgiver/Rettskilder/Uttalelser/Prinsipputtalelser/Bruk-av-bitcoins--skatte--og-avgiftsmessige-konsekvenser/
">annonseringen
459 fra Skatteetaten i
2013</a
>, der de konkluderte med at bitcoin er et
460 «formuesobjekter» som det skulle betales mva på ved kjøp og salg.
461 Dermed la Skatteetaten opp til dobbel MVA-betaling hvis en kjøpte noe
462 med Bitcoin fra Norge (først mva på kjøp av Bitcoin, deretter mva på
463 det en kjøper med Bitcoin). Jeg lurer på om denne avgjørelsen får
464 Skatteetaten til å bytte mening. Gleder meg til fortsettelsen.
</p
>
469 <title>A fist full of non-anonymous Bitcoins
</title>
470 <link>http://www.hungry.com/~pere/blog/A_fist_full_of_non_anonymous_Bitcoins.html
</link>
471 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/A_fist_full_of_non_anonymous_Bitcoins.html
</guid>
472 <pubDate>Wed,
29 Jan
2014 14:
10:
00 +
0100</pubDate>
473 <description><p
>Bitcoin is a incredible use of peer to peer communication and
474 encryption, allowing direct and immediate money transfer without any
475 central control. It is sometimes claimed to be ideal for illegal
476 activity, which I believe is quite a long way from the truth. At least
477 I would not conduct illegal money transfers using a system where the
478 details of every transaction are kept forever. This point is
480 <a href=
"https://www.usenix.org/publications/login
">USENIX ;login:
</a
>
481 from December
2013, in the article
482 "<a href=
"https://www.usenix.org/system/files/login/articles/
03_meiklejohn-online.pdf
">A
483 Fistful of Bitcoins - Characterizing Payments Among Men with No
484 Names
</a
>" by Sarah Meiklejohn, Marjori Pomarole,Grant Jordan, Kirill
485 Levchenko, Damon McCoy, Geoffrey M. Voelker, and Stefan Savage. They
486 analyse the transaction log in the Bitcoin system, using it to find
487 addresses belong to individuals and organisations and follow the flow
488 of money from both Bitcoin theft and trades on Silk Road to where the
489 money end up. This is how they wrap up their article:
</p
>
491 <p
><blockquote
>
492 <p
>"To demonstrate the usefulness of this type of analysis, we turned
493 our attention to criminal activity. In the Bitcoin economy, criminal
494 activity can appear in a number of forms, such as dealing drugs on
495 Silk Road or simply stealing someone else’s bitcoins. We followed the
496 flow of bitcoins out of Silk Road (in particular, from one notorious
497 address) and from a number of highly publicized thefts to see whether
498 we could track the bitcoins to known services. Although some of the
499 thieves attempted to use sophisticated mixing techniques (or possibly
500 mix services) to obscure the flow of bitcoins, for the most part
501 tracking the bitcoins was quite straightforward, and we ultimately saw
502 large quantities of bitcoins flow to a variety of exchanges directly
503 from the point of theft (or the withdrawal from Silk Road).
</p
>
505 <p
>As acknowledged above, following stolen bitcoins to the point at
506 which they are deposited into an exchange does not in itself identify
507 the thief; however, it does enable further de-anonymization in the
508 case in which certain agencies can determine (through, for example,
509 subpoena power) the real-world owner of the account into which the
510 stolen bitcoins were deposited. Because such exchanges seem to serve
511 as chokepoints into and out of the Bitcoin economy (i.e., there are
512 few alternative ways to cash out), we conclude that using Bitcoin for
513 money laundering or other illicit purposes does not (at least at
514 present) seem to be particularly attractive.
"</p
>
515 </blockquote
><p
>
517 <p
>These researches are not the first to analyse the Bitcoin
518 transaction log. The
2011 paper
519 "<a href=
"http://arxiv.org/abs/
1107.4524">An Analysis of Anonymity in
520 the Bitcoin System
</A
>" by Fergal Reid and Martin Harrigan is
521 summarized like this:
</p
>
523 <p
><blockquote
>
524 "Anonymity in Bitcoin, a peer-to-peer electronic currency system, is a
525 complicated issue. Within the system, users are identified by
526 public-keys only. An attacker wishing to de-anonymize its users will
527 attempt to construct the one-to-many mapping between users and
528 public-keys and associate information external to the system with the
529 users. Bitcoin tries to prevent this attack by storing the mapping of
530 a user to his or her public-keys on that user
's node only and by
531 allowing each user to generate as many public-keys as required. In
532 this chapter we consider the topological structure of two networks
533 derived from Bitcoin
's public transaction history. We show that the
534 two networks have a non-trivial topological structure, provide
535 complementary views of the Bitcoin system and have implications for
536 anonymity. We combine these structures with external information and
537 techniques such as context discovery and flow analysis to investigate
538 an alleged theft of Bitcoins, which, at the time of the theft, had a
539 market value of approximately half a million U.S. dollars.
"
540 </blockquote
></p
>
542 <p
>I hope these references can help kill the urban myth that Bitcoin
543 is anonymous. It isn
't really a good fit for illegal activites. Use
544 cash if you need to stay anonymous, at least until regular DNA
545 sampling of notes and coins become the norm. :)
</p
>
547 <p
>As usual, if you use Bitcoin and want to show your support of my
548 activities, please send Bitcoin donations to my address
549 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
554 <title>Bitcoin er ikke anonymt - føres Stortinget bak lyset av finansministeren?
</title>
555 <link>http://www.hungry.com/~pere/blog/Bitcoin_er_ikke_anonymt___f_res_Stortinget_bak_lyset_av_finansministeren_.html
</link>
556 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/Bitcoin_er_ikke_anonymt___f_res_Stortinget_bak_lyset_av_finansministeren_.html
</guid>
557 <pubDate>Mon,
22 Apr
2013 20:
30:
00 +
0200</pubDate>
558 <description><p
><a href=
"http://bitcoin.org/
">Bitcoin
</a
> er mye i mediene for
559 tiden. Jeg følger med via Mylder for å finne
560 <a href=
"http://mylder.no/?drill=bitcoin
">artikler som omtaler
561 temaet
</a
>, og takket være dette oppdaget jeg at stortingsrepresentant
562 Ketil Solvik-Olsen fra FrP nylig har spurt finansminister Sigbjørn
563 Johnsen om hans syn på Bitcoin, og
564 <a href=
"http://www.stortinget.no/no/Saker-og-publikasjoner/Sporsmal/Skriftlige-sporsmal-og-svar/Skriftlig-sporsmal/?qid=
57052">fått
565 svar for noen dager siden
</a
>. Jeg bet meg spesielt merke til
566 følgende formulering fra finansministeren:
</p
>
568 <p
><blockquote
>
569 «Det er også utfordringer ved at handel med Bitcoins er uregulert og
570 at transaksjonene er anonyme.»
571 </blockquote
></p
>
573 <p
>At Bitcoin er anonymt er en myte som spres av både journalister og
574 andre, så det er ikke veldig overraskende at også finansministeren har
575 gått på limpinnen. Det er dog litt rart, da jeg håper at
576 finansdepartementet ikke baserer seg på rykter og myter når de
577 besvarer Stortinget. Men du trenger ikke bare tro på meg som kilde
578 til påstanden om at Bitcoin ikke er anonymt. Sondre Rønjom har
579 <a href=
"http://blogg.nsm.stat.no/archives/
3241">via Sikkerhetsbloggen
580 hos Nasjonal Sikkerhetsmyndighet
</a
> uttalt følgende:
</p
>
582 <p
><blockquote
>
583 «At [bitcoin] i utgangspunktet
584 <a href=
"http://arxiv.org/abs/
1107.4524"><em
>ikke
</em
> er anonymt
</a
>,
585 kommer kanskje som en overraskelse på mange.»
586 </blockquote
></p
>
588 <p
>Enhver bevegelse av Bitcoin er offentlig tilgjengelig for alle på
589 Internet, og en må legge svært mye innsats inn hvis en skal hindre at
590 nettverksanalyse av transaksjonsloggene kan brukes til å identifisere
591 brukerne. F.eks. kan en enkelt se hva jeg har mottatt til min
592 offentliggjorte mottaksadresse ved å besøke blockexplorer og slå opp
594 <a href=
"http://blockexplorer.com/address/
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
>.
595 Det virker dermed på meg ganske klart at å påstå at
596 Bitcoin-transaksjoner er anonyme strengt tatt er å føre Stortinget bak
599 <p
>Finansministeren er ikke den eneste som har latt seg forlede av
600 medieomtalen. I spørsmålet fra Hr. Solvik-Olsen skriver han at «For
601 noen dager siden kom den første bitcoin-minibanken på Kypros», hvilket
602 så vidt jeg har klart å finne ut ikke er riktig. Det er annonsert
603 planer om en slik minibank (fra
604 <a href=
"http://www.bitcoinatm.com/
">BitcoinATM
</a
>), men jeg finner
605 intet tegn til at en slik minibank er utplassert noe sted.
</p
>
607 <p
>Som vanlig, hvis du bruker Bitcoin og ønsker å vise din støtte til
608 mine aktiviteter, så setter jeg pris på Bitcoin-donasjoner til min
610 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
615 <title>Bitcoin GUI now available from Debian/unstable (and Ubuntu/raring)
</title>
616 <link>http://www.hungry.com/~pere/blog/Bitcoin_GUI_now_available_from_Debian_unstable__and_Ubuntu_raring_.html
</link>
617 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/Bitcoin_GUI_now_available_from_Debian_unstable__and_Ubuntu_raring_.html
</guid>
618 <pubDate>Sat,
2 Feb
2013 09:
00:
00 +
0100</pubDate>
619 <description><p
>My
620 <a href=
"https://people.skolelinux.org/pere/blog/How_to_backport_bitcoin_qt_version_0_7_2_2_to_Debian_Squeeze.html
">last
621 bitcoin related blog post
</a
> mentioned that the new
622 <a href=
"http://packages.qa.debian.org/bitcoin
">bitcoin package
</a
> for
623 Debian was waiting in NEW. It was accepted by the Debian ftp-masters
624 2013-
01-
19, and have been available in unstable since then. It was
625 automatically copied to Ubuntu, and is available in their Raring
626 version too.
</p
>
628 <p
>But there is a strange problem with the build that block this new
629 version from being available on the i386 and kfreebsd-i386
630 architectures. For some strange reason, the autobuilders in Debian
631 for these architectures fail to run the test suite on these
632 architectures (
<a href=
"http://bugs.debian.org/
672524">BTS #
672524</a
>).
633 We are so far unable to reproduce it when building it manually, and
634 no-one have been able to propose a fix. If you got an idea what is
635 failing, please let us know via the BTS.
</p
>
637 <p
>One feature that is annoying me with of the bitcoin client, because
638 I often run low on disk space, is the fact that the client will exit
639 if it run short on space (
<a href=
"http://bugs.debian.org/
696715">BTS
640 #
696715</a
>). So make sure you have enough disk space when you run
643 <p
>As usual, if you use bitcoin and want to show your support of my
644 activities, please send Bitcoin donations to my address
645 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
650 <title>How to backport bitcoin-qt version
0.7.2-
2 to Debian Squeeze
</title>
651 <link>http://www.hungry.com/~pere/blog/How_to_backport_bitcoin_qt_version_0_7_2_2_to_Debian_Squeeze.html
</link>
652 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/How_to_backport_bitcoin_qt_version_0_7_2_2_to_Debian_Squeeze.html
</guid>
653 <pubDate>Tue,
25 Dec
2012 20:
50:
00 +
0100</pubDate>
654 <description><p
>Let me start by wishing you all marry Christmas and a happy new
655 year! I hope next year will prove to be a good year.
</p
>
657 <p
><a href=
"http://www.bitcoin.org/
">Bitcoin
</a
>, the digital
658 decentralised
"currency
" that allow people to transfer bitcoins
659 between each other with minimal overhead, is a very interesting
660 experiment. And as I wrote a few days ago, the bitcoin situation in
661 <a href=
"http://www.debian.org/
">Debian
</a
> is about to improve a bit.
662 The
<a href=
"http://packages.qa.debian.org/bitcoin
">new debian source
663 package
</a
> (version
0.7.2-
2) was uploaded yesterday, and is waiting
664 in
<a href=
"http://ftp-master.debian.org/new.html
">the NEW queue
</A
>
665 for one of the ftpmasters to approve the new bitcoin-qt package
668 <p
>And thanks to the great work of Jonas and the rest of the bitcoin
669 team in Debian, you can easily test the package in Debian Squeeze
670 using the following steps to get a set of working packages:
</p
>
672 <blockquote
><pre
>
673 git clone git://git.debian.org/git/collab-maint/bitcoin
675 DEB_MAINTAINER_MODE=
1 DEB_BUILD_OPTIONS=noupnp fakeroot debian/rules clean
676 DEB_BUILD_OPTIONS=noupnp git-buildpackage --git-ignore-new
677 </pre
></blockquote
>
679 <p
>You might have to install some build dependencies as well. The
680 list of commands should give you two packages, bitcoind and
681 bitcoin-qt, ready for use in a Squeeze environment. Note that the
682 client will download the complete set of bitcoin
"blocks
", which need
683 around
5.6 GiB of data on my machine at the moment. Make sure your
684 ~/.bitcoin/ directory have lots of spare room if you want to download
685 all the blocks. The client will warn if the disk is getting full, so
686 there is not really a problem if you got too little room, but you will
687 not be able to get all the features out of the client.
</p
>
689 <p
>As usual, if you use bitcoin and want to show your support of my
690 activities, please send Bitcoin donations to my address
691 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
696 <title>A word on bitcoin support in Debian
</title>
697 <link>http://www.hungry.com/~pere/blog/A_word_on_bitcoin_support_in_Debian.html
</link>
698 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/A_word_on_bitcoin_support_in_Debian.html
</guid>
699 <pubDate>Fri,
21 Dec
2012 23:
59:
00 +
0100</pubDate>
700 <description><p
>It has been a while since I wrote about
701 <a href=
"http://www.bitcoin.org/
">bitcoin
</a
>, the decentralised
702 peer-to-peer based crypto-currency, and the reason is simply that I
703 have been busy elsewhere. But two days ago, I started looking at the
704 state of
<a href=
"http://packages.qa.debian.org/bitcoin
">bitcoin in
705 Debian
</a
> again to try to recover my old bitcoin wallet. The package
706 is now maintained by a
707 <a href=
"https://alioth.debian.org/projects/pkg-bitcoin/
">team of
708 people
</a
>, and the grunt work had already been done by this team. We
709 owe a huge thank you to all these team members. :)
710 But I was sad to discover that the bitcoin client is missing in
711 Wheezy. It is only available in Sid (and an outdated client from
712 backports). The client had several RC bugs registered in BTS blocking
713 it from entering testing. To try to help the team and improve the
714 situation, I spent some time providing patches and triaging the bug
715 reports. I also had a look at the bitcoin package available from Matt
717 <a href=
"https://launchpad.net/~bitcoin/+archive/bitcoin
">PPA for
718 Ubuntu
</a
>, and moved the useful pieces from that version into the
719 Debian package.
</p
>
721 <p
>After checking with the main package maintainer Jonas Smedegaard on
722 IRC, I pushed several patches into the collab-maint git repository to
723 improve the package. It now contains fixes for the RC issues (not from
724 me, but fixed by Scott Howard), build rules for a Qt GUI client
725 package, konqueror support for the bitcoin: URI and bash completion
726 setup. As I work on Debian Squeeze, I also created
727 <a href=
"http://lists.alioth.debian.org/pipermail/pkg-bitcoin-devel/Week-of-Mon-
20121217/
000041.html
">a
728 patch to backport
</a
> the latest version. Jonas is going to look at
729 it and try to integrate it into the git repository before uploading a
730 new version to unstable.
732 <p
>I would very much like bitcoin to succeed, to get rid of the
733 centralized control currently exercised in the monetary system. I
734 find it completely unacceptable that the USA government is collecting
735 transaction data for almost all international money transfers (most are done in USD and transaction logs shipped to the spooks), and
736 that the major credit card companies can block legal money
737 transactions to Wikileaks. But for bitcoin to succeed, more people
738 need to use bitcoins, and more people need to accept bitcoins when
739 they sell products and services. Improving the bitcoin support in
740 Debian is a small step in the right direction, but not enough.
741 Unfortunately the user experience when browsing the web and wanting to
742 pay with bitcoin is still not very good. The bitcoin: URI is a step
743 in the right direction, but need to work in most or every browser in
744 use. Also the bitcoin-qt client is too heavy to fire up to do a
745 quick transaction. I believe there are other clients available, but
746 have not tested them.
</p
>
749 <a href=
"https://people.skolelinux.org/pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html
">experiment
750 with bitcoins
</a
> showed that at least some of my readers use bitcoin.
751 I received
20.15 BTC so far on the address I provided in my blog two
753 <a href=
"http://blockexplorer.com/address/
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">seen
754 on the blockexplorer service
</a
>. Thank you everyone for your
755 donation. The blockexplorer service demonstrates quite well that
756 bitcoin is not quite anonymous and untracked. :) I wonder if the
757 number of users have gone up since then. If you use bitcoin and want
758 to show your support of my activity, please send Bitcoin donations to
759 the same address as last time,
760 <b
><a href=
"bitcoin:
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
></b
>.
</p
>
765 <title>The European Central Bank (ECB) take a look at bitcoin
</title>
766 <link>http://www.hungry.com/~pere/blog/The_European_Central_Bank__ECB__take_a_look_at_bitcoin.html
</link>
767 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/The_European_Central_Bank__ECB__take_a_look_at_bitcoin.html
</guid>
768 <pubDate>Sun,
4 Nov
2012 08:
30:
00 +
0100</pubDate>
769 <description><p
>Slashdot just ran a story about the European Central Bank (ECB)
770 <a href=
"http://www.ecb.europa.eu/pub/pdf/other/virtualcurrencyschemes201210en.pdf
">releasing
771 a report (PDF)
</a
> about virtual currencies and
772 <a href=
"http://www.bitcoin.org/
">bitcoin
</a
>. It is interesting to
773 see how a member of the bitcoin community
774 <a href=
"http://blog.bitinstant.com/blog/
2012/
10/
30/the-ecb-report-on-bitcoin-and-virtual-currencies.html
">receive
775 the report
</a
>. As for the future, I suspect the central banks and
776 the governments will outlaw bitcoin if it gain any popularity, to avoid
777 competition. My thoughts go to the
778 <a href=
"http://en.wikipedia.org/wiki/Wörgl
">Wörgl experiment
</a
> with
779 negative inflation on cash which was such a success that it was
780 terminated by the Austrian National Bank in
1933. A successful
781 alternative would be a threat to the current money system and gain
782 powerful forces to work against it.
</p
>
784 <p
>While checking out the current status of bitcoin, I also discovered
785 that the community already seem to have
786 <a href=
"http://www.theverge.com/
2012/
8/
27/
3271637/bitcoin-savings-trust-pyramid-scheme-shuts-down
">experienced
787 its first pyramid game / Ponzi scheme
</a
>. Not very surprising, given
788 how members of
"small
" communities tend to trust each other. I guess
789 enterprising crocks will try again and again, as they do anywhere
790 wealth is available.
</p
>
795 <title>Some thoughts on BitCoins
</title>
796 <link>http://www.hungry.com/~pere/blog/Some_thoughts_on_BitCoins.html
</link>
797 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/Some_thoughts_on_BitCoins.html
</guid>
798 <pubDate>Sat,
11 Dec
2010 15:
10:
00 +
0100</pubDate>
799 <description><p
>As I continue to explore
800 <a href=
"http://www.bitcoin.org/
">BitCoin
</a
>, I
've starting to wonder
801 what properties the system have, and how it will be affected by laws
802 and regulations here in Norway. Here are some random notes.
</p
>
804 <p
>One interesting thing to note is that since the transactions are
805 verified using a peer to peer network, all details about a transaction
806 is known to everyone. This means that if a BitCoin address has been
807 published like I did with mine in my initial post about BitCoin, it is
808 possible for everyone to see how many BitCoins have been transfered to
809 that address. There is even a web service to look at the details for
810 all transactions. There I can see that my address
811 <a href=
"http://blockexplorer.com/address/
15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a
>
812 have received
16.06 Bitcoin, the
813 <a href=
"http://blockexplorer.com/address/
1LfdGnGuWkpSJgbQySxxCWhv
8MHqvwst
3">1LfdGnGuWkpSJgbQySxxCWhv
8MHqvwst
3</a
>
814 address of Simon Phipps have received
181.97 BitCoin and the address
815 <a href=
"http://blockexplorer.com/address/
1MCwBbhNGp5hRm5rC1Aims2YFRe2SXPYKt
">1MCwBbhNGp5hRm5rC1Aims2YFRe2SXPYKt
</A
>
816 of EFF have received
2447.38 BitCoins so far. Thank you to each and
817 every one of you that donated bitcoins to support my activity. The
818 fact that anyone can see how much money was transfered to a given
819 address make it more obvious why the BitCoin community recommend to
820 generate and hand out a new address for each transaction. I
'm told
821 there is no way to track which addresses belong to a given person or
822 organisation without the person or organisation revealing it
823 themselves, as Simon, EFF and I have done.
</p
>
825 <p
>In Norway, and in most other countries, there are laws and
826 regulations limiting how much money one can transfer across the border
827 without declaring it. There are money laundering, tax and accounting
828 laws and regulations I would expect to apply to the use of BitCoin.
829 If the Skolelinux foundation
830 (
<a href=
"http://linuxiskolen.no/slxdebianlabs/donations.html
">SLX
831 Debian Labs
</a
>) were to accept donations in BitCoin in addition to
832 normal bank transfers like EFF is doing, how should this be accounted?
833 Given that it is impossible to know if money can cross the border or
834 not, should everything or nothing be declared? What exchange rate
835 should be used when calculating taxes? Would receivers have to pay
836 income tax if the foundation were to pay Skolelinux contributors in
837 BitCoin? I have no idea, but it would be interesting to know.
</p
>
839 <p
>For a currency to be useful and successful, it must be trusted and
840 accepted by a lot of users. It must be possible to get easy access to
841 the currency (as a wage or using currency exchanges), and it must be
842 easy to spend it. At the moment BitCoin seem fairly easy to get
843 access to, but there are very few places to spend it. I am not really
844 a regular user of any of the vendor types currently accepting BitCoin,
845 so I wonder when my kind of shop would start accepting BitCoins. I
846 would like to buy electronics, travels and subway tickets, not herbs
847 and books. :) The currency is young, and this will improve over time
848 if it become popular, but I suspect regular banks will start to lobby
849 to get BitCoin declared illegal if it become popular. I
'm sure they
850 will claim it is helping fund terrorism and money laundering (which
851 probably would be true, as is any currency in existence), but I
852 believe the problems should be solved elsewhere and not by blaming
853 currencies.
</p
>
855 <p
>The process of creating new BitCoins is called mining, and it is
856 CPU intensive process that depend on a bit of luck as well (as one is
857 competing against all the other miners currently spending CPU cycles
858 to see which one get the next lump of cash). The
"winner
" get
50
859 BitCoin when this happen. Yesterday I came across the obvious way to
860 join forces to increase ones changes of getting at least some coins,
861 by coordinating the work on mining BitCoins across several machines
862 and people, and sharing the result if one is lucky and get the
50
864 <a href=
"http://www.bluishcoder.co.nz/bitcoin-pool/
">BitCoin Pool
</a
>
865 if this sounds interesting. I have not had time to try to set up a
866 machine to participate there yet, but have seen that running on ones
867 own for a few days have not yield any BitCoins througth mining
870 <p
>Update
2010-
12-
15: Found an
<a
871 href=
"http://inertia.posterous.com/reply-to-the-underground-economist-why-bitcoi
">interesting
872 criticism
</a
> of bitcoin. Not quite sure how valid it is, but thought
873 it was interesting to read. The arguments presented seem to be
874 equally valid for gold, which was used as a currency for many years.
</p
>
879 <title>Now accepting bitcoins - anonymous and distributed p2p crypto-money
</title>
880 <link>http://www.hungry.com/~pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html
</link>
881 <guid isPermaLink=
"true">http://www.hungry.com/~pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html
</guid>
882 <pubDate>Fri,
10 Dec
2010 08:
20:
00 +
0100</pubDate>
883 <description><p
>With this weeks lawless
884 <a href=
"http://www.salon.com/news/opinion/glenn_greenwald/
2010/
12/
06/wikileaks/index.html
">governmental
885 attacks
</a
> on Wikileak and
886 <a href=
"http://www.salon.com/technology/dan_gillmor/
2010/
12/
06/war_on_speech
">free
887 speech
</a
>, it has become obvious that PayPal, visa and mastercard can
888 not be trusted to handle money transactions.
890 <a href=
"http://webmink.com/
2010/
12/
06/now-accepting-bitcoin/
">Simon
891 Phipps on bitcoin
</a
> reminded me about a project that a friend of
892 mine mentioned earlier. I decided to follow Simon
's example, and get
893 involved with
<a href=
"http://www.bitcoin.org/
">BitCoin
</a
>. I got
894 some help from my friend to get it all running, and he even handed me
895 some bitcoins to get started. I even donated a few bitcoins to Simon
896 for helping me remember BitCoin.
</p
>
898 <p
>So, what is bitcoins, you probably wonder? It is a digital
899 crypto-currency, decentralised and handled using peer-to-peer
900 networks. It allows anonymous transactions and prohibits central
901 control over the transactions, making it impossible for governments
902 and companies alike to block donations and other transactions. The
903 source is free software, and while the key dependency wxWidgets
2.9
904 for the graphical user interface is missing in Debian, the command
905 line client builds just fine. Hopefully Jonas
906 <a href=
"http://bugs.debian.org/
578157">will get the package into
907 Debian
</a
> soon.
</p
>
909 <p
>Bitcoins can be converted to other currencies, like USD and EUR.
910 There are
<a href=
"http://www.bitcoin.org/trade
">companies accepting
911 bitcoins
</a
> when selling services and goods, and there are even
912 currency
"stock
" markets where the exchange rate is decided. There
913 are not many users so far, but the concept seems promising. If you
914 want to get started and lack a friend with any bitcoins to spare,
916 <a href=
"https://freebitcoins.appspot.com/
">some for free
</a
> (
0.05
917 bitcoin at the time of writing). Use
918 <a href=
"http://www.bitcoinwatch.com/
">BitcoinWatch
</a
> to keep an eye
919 on the current exchange rates.
</p
>
921 <p
>As an experiment, I have decided to set up bitcoind on one of my
922 machines. If you want to support my activity, please send Bitcoin
923 donations to the address
924 <b
>15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</b
>. Thank you!
</p
>