Search content
Sort by

Showing 20 of 47 results by Pygy
Post
Topic
Board Scam Accusations
Topic OP
519-style Hoax
by
Pygy
on 07/01/2014, 00:36:26 UTC
I just got this mail. My name is not "David":

http://i.imgur.com/PA0NcP0.jpg

I didn't click the link, but I'm pretty sure it's not safe.

Beside here, is there a place to report it?
Post
Topic
Board Altcoin Discussion
Topic OP
Give me coins: Where di I get a PIN?
by
Pygy
on 29/11/2013, 09:11:37 UTC
I'm trying to register a new account at give me coins, but they require a PIN, and I don't know where to get one.

Pointers, welcome!
Post
Topic
Board Bitcoin Discussion
Topic OP
Security: Are PrintCoins X-ray proof?
by
Pygy
on 08/01/2012, 09:14:08 UTC
I remember that when I was young that a storekeeper and a veterinary were arrested because they were reading the unsold scratchable lottery tickets of the former with the X-ray machine of the latter. They kept winner tickets for themselves, and the the rest to the unsuspecting clients of the shop.

Are you sure that the PrintCoin seal is also opaque in non-visible wave lengths? Or that the black ink isn't more opaque than the seal? It's all about contrast.
Post
Topic
Board Development & Technical Discussion
Re: OS X: Putting the wallet (and data dir) inside the Bitcoin.app bundle
by
Pygy
on 15/06/2011, 15:54:01 UTC
Yes, it will :-).

It has two drawbacks, though:

It stores not only the wallet but also the block chain cache, which is grows as time goes by, inside the app.

Furthermore, If you don't use a client+wallet bundle often, when you launch it, you have to sync download all the keychain blocks that have been since the last use, or you'll have to copy them manually, which means that you risk to mess up and overwrite the wallet.

I've written a new script that that only stores the wallet and creates a symlink in the ~/Library/Application Support/Bitcoin, but I haven't tested it yet (and I'm not home right now).
Post
Topic
Board Development & Technical Discussion
Beside the Wallet.dat, are there files with personal data in the datadir?
by
Pygy
on 13/06/2011, 12:43:23 UTC
I know that backing up the wallet.dat file is enough, but I don't know if there are other accout-specific files in the datadir?

__db.001   __db.004   addr.dat   database   wallet.dat
__db.002   __db.005   blk0001.dat   db.log
__db.003   __db.006   blkindex.dat   debug.log


This is related to my OS X post here: http://forum.bitcoin.org/index.php?topic=16258.0

If the Wallet is the only account-specific file, then I'll use a symlink solution that should be much lighter.
Post
Topic
Board Development & Technical Discussion
How to make a portable Bitcoin client for Mac OS X!
by
Pygy
on 13/06/2011, 11:22:54 UTC
The wallet switching user experience is currently sub par on all platform. You must either manipulate folders (and risk screwing up) or use the command line.

I offer here a nicer solution for Mac Os X: Use one Bitcoin.app per wallet, and put the wallet inside the application bundle.

It creates a standalone, portable Bitcoin.app that can be copied around and run as is on any Mac, or stored on an encrypted partition.

Here's the procedure to create a new, empty wallet (it could be automated, but I'm not there yet).

1) Create a copy of the Bitcoin.app and put it in your encrypted partition (let's call it BitSafe.app, for a "bank safe"-type wallet).

2) open the terminal (Terminal.app) and type
Code:
cd /Path/To/Your/Encypted/Volume/BitSafe.app/Contents/Resources
mkdir data
cd ../macOS
cat > start.sh
#! /bin/sh
dir1=$(cd "$(dirname "$0")"; pwd)
dir=`echo $dir1 | sed 's/"/\\"/g' | tr -d '\n'`
data="$dir/../Resources/data"
"$dir"/bitcoin -datadir="$data"
then press ctrl + d.

3) Again, from the prompt, type chmod +x start.sh to make the script executable.

4) now, we must edit the Info.plist file in order to tell OS X to launch our script instead of directly running the bitcoin binary. Type nano ../Info.plist . From there, find the following lines
Code:
CFBundleExecutable
bitcoin
and replace bitcoin with start.sh .

You should also change the Bitcoin strings corresponding to the CFBundleDisplayName and CFBundleName to BitSafe (or whatever strikes your fancy). This will change the Application name in the menu bar.

Once you're done, press ctrl + o, return then ctrl + x

6) Save a backup copy of the file (it will wake it easier to create new integrated App+Wallet bundles).

You can now open BitSafe.app. A new wallet will be generated inside BistSafe.app. You can have as many of them as you like, and you can move them around for backups and so on.



If you want to copy an existing wallet (located by default in /Users/YourUserName/Library/Application Support/Bitcoin), you must go inside the Bitcoin.app package. From the Finder, right click on Bitsafe.app and pick the "Show Package Contents" option. It will an open new Finder window. From there, go to Contents/Resources/data . You can paste your wallet.dat and other resource files here.



Updating the Bitcoin client:

If a new version of the BitCoin client is released, you can update the binary inside the Bundle. Right click the new Bitcoin.app file and choose Show Package Contents. From there, copy the bitcoin file located in Contents/MacOS/ file and paste it at the same place inside the BitSafe.app package.



Note: I've tried to change the LSMultipleInstancesProhibited from true to false, but it doesn't allow to run multiple Bitcoin clients simultaneously (even if I change the CFBundelIdentifier entry). I'd love to know if it is possible to overrule that behaviour?

Post
Topic
Board Mining
Re: Linux bitcoin text tricks
by
Pygy
on 26/05/2011, 14:53:57 UTC
Thanks for sharing :-)
Post
Topic
Board Mining
Re: unable to downclock memory on 6870
by
Pygy
on 26/05/2011, 14:36:21 UTC
There's always 100 less than the core clock, at least.

I'm sorry, but I don't understand your reply...
Post
Topic
Board Mining
Re: unable to downclock memory on 6870
by
Pygy
on 26/05/2011, 14:08:09 UTC
Save the profile, and edit it by hand in a text editor (mine is called mem300.ovdr)
Code: ("$ nano mem300.ovdr ")


  
  
  
  
  
  
  
  
  
  
  
  
  
  

You must change the mem param of the performance levels 1 and 2 to 30000.
Then you can load the profile from the command line with
Code:
$ AMDOverdriveCtrl -i N -b mem300.ovdr
Where N is the id number reported by
Code:
$ AMDOverdriveCtrl -h

However, I don't know (yet) how to adapt the voltage for these lower memory clock rates...


Amazingly, lowering the memory clock increased the hash rate from ~320 to ~325 MH/s
Post
Topic
Board Mining
Re: 5970, Linux: How do I underclock the RAM below the allowed range?
by
Pygy
on 26/05/2011, 12:05:40 UTC
Ok, I got AMDOverdrivectrl to work :-)
Post
Topic
Board Mining
Motherboard recommendation for mining with two 5970.
by
Pygy
on 25/05/2011, 19:06:31 UTC
(Moved from the tech support forum...)

My motherboard of choice for mining (ASRock 870 extreme 3) can't sustain the heat of two 5970 (~90°C).

I fried two of these already (actually, the PCIe-related capacitors somehow melt). I thought I had been unlucky with the first one, but apparently it's a weak point of the model (which is advertised for its durable capacitors, oh the irony).

Do you have a recommendation of a reliable, dual PCIe x16 motherboard?
Post
Topic
Board Mining
Re: 5970, Linux: How do I underclock the RAM below the allowed range?
by
Pygy
on 24/05/2011, 22:23:25 UTC
Thank you, I'll have a look at that, probably tomorrow.

What can I expect in terms of temperature by underclocking the RAM it to the 300-400MHz range?
Post
Topic
Board Mining
5970, Linux: How do I underclock the RAM below the allowed range?
by
Pygy
on 24/05/2011, 18:24:02 UTC
I'm trying to underclock the RAM of my Radeon 5970 below the allowed range of [1000-1500]MHz, but even aticonfig --odsc 0,999 gives me an error...

Is there a way to override the limit? I've seen many people around here with similar cards and the RAM clock set at 300MHz...
Post
Topic
Board Bitcoin Discussion
Re: Demographics -4- Where do you live?
by
Pygy
on 17/05/2011, 21:12:45 UTC
A last bump before going to sleep.
Post
Topic
Board Bitcoin Discussion
Re: Demographics -4- Where do you live?
by
Pygy
on 17/05/2011, 18:58:41 UTC
Coming from a country much smaller than its neighbour, I know where you come from.

Keep in mind that these polls are held to help merchants target the Bitcoin crowd, and that the sample size is rather small since about 1/4th of the people who read the topic give an answer.

Canada + US is the English speaking America (with all due apologies to Quebec people).
 I also lumped together the UK and Ireland (Europe's native English speakers) even though, historically, they have not always held the friendliest relationships. The same goes for other regions.
Post
Topic
Board Bitcoin Discussion
Re: Demographics -4- Where do you live?
by
Pygy
on 17/05/2011, 14:02:41 UTC
Badabump
Post
Topic
Board Bitcoin Discussion
Re: The Daily Bitcoin Demographics -4- Where do you live?
by
Pygy
on 17/05/2011, 11:24:56 UTC
As announced (to reach people around the globe roughly equally): Bump!
Post
Topic
Board Bitcoin Discussion
Demographics -4- Where do you live?
by
Pygy
on 17/05/2011, 09:05:34 UTC
A new day, a new poll. I tried to be as exhaustive as possible without being too detailed either.

The aim of this poll series its to get a demographic picture of the Bitcoin community in order to attract merchants related to our interests.

See also:

The Daily Bitcoin Demographics



If you found this information useful, you may send 0.5 Btc to 1LScbdyGwwM4cRd3KwUgM2CQje63H2yHS1.

Note to the moderators:

For this poll to be accurate, it needs to be exposed similarly to people all around the globe. As a consequence, I plan to bump it every 4 hours. Would you agree with than and not consider it spam?
Post
Topic
Board Discussions générales et utilisation du Bitcoin
Re: Bitcoin et fiscalité (Belgique)
by
Pygy
on 17/05/2011, 08:45:17 UTC
Quelles sont les différences entre un revenu et un service en terme d'imposition?

Dans tous les cas, comment dois-je déclarer les achats de Bitcoins?

Ploum: Je vends 95BTC à 5.4€ pièce.
Post
Topic
Board Pools
Re: [Swepool.net] Pay-per-share, LP, worker account, Lowest fee on planet!
by
Pygy
on 17/05/2011, 08:21:55 UTC
If I were you, I'd make English the default language, with a link a the top right of each page to its swedish counterpart. You'd reach more people.