Bitcoin Forum
July 09, 2024, 10:42:12 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 »
1  Economy / Scam Accusations / 519-style Hoax on: January 07, 2014, 12:36:26 AM
I just got this mail. My name is not "David":



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

Beside here, is there a place to report it?
2  Alternate cryptocurrencies / Altcoin Discussion / Give me coins: Where di I get a PIN? on: November 29, 2013, 09:11:37 AM
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!
3  Bitcoin / Bitcoin Discussion / Security: Are PrintCoins X-ray proof? on: January 08, 2012, 09:14:08 AM
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.
4  Bitcoin / Development & Technical Discussion / Re: OS X: Putting the wallet (and data dir) inside the Bitcoin.app bundle on: June 15, 2011, 03:54:01 PM
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).
5  Bitcoin / Development & Technical Discussion / Beside the Wallet.dat, are there files with personal data in the datadir? on: June 13, 2011, 12:43:23 PM
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.
6  Bitcoin / Development & Technical Discussion / How to make a portable Bitcoin client for Mac OS X! on: June 13, 2011, 11:22:54 AM
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:
	<key>CFBundleExecutable</key>
<string>bitcoin</string>
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?

7  Bitcoin / Mining / Re: Linux bitcoin text tricks on: May 26, 2011, 02:53:57 PM
Thanks for sharing :-)
8  Bitcoin / Mining / Re: unable to downclock memory on 6870 on: May 26, 2011, 02:36:21 PM
There's always 100 less than the core clock, at least.

I'm sorry, but I don't understand your reply...
9  Bitcoin / Mining / Re: unable to downclock memory on 6870 on: May 26, 2011, 02:08:09 PM
Save the profile, and edit it by hand in a text editor (mine is called mem300.ovdr)
Code: ("$ nano mem300.ovdr ")
<?xml version="1.0" encoding="utf-8"?>
<OVERDRIVE_PROFILE>
  <PERFORMANCE_LEVEL level="2" gpu="75000" mem="100000" voltage="1050"/>
  <PERFORMANCE_LEVEL level="1" gpu="55000" mem="100000" voltage="1038"/>
  <PERFORMANCE_LEVEL level="0" gpu="15700" mem="30000" voltage="950"/>
  <FAN_SETTING percentage="AUTO"/>
  <FAN_CTRL enabled="no"/>
  <FAN_CTRL_CURVE type="0"/>
  <FAN_CTRL_POINT nr="0" temperature="2000" percentage="0"/>
  <FAN_CTRL_POINT nr="1" temperature="4000" percentage="2500"/>
  <FAN_CTRL_POINT nr="2" temperature="6000" percentage="5000"/>
  <FAN_CTRL_POINT nr="3" temperature="8000" percentage="7500"/>
  <FAN_CTRL_POINT nr="4" temperature="10000" percentage="10000"/>
  <MONITOR_SAMPLE_TIME interval="10"/>
  <COLOR_PROFILE enabled="no" longitude="-13.000000" latitude="52.000000" color_temp_day="6500" color_temp_night="4000" transition="30"/>
  <POWERTUNE percentage="0"/>
</OVERDRIVE_PROFILE>

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
10  Bitcoin / Mining / Re: 5970, Linux: How do I underclock the RAM below the allowed range? on: May 26, 2011, 12:05:40 PM
Ok, I got AMDOverdrivectrl to work :-)
11  Bitcoin / Mining / Motherboard recommendation for mining with two 5970. on: May 25, 2011, 07:06:31 PM
(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?
12  Bitcoin / Mining / Re: 5970, Linux: How do I underclock the RAM below the allowed range? on: May 24, 2011, 10:23:25 PM
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?
13  Bitcoin / Mining / 5970, Linux: How do I underclock the RAM below the allowed range? on: May 24, 2011, 06:24:02 PM
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...
14  Bitcoin / Bitcoin Discussion / Re: Demographics -4- Where do you live? on: May 17, 2011, 09:12:45 PM
A last bump before going to sleep.
15  Bitcoin / Bitcoin Discussion / Re: Demographics -4- Where do you live? on: May 17, 2011, 06:58:41 PM
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.
16  Bitcoin / Bitcoin Discussion / Re: Demographics -4- Where do you live? on: May 17, 2011, 02:02:41 PM
Badabump
17  Bitcoin / Bitcoin Discussion / Re: The Daily Bitcoin Demographics -4- Where do you live? on: May 17, 2011, 11:24:56 AM
As announced (to reach people around the globe roughly equally): Bump!
18  Bitcoin / Bitcoin Discussion / Demographics -4- Where do you live? on: May 17, 2011, 09:05:34 AM
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?
19  Local / Discussions générales et utilisation du Bitcoin / Re: Bitcoin et fiscalité (Belgique) on: May 17, 2011, 08:45:17 AM
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.
20  Bitcoin / Pools / Re: [Swepool.net] Pay-per-share, LP, worker account, Lowest fee on planet! on: May 17, 2011, 08:21:55 AM
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.
Pages: [1] 2 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!