Bitcoin Forum
April 25, 2024, 07:22:16 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 [3] 4 »
41  Economy / Micro Earnings / Re: TestNet Faucet (testnet.coinfaucet.eu) on: March 22, 2015, 10:39:32 PM
Hello,
I changed the design of faucet and amount for withdrawal is calculated automatically now.
Amount is calculated in range (min - max) and with probability:

0.25 - 0.5 BTC   => 88.889%
0.5 - 1 BTC   => 10%
1 - 2 BTC      => 1%
1.5 - 3 BTC   => 0.1%
2 - 4 BTC      => 0.01%
2.5 - 5 BTC   => 0.001%

Best regards  Roll Eyes
42  Bitcoin / Development & Technical Discussion / Add nodes from blockchain.info to bitcoind on: February 09, 2015, 01:51:42 PM
Hello,

I've created a simple bash script for insert nodes from blockchain.info to bitcoind.

Code:
#!/bin/bash
 
# Add nodes from blockchain.info to bitcoind
# Tested on bitcoin version 0.9.1
 
#run as Bitcoin user
#su -l Bitcoin -c "/home/addnode.sh" -s /bin/sh
 
clear
 
IFS=$'\n'
nodes=`curl -s http://blockchain.info/connected-nodes | egrep -o '([[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+)' | sort -u`
i=0
for node in $nodes; do
bitcoin=`bitcoind addnode $node add 2>&1`
if [ -z "$bitcoin" ]; then
((i++))
elif [ -n "`echo $bitcoin | grep -v 'error: {"code":-23,"message":"Error: Node already added"}'`" ]; then
echo "Unknown error: $bitcoin"
exit 1
fi
done
 
if [ "$i" -gt 0 ]; then
echo "Successfully added $i new nodes."
else
echo "There are no new nodes."
fi

Can be run from a cronjob (change path):
Code:
*/30 * * * * /home/addnode.sh > /dev/null

Here is source: https://gist.github.com/emsit/98f13006afa2ff69328b
43  Economy / Micro Earnings / Bitcoin, Groestlcoin testnet faucet (coinfaucet.eu) on: February 09, 2015, 12:51:14 PM
Hi there,

This faucet was launched in 2014, the first transaction took place on 2014-12-22 08:15:36.

Supported coins are Bitcoin testnet, Groestlcoin testnet
Bitcoin testnet - https://coinfaucet.eu/btc-testnet/
Groestlcoin testnet - https://coinfaucet.eu/grs-testnet/



Faucet supports addresses.

Example testnet BTC (Legacy/Segwit/Taproot):
mwZPfTMiVQEzXTEhwLmi5dcmq7EvcDqLGr
tb1q0g5y6yhk7z25n7zxl4vtcanxyp44ng74x8esta
tb1parlan9xte2slkmj0j8u6wzdnzye55n4ljrlzrxp8ujqx2fmzcu7q4cakc5

Example testnet GRS (Legacy/Segwit):
2Mxgq2A3hWuDWC1TwLTxJRmWm5ck8Vwzbr8
tgrs1q408nujxypq6c5lt3nghvpsqvdey9utwlwpfkcd



Please do not ask me to send a coin outside the faucet!
My stocks of coins are shrinking and I don't generate new ones anymore.

If you really need a lot of testing coins, try some other solution. For example:
bitcoin-testnet-box
bitcoin-regnet

Or you can swap them for another coin, for example here:
altquick.com/swap
44  Bitcoin / Hardware / Re: Black Arrow 28nm 100Ghash Bitcoin ASIC from $0.49/GH/s on: September 11, 2014, 07:13:39 PM
I'm today received my prospero X-1. Ordered 21 Nov 2013 and paid 24 Nov 2013... Grin
45  Bitcoin / Hardware / Re: Black Arrow 28nm 100Ghash Bitcoin ASIC from $0.49/GH/s on: August 11, 2014, 12:17:00 PM
Hello people, what is last known shipped order number?
I have #120x from 21 Nov 2013 and still nothing... Embarrassed

Are you looking for an X-1 or 3? Where did you buy it? Remember the order # is meaningless for shipping only the date you paid for your order is for shipping que,at least that what they tell us.

I have order X-1 from BlackArrow, pay day is 24 Nov 2013...
46  Bitcoin / Hardware / Re: Black Arrow 28nm 100Ghash Bitcoin ASIC from $0.49/GH/s on: August 10, 2014, 10:02:21 PM
Hello people, what is last known shipped order number?
I have #120x from 21 Nov 2013 and still nothing... Embarrassed
47  Other / Archival / Re: Pictures of your mining rigs! on: December 04, 2013, 01:23:39 PM
Here is my microrig. 3x USB Block Erupter - OC16MHz
Right now mining PPC.






48  Bitcoin / Development & Technical Discussion / Re: . on: November 17, 2013, 06:26:45 PM
Try bitcoind RPC but I found only this commands: getblock

I need information with including transactions. Something like https://blockchain.info/rawblock/1

EDIT:I must as first get getblock and get for each transaction getrawtransaction and, finally connected to one output
49  Bitcoin / Project Development / Re: [ANNOUNCE] Abe 0.7: Open Source Block Explorer Knockoff on: November 17, 2013, 06:04:29 PM
I can see with ABE only one block without using database?
Something like https://blockchain.info/rawblock/1
50  Bitcoin / Development & Technical Discussion / Re: . on: November 17, 2013, 05:54:50 PM
Hello, What is the minimum RAM need to perform a command?
I have 512MB and all command ended with error: Killed

Can you tell me some other parser that can display a one block of raw?
51  Bitcoin / Mining software (miners) / Re: Linux mining distro for the Raspberry PI - MinePeon on: September 14, 2013, 12:22:30 AM
The drop in long-term average hash rate to near zero is specific to the Pi, and probably to MinePeon. At boot time, the Pi's date starts at Jan 1, 1970. After a few minutes, a background task updates it to the right time.  But in the interim, cgminer has started. So to get the average,  it calculates your total hashes divided by run time. Since the apparent run time is over 43 years, the average is near zero.

A very logical response, thank you. I honestly didn't even think about the time issue playing a factor into this as I have a script on boot to set the time correctly, it should technically run before cgminer, but looks like it hangs sometimes. I will try delaying cgminer for a couple of seconds to let system scripts start, then run cgminer, I like the idea of a timed delay on the start of cgminer on bootup the more I think about it.

Again thanks.

Yeah, the lack of a RTC on the Pi doesn't seem like a big deal at first, but it can be a real PIA sometimes! :/

Whenever I reboot my RPi, I need to restart ntpd and then cgminer to get reasonable results.

Hello, If you have a problem with the update of date after reboot, edit this file openntpd.service.

and change network.target to network-online.target

Command:
minepeon@minepeon ~ $ sudo nano /usr/lib/systemd/system/openntpd.service
[sudo] password for minepeon:

edit line After=network.target -> After=network-online.target

Ctrl + X
Y
Ctrl + M

 Wink
52  Bitcoin / Mining software (miners) / Re: Linux mining distro for the Raspberry PI - MinePeon on: September 13, 2013, 10:09:50 PM
How do you expand the partitions?

Hello, You can expand the partition as follows:

1. Backup your system  Cheesy     //I am not responsible for any damages


minepeon@minepeon ~ $ sudo -s
[sudo] password for minepeon:    //Enter your password

minepeon /home/minepeon # cd     <enter>

minepeon ~ # fdisk -l     <enter>     // check if your SD is detected as /dev/mmcblk0

Code:
Disk /dev/mmcblk0: 7969 MB, 7969177600 bytes, 15564800 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x000c21e5

        Device Boot      Start         End      Blocks   Id  System
/dev/mmcblk0p1   *        2048      194559       96256    c  W95 FAT32 (LBA)
/dev/mmcblk0p2          194560    15564799     7685120   83  Linux

minepeon ~ # fdisk /dev/mmcblk0     <enter>
d     <enter>
2     <enter>
n     <enter>
p     <enter>
2     <enter>
<enter>
<enter>
W     <enter>

minepeon ~ # reboot     <enter>

Login again (sudo -s -> cd)

minepeon ~ # resize2fs /dev/mmcblk0p2     <enter>

minepeon ~ # reboot     <enter>

Login again (sudo -s -> cd)

minepeon ~ # df -h     <enter>     // check if your /dev/root has been extended  Roll Eyes

Code:
Filesystem      Size  Used Avail Use% Mounted on
/dev/root       7.3G  1.2G  5.8G  17% /
devtmpfs        107M     0  107M   0% /dev
tmpfs           115M     0  115M   0% /dev/shm
tmpfs           115M  260K  115M   1% /run
tmpfs           115M     0  115M   0% /sys/fs/cgroup
tmpfs           115M     0  115M   0% /tmp
/dev/mmcblk0p1   94M   24M   71M  26% /boot
53  Bitcoin / Hardware / Re: Block Erupter USB - Overclocking/ hacking ? on: September 09, 2013, 09:07:17 PM
Something I noticed
1) if you have high HW error, resolder the R1 resistor. It seems like it is not connecting properly.
2) if your miner is not able to detect, resolder the crystal.
3) a overclocked miner uses ~6watts...
Hello, overclocked miner really need 6W??? Undecided
54  Bitcoin / Hardware / Re: Block Erupter USB - Overclocking/ hacking ? on: September 02, 2013, 10:01:15 PM
What power input have erupter USB at the 16MHz, 1.2V?
Nonoverclocking has around 500-510 mA (5V), and overclocking?
55  Economy / Computer hardware / Re: Official ASICMINER Block Erupter Europe topic|usb from 0.4 |blade 5.99 in stock on: September 01, 2013, 03:57:56 PM
Hello, This is the current price for erupter blade?

http://www.asicminer-shop.de/?product=asicminer-block-erupter-blade-old-version-preorder
56  Bitcoin / Mining software (miners) / Re: Linux mining distro for the Raspberry PI - MinePeon on: August 29, 2013, 09:59:45 PM
ntpd will load in 5 minutes, but cgminer not restart. change the time and date and drops avg Hashrate.

I'm sorry for my English Embarrassed
57  Bitcoin / Mining software (miners) / Re: Linux mining distro for the Raspberry PI - MinePeon on: August 29, 2013, 09:51:25 PM
The second question is why ntpd does not update first and then start cgminer?
Then after the restart I see in webUI(static) 0 MH/s.

screenshot from cgminer.


screenshot from webUI.
58  Bitcoin / Mining software (miners) / Re: Linux mining distro for the Raspberry PI - MinePeon on: August 29, 2013, 09:36:32 PM
Hello, Why when set timezone Europe / Bratislava in the WebUI I will not change timezone in the system? In the system I have Europe / London Embarrassed
I had to manually change
Code:
timedatectl set-timezone Europe/Bratislava
59  Bitcoin / Pools / Re: [105'000 GH] BTC Guild - Pays TxFees, Stratum, MergedMining, Private Servers on: August 12, 2013, 01:07:30 PM
Hello, I order 1x USB Block Erupters from BTC Guild, and I have an important question.
How the customs value placed on customs declaration? I ask because in my country is not the official currency bitcoin. And if the customs value of more than $ 30 I will have to submit a purchase order and invoice in USD no BTC.
 
Thank you for reply.
60  Other / Beginners & Help / Re: Buy 100 NMC and LTC, offer price in USD. on: September 10, 2012, 11:36:49 AM
OK, sorry, I'm not scammer. I change PayPal to Bitcoin.
Now, I must buy Bitcoin. Grin
Do you know any reliable web to buy bitcoin?
Pages: « 1 2 [3] 4 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!