Bitcoin Forum
June 16, 2024, 05:41:01 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 »
221  Other / Beginners & Help / Re: 1 year anniversary of IBB - Free physical bitcoin Cheques on: July 30, 2012, 11:10:32 AM
Just posted a blogpost looking at the sample cheque I received - there are also 2 codes for a sample cheque available for the first 2 people to tweet a link to the article*, cc'ing @exmosis in their tweet. Here's the post:

http://bitcoinlife.wordpress.com/2012/07/30/cheque-this-out/

* Check it out, I'm like a social media guru or something.
222  Economy / Trading Discussion / Re: Interesting conversation with a retailer who formerly accepted Bitcoin on: July 30, 2012, 10:51:54 AM
Fascinating and well-needed thread. The other day I was asking a local trader about the local currency in their town, which has ben around for a couple of years. The 2 main problems were 1) she couldn't spend the local currency on "useful" stuff like paying bills or parking, which meant 2) she had to traipse up to the (physical) currency HQ to convert notes into GBP. Being a sole trader, that meant either closing the shop, or using up free time.

Bitcoin is digital and revolutionary yadda yadda sure, but has the same problems - 1. It's a good way of moving value around the world, but hasn't (yet) got it's own traction - it's more of a common medium than a currency within a (self-contained) group, IOW the transport protocol is (currently) more important than the economy. 2. Switching between "traditional" value protocol (USD, GBP, etc) and BTC is still more hassle than it's worth if your main economic activity takes up enough of your time already.

Philosophy will lose out to functionality every time. Coinhub looks really interesting and bitpay is a major step of course, but BTC is going to need even more smooth, professional transaction interfaces and services sitting on top of it to really become a currency. Talk of what people "can" do given an API needs to be backed up by a whole host of non-technical reassurance.

Will watch this thread with interest. Are there any lists of which epayment systems are/could be supported, and possibly who'd want to use/fund development on them?


223  Bitcoin / Bitcoin Technical Support / Re: [1btc reward] PHP RPC commands freezing bitcoin [at same time as a new block] on: July 29, 2012, 09:24:53 PM
Not one I can test here, but some ideas to try:

  • Sounds like some kind of race condition or lock condition maybe, possibly caused by too many things trying to access the same resource. The jsonRPCClient code doesn't seem to close it's stream neatly, but don't know if that would matter. You could try adding "fclose($fp);" inside jsonRPCClient.php, after the line "$response = json_decode($response,true);"
  • More extreme version of the above: Can you edit the script to destroy the jsonRPCClient object and construct a new one each loop? Might help to totally reset any open connections.
  • Can you isolate which RPC call is causing it by commenting out the sendtoaddress line? It might be the effect of many RPC calls, or one specific one.
  • Are you running the right bitcoind version for your PC, i.e. 32-bit vs 64-bit? Any improvement if you "downgrade" to 32-bit if you're running 64-bit?
  • Alternatively, is your PHP version up to date?
  • 25% is a weird number - are you running a quad core and maybe the bitcoind hits a CPU limit in one core?
224  Bitcoin / Bitcoin Technical Support / Re: Bounty 5 BTC - Acessing CampBX API with PHP on: July 29, 2012, 08:48:44 PM
Thanks for the donation, CA - I'll keep it away from satoshidice I think Smiley I do a fair bit of dev work on Windows Server and then deploy to a Linux box, so I'll keep an eye out for this one in future...

Now just got to figure out why php on osx hates anything https.

Saint Jobs needs to spy on you. He can't spy on your through https Tongue

Pretty sure the big bearded dude in the sky could pull a MITM attack if he wanted to. Does God have root?
225  Other / Off-topic / Re: From the desk of Zhou Tong on: July 29, 2012, 08:27:52 PM
Let's start anew:

From http://www.techxav.com/2010/01/31/how-we-scale-techxav/

Quote
Here are four methods that we are using to improve page responsiveness and reduce traffic and loading time. Actually we have more ambitious plans which will be launched in the future, these plans will help us to handle a higher level of popularity of TechXav:

  • Global CDN: Our readers outside the United States aren’t able to view our articles fast enough, and we apologized for that. We plan to use Global CDN to push our static assets, within the origin of “xavimg.com”. This will eventually improve page responsiveness further.
  • Singapore Mirror: It’s ironic that a Singapore-based website doesn’t have a Singapore Mirror! The average tendency from Singapore to the United States is about 180 milliseconds to 240 milliseconds, which is WAY TOO LONG! We will soon build a local mirror to serve most Asian countries as well as OURSELVES! (We have concerned too much about our US readers,  Grin
  • Rackspace Cloud Sites: It costs $100 a month, and we don’t have that sort of money. It would be great if some of the you guys could support us financially. This will bring TechXav to the next level. Currently, we can only dream about it.

You can support us and help us scale TechXav further and bring us more traffic via the following ways:


The removed links can still be viewed via archive.com. I'll get back to that.

Written by:

Quote
About Zhou Tong

Zhou Tong is a 15-Year-Old Chinese student who is currently on a scholarship in Singapore. He is an all-rounded tech-savvy teenager - professional web developer (PHP, Ruby on Rails and MySQL), website designer (XHTML/CSS, Internet analyst and a professional tech blogger.

Note the quality of the English here. The English on this Twitter accounts at this time frame were not as good. More on that later, too.

The main link I'm addressing, for now, is Purchase GoDaddy products using our affiliate link. The link URL is http://www.godaddy.com/hosting/web-hosting.aspx?isc=IAPtno17.

When I mouseover that link in the original page, the URL I get is actually a different affiliate redirect link: http://affiliate.godaddy.com/redirect/1CAD129D78936A01B2EA2848DC9C4E44

This redirects to the URL you give above, with the IAPtno17 ref which seems to be a generic godaddy coupon code.

226  Bitcoin / Bitcoin Technical Support / Re: Bounty 5 BTC - Acessing CampBX API with PHP on: July 29, 2012, 03:06:06 PM
Try using different SSL versions:

Code:
curl_setopt($curl, CURLOPT_SSLVERSION,3); // or try setting to 2


Bingo!  That did the trick.  


Thanks to everybody for your help.  scribe, can you please send or post your address for the 5BTC bounty?  Also, to BCB, gweedo, unfinishe, and drakahn, please send or post your address so I can send you a small donation for helping out.  

Awesome - my 'tweak stuff til it does something different' approach works again... PM'd.

Now just got to figure out why php on osx hates anything https.
227  Bitcoin / Bitcoin Technical Support / Re: Bounty 5 BTC - Acessing CampBX API with PHP on: July 28, 2012, 08:48:55 PM
Does curl_error() give you anything? http://php.net/manual/en/function.curl-error.php

Looking at the curl_setopt() page has some things you could try (http://php.net/manual/en/function.curl-setopt.php):

Try using basic auth with:

Code:
curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC );


Try using different SSL versions:

Code:
curl_setopt($curl, CURLOPT_SSLVERSION,3); // or try setting to 2

The manual page says CURLOPT_SSL_VERIFYHOST can be either 1 or 2 with 2 being the default, so try 1 (instead of 0):

Code:
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1);

Otherwise maybe it's something to do with encodings being used - see the CURLOPT_ENCODING option. If there's a way to show the headers you're sending, you could try comparing what you're sending across different machines, and if one works, what difference in headers there are.
228  Economy / Marketplace / Re: Intersango Exchange on: July 26, 2012, 08:20:43 PM
Legally ,it wasnt them who sold the drugs/ but they allowed themselves to used as a vehicle to launder the proceeds and this is taken seriously in the UK  and most of europe thesedays

Cf. The Mexican HSBC situation recently. Bitcoin will get this more and more as it gets bigger. Growing pains as it starts to *really* piss people (companies) off.
229  Bitcoin / Bitcoin Discussion / Re: Bitcoinica MtGox account compromised on: July 19, 2012, 04:47:52 PM
All makes total sense to me; the sister did for the butler because he knew about the secret illegitimate child, and she made sure the station master knew exactly what time he saw her at.

One thing puzzles me: if BC were brought in to deal with a known level of lax security, was the site running purely on hope before that? And if security was generally poor, what are the chances of a keylogger or similar trojan being out there from the start?

Man. And I thought Eastenders was stressful to watch.
230  Economy / Web Wallets / Re: Blockchain.info - Bitcoin Block explorer & Currency Statistics on: July 19, 2012, 08:46:22 AM
I'm now seeing 0 transactions and 0 BTC in my wallet. Oop.
231  Economy / Goods / [WTS] Comics incl Sandman specials, User Friendly, Aria, Jhonen Vasquez on: July 17, 2012, 07:07:44 PM
PM me if you're interested in any of the following sets (prefer not to split), otherwise they'll go on ebay in a week. All issues in mint condition, most in plastic bags. Buyer pays shipping. Open to reasonable offers for the lot.

Sandman Set - BTC2.25
'Destiny: A Chronicle of Deaths Foretold' mini-series, complete set #1, #2, #3.
'The Song of Orpheus' one-off issue
'Absolute Sandman Special' preview issue with bonus material
'Endless Nights Special' preview issue with bonus material

(Also have a copy of Wired with Neil Gaiman feature from Nov 1996 - PM for more info/quote.)

Aria Set - BTC1
Aria Jay Anacleto sketchbook #1
Aria Blanc & Noir #2 (monochrome issue)
'Aria Angela Blanc & Noir - Heveanly Creatures Part 1' (monochrome issue)

User Friendly - The Root of All Evil - BTC1
By Iliad

Jhonen Vasquez / Jamie Smart Set - BTC1
'I Feel Sick' #1 and #2 by Johnen Vasquez
'Bear' #1 and #2 by Jamie Smart
'Bodha Te' one-off by Jamie Smart

Misc Set - BTC1
'Batman - Whatever Happened to the Caped Crusader?' #1
'House of Mystery' #1
'Scarlet Traces - The Great Game' #1
'Dark Minds' #1

Cheers,
Scribe
232  Other / Beginners & Help / Re: I just bought my first bitcoins!! on: July 16, 2012, 02:03:47 PM
Great stuff. I've recently made my first couple of BTC sale trades online (people finding me through localbitcoins.com), but today I've actually had an enquiry from someone in the same town. It's pretty fun chatting to buyers about bitcoin and life...
233  Economy / Web Wallets / Re: Blockchain.info - Bitcoin Block explorer & Currency Statistics on: July 16, 2012, 10:33:16 AM
Another slight oddity in the Android App which hasn't happened to me before - I withdrew 5BTC from Intersango to my wallet (TX: http://blockchain.info/tx-index/12315903/2b83952cd981a415cc3fa831d13b1d4bc203793a2b029294e9acdbe00ed082fc) and while the increased balance *does* appear in the app, the received transaction itself doesn't.

The TX shows up in the web version of the wallet, and I believe I got a notification on my phone to say it had been received. I don't remember getting an e-mail about receiving the funds though, which I think I usually do.

Let me know if any more info is useful...
234  Other / Politics & Society / Re: Where are you ideoligcally on: July 16, 2012, 10:24:10 AM
Depends on how much sleep I've had.
235  Bitcoin / Bitcoin Discussion / Re: Class action Litigation vs. Bitcoinica Consultancy LTD & Intersango LTD on: July 14, 2012, 10:14:56 PM
Intersango has been a useful service and Amir has done a lot for me and us.

I do think action should go ahead as there is a case for it and it should change attitudes. But I also acknowledge it will be a shame to see the back of Intersango as they've:
- taken risks on my behalf by running the exchange in the grey area of is-it-forex (initially for no fee),
- developing the exchange software,
- working on the Bitcoin code and also
- campaigning in person at events like Occupy

I'm not defending them. I'm just saying it's a shame. These will be the next in a line of public figures with Bitcoin where the community has turned against. A sample size of 2 is a bit early for a worrying trend but divided we are and so easily.

This is a great post.

Right now I'm sitting on the sidelines - I have nothing at stake in Bitcoinica, but do use Intersango on a regular basis. Right now, what Bitcoin needs to grow and succeed is a) people willing to put effort and wisdom into making Bitcoin usable and trusted, and b) people willing to take that trust and build on it. Yes, there's "real money" at stake, but at the same time that "real money" is based on a platform of openness and accountability.

IMHO, underscoring Bitcoin with lawsuits *will* increase accountability (why wasn't Bitcoinica open sourced? why is info on most sites' security practices and legal statuses still so hard to find?), but it's going to require some *very* dedicated and passionate people to step up to that. The question is where are they going to come from?

My own opinion is that 'shit happens'. I wish BC hadn't bothered taking on such a risk (as, I guess, do they), but that's the shit Bitcoin is in.

What does it mean for the future of Bitcoin? I have no idea - but I'm certainly more wary about telling other people how great it is. Relying on  a small number of decent services is a dangerous position to be in.
236  Bitcoin / Bitcoin Discussion / Re: Bitcoinica MtGox account compromised on: July 13, 2012, 10:42:37 PM
That still doesn't explain how the attacker knew that specific password should be tried at all.

We are talking about the password needed to convince LastPass to hand over your encrypted passwords right, not the passphrases needed to actually decrypt those passwords once having gotten a copy of them from LastPass?

-MarkM-


What's to say they "knew" at all? If the source was public and there were obviously duff security practices all round, wouldn't it be pretty straightforward to bruteforce LastPass with grepped strings from source and public e-mails?

Doesn't explain why the passwords were the same though. I guess laziness and hubris.
237  Economy / Speculation / Re: Somebody with a quarter million bitcoins on his phone :-) on: July 13, 2012, 04:25:15 PM

Probably related: https://bitcointalk.org/index.php?topic=40264.msg1027672#msg1027672

Blockchain has introduced a new mixing service, looks like someone has got busy with it... No reason why it needs to be on a phone though. Other than for fun, of course Wink
238  Other / Off-topic / Re: Do you want a PirateBox? on: July 12, 2012, 11:13:12 AM
I can only offer this the next couple of days, let's say until the 14th. I'll be out of town later this month, and the parts can take a while to ship, so if anyone wants one, I want to make sure I have enough time to do it.

I love the idea of these things, will see if anyone wants to co-sponsor with me though. Would they work just as well if shipped over to the UK/Europe?
239  Economy / Web Wallets / Re: Blockchain.info - Bitcoin Block explorer & Currency Statistics on: July 12, 2012, 11:04:45 AM
Next for the wallet service: the Android app is going to get some love

Loving the service, and the Android app is great. A few suggestions would it make even better (sorry if I've just missed these somewhere):

1. Showing exchange rates for 1 BTC, as well as for your total wallet's value
2. The ability to scan a QR code or enter firstbits to look up current balance and other info
3. Protecting the wallet with a PIN on access

Also, the last 2 links under "About" don't work for me (icon by bitboy, and link to the Android Market App Page)

Otherwise amazing stuff. Tip on its way.
240  Other / Beginners & Help / New "Bitcoin Life" blog on: July 11, 2012, 12:20:54 PM
I'm not a newbie in particular, but have started up a blog that might appeal to newbies - and anyone else interested in using Bitcoin "out and about". Here it be:

http://bitcoinlife.wordpress.com/

I think "getting the word out" is really important to Bitcoin right now, so it's more of a look at using Bitcoin in "daily life" rather than trying to uncover Satoshi, explore mining, bring down the system. OK, it might touch on some of those at some point. I'm also hoping to post about Bitcoin cheques, my first attempts at selling Bitcoin, Bitcoin for businesses, and so on.

Please do subscribe and/or drop comments with any feedback. Would love to know what people new to Bitcoin are interested in most.

Ta,
Scribe
Pages: « 1 2 3 4 5 6 7 8 9 10 11 [12] 13 14 15 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!