Bitcoin Forum
May 24, 2024, 01:02:37 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 60 61 62 63 64 65 ... 113 »
281  Economy / Gambling / Re: Casinobit - LIVE ROULETTE - [INVEST] - BEST CASINO OF 2013 on: September 17, 2013, 08:08:02 PM
Wait that he pays everyone before even thinking about investing. Then, it's easy, there is an invest tab and everything is there.
282  Economy / Economics / Re: [PHP| BTC-E arbitrage bot on: September 17, 2013, 07:52:21 PM
It's easy to fix so it will never time-out on an error but it might give unwanted results. Like I said in my second post you need to adjust the timing so BTC-E won't ban your IP. Mine got banned temporarily a couple time before I got the settings right. It will vary depending on your connection, it wasn't the same on my home connection vs a VPS. Officialy they say once every 10 minutes but if I remember right I was able to use 300ms on my VPS and 100ms on my home connection.
283  Economy / Speculation / Re: [Poll] Do you have a life? on: September 17, 2013, 07:47:36 PM
Wife and women in general can't be wrong so you obviously are.
284  Economy / Speculation / Re: [Poll] Do you have a life? on: September 17, 2013, 01:07:22 PM
I have a screen dedicated only to BTC and LTC price. Yes, I did lose some sleep and concentration at school during high volatility period, even missed some class during the huge April swing.  Cheesy
285  Economy / Speculation / Re: [Poll] Do you have a life? on: September 17, 2013, 02:15:49 AM
omg this just made me check. Total time logged in: 258 days, 2 hours and 29 minutes

But I do have a life too Tongue
Haha, insane.
286  Economy / Speculation / Re: [Poll] Do you have a life? on: September 17, 2013, 01:37:38 AM
Only 84 days, 17 hours and 8 minutes. Still a noobs, just no life  Cheesy

New to this town so I know about no one but I'm trying to change that. Major problem is that I don't enjoy going out at the bar since I can't understand what anyone is saying. There is also virtually no bitcoiner that I know of in this city.

Tu es situé à Montréal?

I might visit Montréal next year if I go to Porkfest; we shall see.
There is plenty of bitcoiner in Montreal. Unfortunately, I'm up north at about 6 hours drive.
287  Economy / Speculation / Re: [Poll] Do you have a life? on: September 17, 2013, 01:22:39 AM
Only 84 days, 17 hours and 8 minutes. Still a noobs, just no life  Cheesy

New to this town so I know about no one but I'm trying to change that. Major problem is that I don't enjoy going out at the bar since I can't understand what anyone is saying. There is also virtually no bitcoiner that I know of in this city.
288  Economy / Gambling / Re: Casinobit - LIVE ROULETTE - [INVEST] - BEST CASINO OF 2013 on: September 16, 2013, 03:49:09 PM
In the nearest 7 days the chat should be launched as well as everyone repaid so this will certainly be interesting.

The profit fees will be set to 10%, this is the notice in advance, the current way investments work has been great for testing with constant withdrawals/deposits but the auto reinvestment system will be on soon.

Hope the first timeline you post will be good Smiley
289  Economy / Games and rounds / Re: Martingale alike systems that you had success with. on: September 16, 2013, 02:34:54 PM
Minimaltingale.
290  Bitcoin / Armory / Re: Most Secure Bitcoin Wallet Armory Raises $600k on: September 16, 2013, 01:45:02 PM
Good news! Improving security and usability for every users is a big step forward in the good direction.
291  Other / CPU/GPU Bitcoin mining hardware / Re: [WARNING] Do not sign for any BFL package you plan to get a refund on! on: September 16, 2013, 02:52:52 AM
I wonder what will happen when 50% of customers request chargeback this week.
292  Bitcoin / Mining / Re: don't mine at BTCGuild on: September 16, 2013, 01:57:45 AM
Remind me of: https://bitcointalk.org/index.php?topic=12370.0  Cheesy
293  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: September 16, 2013, 12:17:13 AM
OK. The ChartBuddy stuff should be back anytime an admin wants to re-enable him. Turns out he's draining my pockets kind of quickly so probably expect to see some changes shortly. Nothing that should affect most people but most likely older charts will not be available for long (Though I will still be archiving Gox data) and pre-scaled charts in the posts (good for everyone)
Why not use imgur for hosting?

Code:
#!/bin/bash

# imgur script by Bart Nagel <bart@tremby.net>
# version 4
# I release this into the public domain. Do with it what you will.

# Required: curl
#
# Optional: xsel or xclip for automatically putting the URLs on the X selection
# for easy pasting
#
# Instructions:
# Put it somewhere in your path and maybe rename it:
# mv ~/Downloads/imgurbash.sh ~/bin/imgur
# Make it executable:
# chmod +x ~/bin/imgur
# Optional, since Alan kindly provided an API key for this script: stick your
# API key in the top:
# vim ~/bin/imgur
# Upload an image:
# imgur images/hilarious/manfallingover.jpg
# Upload multiple images:
# imgur images/delicious/cake.png images/exciting/bungeejump.jpg
# The URLs will be displayed (and the delete page's URLs will be displayed on
# stderr). If you have xsel or xclip the URLs will also be put on the X
# selection, which you can usually paste with a middle click.

# API Key provided by Alan@imgur.com
apikey="b3625162d3418ac51a9ee805b1840452"

# function to output usage instructions
function usage {
echo "Usage: $(basename $0) <filename> [<filename> [...]]" >&2
echo "Upload images to imgur and output their new URLs to stdout. Each one's" >&2
echo "delete page is output to stderr between the view URLs." >&2
echo "If xsel or xclip is available, the URLs are put on the X selection for" >&2
echo "easy pasting." >&2
}

# check API key has been entered
if [ "$apikey" = "Your API key" ]; then
echo "You first need to edit the script and put your API key in the variable near the top." >&2
exit 15
fi

# check arguments
if [ "$1" = "-h" -o "$1" = "--help" ]; then
usage
exit 0
elif [ $# == 0 ]; then
echo "No file specified" >&2
usage
exit 16
fi

# check curl is available
type curl >/dev/null 2>/dev/null || {
echo "Couln't find curl, which is required." >&2
exit 17
}

clip=""
errors=false

# loop through arguments
while [ $# -gt 0 ]; do
file="$1"
shift

# check file exists
if [ ! -f "$file" ]; then
echo "file '$file' doesn't exist, skipping" >&2
errors=true
continue
fi

# upload the image
response=$(curl -F "key=$apikey" -H "Expect: " -F "image=@$file" \
http://imgur.com/api/upload.xml 2>/dev/null)
# the "Expect: " header is to get around a problem when using this through
# the Squid proxy. Not sure if it's a Squid bug or what.
if [ $? -ne 0 ]; then
echo "Upload failed" >&2
errors=true
continue
elif [ $(echo $response | grep -c "<error_msg>") -gt 0 ]; then
echo "Error message from imgur:" >&2
echo $response | sed -r 's/.*<error_msg>(.*)<\/error_msg>.*/\1/' >&2
errors=true
continue
fi

# parse the response and output our stuff
url=$(echo $response | sed -r 's/.*<original_image>(.*)<\/original_image>.*/\1/')
deleteurl=$(echo $response | sed -r 's/.*<delete_page>(.*)<\/delete_page>.*/\1/')
echo $url
echo "Delete page: $deleteurl" >&2

# append the URL to a string so we can put them all on the clipboard later
clip="$clip$url
"
done

# put the URLs on the clipboard if we have xsel or xclip
if [ $DISPLAY ]; then
{ type xsel >/dev/null 2>/dev/null && echo -n $clip | xsel; } \
|| { type xclip >/dev/null 2>/dev/null && echo -n $clip | xclip; } \
|| echo "Haven't copied to the clipboard: no xsel or xclip" >&2
else
echo "Haven't copied to the clipboard: no \$DISPLAY" >&2
fi

if $errors; then
exit 1
fi
294  Economy / Marketplace / Re: looking for investment. if you want to boom your money on: September 15, 2013, 11:51:25 PM
This looks like some huge planes you got there.

295  Other / Beginners & Help / Re: what error is this on: September 15, 2013, 11:48:49 PM
 Huh

https://bitcointalk.org/index.php?topic=223741.0
296  Economy / Service Discussion / Re: Mt.Gox Account secured with Yubikey but still had 29 BTCs stolen on: September 15, 2013, 11:29:53 PM
Seems this guy didn't enable 2FA until after the attack.  

Right now, both he and Mark Karpeles could be telling the truth if the attacker disabled 2fa, then reenabled it after he was done.

2FA on withdrawal is pointless if it can be disabled after login.
My understanding is that once Yubikey is enabled on MtGox for withdrawals it can't be disabled (by the user), hence the multi-week delay for lost/broken Yubikeys while account ownerwhip is re-verified and MtGox enables a replacement Yubikey.
It can be disabled with the OTP code.

But only by using the Yubikey...
Exact. I did it when I changed my Google Authenticator because I wanted to backup the seed.
297  Economy / Service Discussion / Re: Mt.Gox Account secured with Yubikey but still had 29 BTCs stolen on: September 15, 2013, 11:09:22 PM
Seems this guy didn't enable 2FA until after the attack. 

Right now, both he and Mark Karpeles could be telling the truth if the attacker disabled 2fa, then reenabled it after he was done.

2FA on withdrawal is pointless if it can be disabled after login.
My understanding is that once Yubikey is enabled on MtGox for withdrawals it can't be disabled (by the user), hence the multi-week delay for lost/broken Yubikeys while account ownerwhip is re-verified and MtGox enables a replacement Yubikey.
It can be disabled with the OTP code.
298  Other / Beginners & Help / Re: Coins For People Who Can't Mine!!!!!!!!!!!! on: September 15, 2013, 10:53:42 PM
http://www.rugatu.com/
299  Economy / Gambling / Re: Casinobit - LIVE ROULETTE - [INVEST] - BEST CASINO OF 2013 on: September 15, 2013, 08:54:08 PM
Might seem unimportant, but the balance has apparently moved from left to right. At least someone's doing something with the code.
The balance fell from ~350 to ~266 but it means nothing since investors can divest and decide not to reinvest.
300  Economy / Speculation / Re: Wall Observer - MtGoxUSD wall movement tracker - Hardcore on: September 14, 2013, 11:45:19 PM
The site hosting chartbuddy image is down.
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 60 61 62 63 64 65 ... 113 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!