Bitcoin Forum
May 13, 2024, 05:34:32 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 »
161  Bitcoin / Bitcoin Discussion / Re: Could Satoshi Nakamoto be the CIA/NSA? on: July 06, 2015, 10:24:16 PM
God the title of the thread caught my attention so much, is actually pretty interesting and it could make has a movie a rough coder goes against the government to create a financial revolution.
162  Other / Beginners & Help / Re: Vanitygen: How to easily generate vanity address - Mac OSX? on: July 06, 2015, 09:22:54 PM
I've got no clue what's going on, then.  All of the steps I laid out previously, I did on a brand new VM with OS X freshly installed.  It was a completely clean install.  Running the brew install script asked me for my password to ensure I was OK with what it was trying to do.  Now, if I attempt to re-run that install script I get this:
Code:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
It appears Homebrew is already installed. If your intent is to reinstall you
should do the following before running this installer again:
    rm -rf /usr/local/Cellar /usr/local/.git && brew cleanup
LOL... tell you what... if you're not looking for some crazy long vanity address, I'll just generate it for you... probably could have had it done by now Tongue
Well.. I want 1Nyau case-sensitive but I don't think it's safe, because you will have my private key.. :/
I'm not going to wreck my reputation here by trying to scam you, or anyone else.  I'll happily destroy the private key when I send the pair to you.  Generating addresses that start with that combination take seconds to do.  If you want me to generate a few for you, I'll PM you the public/private keys and then delete my PMs.

Completely up to you if you want.

Ok, I will trust you Smiley
163  Other / Beginners & Help / Re: Vanitygen: How to easily generate vanity address - Mac OSX? on: July 06, 2015, 09:06:16 PM
I've got no clue what's going on, then.  All of the steps I laid out previously, I did on a brand new VM with OS X freshly installed.  It was a completely clean install.  Running the brew install script asked me for my password to ensure I was OK with what it was trying to do.  Now, if I attempt to re-run that install script I get this:
Code:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
It appears Homebrew is already installed. If your intent is to reinstall you
should do the following before running this installer again:
    rm -rf /usr/local/Cellar /usr/local/.git && brew cleanup
LOL... tell you what... if you're not looking for some crazy long vanity address, I'll just generate it for you... probably could have had it done by now Tongue
Well.. I want 1Nyau case-sensitive but I don't think it's safe, because you will have my private key.. :/
164  Other / Beginners & Help / Re: Vanitygen: How to easily generate vanity address - Mac OSX? on: July 06, 2015, 08:51:08 PM
That should return something to you... it's just a directory listing of the /usr/local/bin directory (where brew would get installed).  For example, on mine:
Code:
ls /usr/local/bin | grep brew
brew
If nothing gets returned, then you don't have brew installed.  I'm assuming this is your Mac, and you actually have administrator rights (you can put in your password to install software)... right?
Oh right, I got nothing back.. Yes, it's my mac and I can do everything Smiley
165  Other / Beginners & Help / Re: Vanitygen: How to easily generate vanity address - Mac OSX? on: July 06, 2015, 08:44:30 PM
Shut down the terminal window, then re-open it.  If you installed brew - which it looks like you did - you should be able to use the "brew" command to install stuff.  Let's see if you've actually got it...
Code:
ls /usr/local/bin | grep brew

What should this code do?
166  Economy / Auctions / Re: Faucet with hosting and domain halving.pw on: July 06, 2015, 08:37:53 PM
BTC0.005
167  Other / Beginners & Help / Re: Vanitygen: How to easily generate vanity address - Mac OSX? on: July 06, 2015, 08:14:53 PM
Did you install home-brew?

From the terminal window:
Code:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Yes I did, even 3 times! Cheesy

I got this back:

Code:
==> This script will install:
/usr/local/bin/brew
/usr/local/Library/...
/usr/local/share/man/man1/brew.1
==> The following directories will be made group writable:
/usr/local/.
/usr/local/bin
/usr/local/share
/usr/local/share/man
/usr/local/share/man/man8
==> The following directories will have their group set to admin:
/usr/local/.
/usr/local/bin
/usr/local/share
/usr/local/share/man
/usr/local/share/man/man8
168  Bitcoin / Project Development / Re: [Free Script] Untitled Dice - Run your own bitcoin dice site (no server needed) on: July 06, 2015, 08:05:59 PM
I'm trying to get up my first website with this script, but I don't have SSL and it always redirects to https://.. I found this
Code:
// - Set this to true if you want users that come to http:// to be redirected
  //   to https://
But what do I have to set to true? There's nothing like this..

Those are comments in the code. There should be some code right underneath, like (This is just a guess)

$HTTPS == "true"

(Or something along those lines).  Good luck! Wink


Sorry, I didn't realize the source was on the OP.

This is javascript, so it's different:

Here is the default code, which is causing your redirects to https://
Code:
force_https_redirect: !isRunningLocally()

Since I'm not a Javascript person, I can only guess that removing the ! in front of that function call above will reverse the effect of what is there now - Here is the function it calls if it helps -

Code:
// :: Bool
function isRunningLocally() {
  return /^localhost/.test(window.location.host);
}

Edit - Or, you could try just replacing !isRunningLocally() with either :

true

or

"true"

and see if that fixes it.  Good luck! Smiley

I know it's just comments in the code.. I'm noob, but not that big Cheesy

BTW: I removed the ! and it's working! Thanks! Smiley
169  Other / Beginners & Help / Re: Vanitygen: How to easily generate vanity address - Mac OSX? on: July 06, 2015, 07:50:02 PM
Now we use brew to install what we need:
Code:
brew install pcre

-bash: brew: command not found
170  Bitcoin / Project Development / Re: [Free Script] Untitled Dice - Run your own bitcoin dice site (no server needed) on: July 06, 2015, 07:28:57 PM
I'm trying to get up my first website with this script, but I don't have SSL and it always redirects to https://.. I found this
Code:
// - Set this to true if you want users that come to http:// to be redirected
  //   to https://
But what do I have to set to true? There's nothing like this..
171  Other / Beginners & Help / Re: Vanitygen: How to easily generate vanity address - Mac OSX? on: July 06, 2015, 06:45:23 PM
Pretty sure a binary I create on my laptop won't work for you.  Requirements around some libraries that aren't standard.  I could certainly tell you how to compile and build it yourself if you want...

That should be good too, let's start Smiley

I'm really glad there's someone who's helping!  Wink
172  Economy / Gambling / Re: Play Pachinko - A Rare Bitcoin Game | 1.05% house edge | Exciting Bonuses | on: July 06, 2015, 04:40:51 PM
You can take some inspiration from LuckyB.it, I love their goddamn sounds!  Grin
173  Other / Beginners & Help / Re: Vanitygen: How to easily generate vanity address - Mac OSX? on: July 06, 2015, 04:18:19 PM
I have compiled and built the vanitygen code on OS X, and I use it (see the vanity BTC address in my profile... that was generated on my MBP using oclvanitygen).

Depending on what hardware you've got, you can either use the CPU version (vanitygen) or the GPU version (oclvanitygen).  For example, I've got an nVidia GPU in my MBP, so I use oclvanitygen.  Of course, this requires that I've also got the nVidia CUDA toolkit so it can compile the GPU-specific kernel...

Can you please send me your code or whatever I need to make vanity address?  Cheesy

Follow http://www.stanley-adams.co.uk/2013/12/custom-vanity-bitcoin-address/.

By the way, which part is hard for you?

Everything. I'm not coder and I don't understand it, so it's really hard for me even with step-by-step tut. Let's say I'm asking for someones ready to use binary..

 -snip-

Can't you copy-paste those commands in terminal and click enter/return? Hope errors are not there.

Which version of OS X are you using?

Half of the commands are not working, that's it..

I have 10.9

Which all commands are not working? Didn't you follow those commands in the same order? Changing order may cause problem because of unmet dependencies. I maybe able to help you with this via TeamViewer or similar but more secure software. For this, you will have to trust me because you are giving access to your computer to an unknown person(me).

I will tell you once I get home, I don't know it from head..
174  Other / Beginners & Help / Re: Vanitygen: How to easily generate vanity address - Mac OSX? on: July 06, 2015, 02:29:14 PM
Follow http://www.stanley-adams.co.uk/2013/12/custom-vanity-bitcoin-address/.

By the way, which part is hard for you?

Everything. I'm not coder and I don't understand it, so it's really hard for me even with step-by-step tut. Let's say I'm asking for someones ready to use binary..

 -snip-

Can't you copy-paste those commands in terminal and click enter/return? Hope errors are not there.

Which version of OS X are you using?

Half of the commands are not working, that's it..

I have 10.9
175  Other / Beginners & Help / Re: Vanitygen: How to easily generate vanity address - Mac OSX? on: July 06, 2015, 11:50:20 AM
Mac OSX vs any other operating system has nothing to do with it. Here's a site for you -> http://bitcoinvanitygen.com/

Good luck.

I won't use this scam. I'm asking how to generate custom address using vanitygen.
176  Economy / Micro Earnings / Re: [Story] How faucets got me a PS4 on: July 05, 2015, 10:58:46 PM
Yes, but the title says "[Story] How faucets got me a PS4" so he wrote this "Nothing is a lie. The "only" was a mistake because it wasn't only with just faucets. I gabled the money.." so that means he got PS4 for money from faucets and money from gabling.. that's how I got it Cheesy
I don't think I get what you tried to say. lol Embarrassed
What I understand is he gabled his faucets money and he got his first PS4.

That's what I'm trying to say lol Cheesy
177  Other / Off-topic / Re: What's your smartphone? on: July 05, 2015, 10:33:06 PM
iPhone 5 with iOS 6, such nostalgia! I never had anything else than iPhone  Cool
178  Economy / Micro Earnings / Re: [Story] How faucets got me a PS4 on: July 05, 2015, 09:01:32 PM
I think he gabled with his money from faucets  Cheesy
I don't think so...

He said:
Nothing is a lie. The "only" was a mistake because it wasn't only with just faucets. I gabled the money..

Yes, but the title says "[Story] How faucets got me a PS4" so he wrote this "Nothing is a lie. The "only" was a mistake because it wasn't only with just faucets. I gabled the money.." so that means he got PS4 for money from faucets and money from gabling.. that's how I got it Cheesy
179  Economy / Micro Earnings / Re: [Story] How faucets got me a PS4 on: July 05, 2015, 08:53:09 PM
Nothing is a lie. The "only" was a mistake because it wasn't only with just faucets. I gabled the money..
So, you gabled with your money + satoshis from faucets?
I think he gabled with his money from faucets  Cheesy
180  Other / Beginners & Help / Re: Vanitygen: How to easily generate vanity address - Mac OSX? on: July 05, 2015, 07:11:19 PM
By the way, there is a vanity address generator website. DO NOT USE THEM.    I had over 3 BTC stolen because they apparently log the private keys.   It is a scam.  Make sure to use the software and generate your own.

I know.. I tried to generate it, but I found some threads about people being scammed by them Smiley
Thanks for advice.
Pages: « 1 2 3 4 5 6 7 8 [9] 10 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!