Pages:
Author

Topic: [ANN] Bitfury ASIC sales in EU and Europe - page 61. (Read 250482 times)

sr. member
Activity: 378
Merit: 250
September 10, 2013, 05:57:01 PM
Hi,
My sample chips order
#965   September 3, 2013    Completed   €1,380 for 16 items

I did not received any thing , no chips and no tracking No .
I did payed for express delivery

Regards: Martin

you can wait they are mining with their chips

don t worry you ll be delivered when it ll be useless to get the chips

this is how it s works







u are totally wrong papamoi , punin and his team are really stand up guys. why u talk shit about them ? u had any experience with them ? did u ordered from them ?

marto74 , send them a email, im sure they will get back to u ASAP


are u part of their after sales service?

btw i don t have a shit of reason to give you

just check what s happened with the comitment bitfury was supposed to fullfill with me

and then you come back and talk

legendary
Activity: 1974
Merit: 1003
September 10, 2013, 05:16:47 PM
Hi,
My sample chips order
#965   September 3, 2013    Completed   €1,380 for 16 items

I did not received any thing , no chips and no tracking No .
I did payed for express delivery

Regards: Martin

you can wait they are mining with their chips

don t worry you ll be delivered when it ll be useless to get the chips

this is how it s works


u are totally wrong papamoi , punin and his team are really stand up guys. why u talk shit about them ? u had any experience with them ? did u ordered from them ?

marto74 , send them a email, im sure they will get back to u ASAP
sr. member
Activity: 378
Merit: 250
September 10, 2013, 05:09:10 PM
Hi,
My sample chips order
#965   September 3, 2013    Completed   €1,380 for 16 items

I did not received any thing , no chips and no tracking No .
I did payed for express delivery

Regards: Martin

you can wait they are mining with their chips

don t worry you ll be delivered when it ll be useless to get the chips

this is how it s works
hero member
Activity: 728
Merit: 500
September 10, 2013, 04:31:46 PM
Hi,
My sample chips order
#965   September 3, 2013    Completed   €1,380 for 16 items

I did not received any thing , no chips and no tracking No .
I did payed for express delivery

Regards: Martin
hero member
Activity: 728
Merit: 500
September 10, 2013, 04:23:54 PM
Hi,
Niko
I've send you a few Emails asking about bulk chip order prices.
Is there any problem ?

Sorry Marto, I'm drowning in emails, just had someone take over the communication for me. We will introduce new chip pricing on the site this weekend.

Any news ?
Huh
full member
Activity: 141
Merit: 100
September 10, 2013, 03:36:29 PM
Maybe noob question:

What is this line/file(?) in the directory of /home/pi/logs/ of the Bitfury chainminer logfile consolidation script by Jlsminingcorp and Isokivi?

-rw-r--r-- 1 pi pi 11592 Sep  8 23:21 tats for board: 1
member
Activity: 61
Merit: 10
September 10, 2013, 01:29:05 PM
hi all, how do i connect to miner from iphone ( i am not in my wlan, only 3G)

you need to port forward your miner's port 80 outside the NAT, or create an ssh tunnel into your home network if you have a server with ssh port open.

and get a dyndns.org address to your home ip, as its ip address might change. Put the dyndns details in your router, and you will always have minerXXXX.dyndns.org as your connecting point to your home network.
I'd recommend having some sort of VPN firewall setup if you really want to access home from outside..
thanks! ... now another question ... @10 h-boards we got 160 chips in stat.log ... why is there only 150?
hero member
Activity: 910
Merit: 1000
Items flashing here available at btctrinkets.com
September 10, 2013, 09:52:54 AM
The logger has been updated, it now saves multiple log files with running numbering.
Code:
#!/bin/bash
# Bitfury chainminer logfile consolidation script
# Jlsminingcorp and Isokivi, September 2013
# Version 1.4

# User configurable variables
# $logfile is the path to the bitfury chainminer log file
# $output is the path to the board-data output file that you would like to write to
# $outputdir is the directory to store output in
# $logtime is the time (in minutes) to collect data for
# $numboards is the number of H-boards your the miner
logfile="/run/shm/.stat.log"
output="boards.log"
outputdir="."
logtime="0"
numboards="2"

# Timestamps
datestamp=$(ls --full-time "$logfile" | awk '{print $6}')
timestamp=$(ls --full-time "$logfile" | awk '{print $7}' | awk -F"." '{print $1}')

# If log file or output files don't exist then take appropriate action
if [ ! -e "$logfile" ]; then
    echo "$(date)"" : ""Logfile does not exist in the specified location"
    echo "$(date)"" : ""Logfile does not exist in the specified location" >> "$output"
    exit 1
fi

if [ ! -d "$outputdir"/old_logs ]; then
    mkdir "$outputdir"/old_logs
fi

if [ -e "$outputdir"/"$output" ]; then
    numoutput=$(find "$outputdir"/old_logs -type f -name ""$output"*" | wc -l)
    let numoutput="$numoutput"+1
    mv "$outputdir"/"$output" "$outputdir"/old_logs/"$output"."$numoutput"
fi
echo "Date,Time,Board Position,Speed,Noncerate [GH/s],Hashrate [GH/s],Good,Errors,SPI-Errors,Miso-Errors" > "$outputdir"/"$output"

for (( i=1; i<="$numboards"; i++)); do
    chipout="$outputdir""/chips_board_""$i"
    if [ -e "$chipout" ]; then
        numchipout=$(find "$outputdir"/old_logs -type f -name ""chips_board_""$i"*" | wc -l)
        let numchipout="$numchipout"+1
        mv "$chipout" "$outputdir"/old_logs/"$chipout"."$numchipout"
    fi
    echo "Chip stats for board: ""$i" > "$chipout"
    echo "Date,Time,Chip,ProgParams,Speed,Noncerate,Hashrate,Nonces/round,False nonce,SPIerr,MISOerr,Jobs/5min (hash rate),ChipID,CoresOK" >> "$chipout"
done

echo "Starting to log data"
echo "Time to collect data for: ""$logtime"" minutes"

# During the data collection period (set by $logtime) parse data from the logfile to the output files
let countdown="$logtime"*"60"
while [ "$countdown" -ge "0" ]; do

    # If timestamp in the log file is the same as the timestamp on the last entry in the output file then sleep for a while
    # Should make sure that we're somewhere in the middle of the 5 minute chainminer logging period
    # Could use "while" here, but risk getting stuck in a never-ending loop if log file is not being updated
    prevtimestamp="none"
    if [ -e "$outputdir"/old_logs/"$output"."$numoutput" ]; then
        prevtimestamp=$(tail -n 1 "$outputdir"/old_logs/"$output"."$numoutput" | awk -F"," '{print $2}')
    fi
    if [ "$timestamp" == "$prevtimestamp" ]; then
        echo "Chainminer log file not yet updated. Will now sleep for a short while."
        echo "Chainminer log file not yet updated. Will now sleep for a short while." >> "$outputdir"/"$output"
        sleep 60
        timestamp=$(ls --full-time "$logfile" | awk '{print $7}' | awk -F"." '{print $1}')
    fi

    # Strip board data out of the chainminer log file and copy to the output file
    IFS=$'\r\n' datalines=($(grep -A "$numboards" record "$logfile" | tail -n "$numboards" ))
    for i in "${datalines[@]}"; do
        echo -ne "$datestamp","$timestamp", >> "$outputdir"/"$output"
        echo "$i" | tr ":" " " | awk '{$1=$1}1' OFS="," >> "$outputdir"/"$output"
    done

    # Strip chip data out of the chainminer log file and copy to chip output files (one for each H-board)
    for (( i=1; i<="$numboards"; i++)); do
        chipout="$outputdir""/chips_board_""$i"
        let startline="$i"*"16"-"15"
        let endline="$i"*"16"
        while read line; do
            echo -ne "$datestamp","$timestamp", >> "$chipout"
            echo "$line" | awk '{for (i=1; i<=12; i++) printf("%s%s", $(i), i<12 ? OFS="," : "\n"); }'  >> "$chipout"
        done < <(awk 'NR==v1,NR==v2' v1="${startline}" v2="${endline}" "$logfile")
    done

    echo "Time remaining: ""$countdown"" seconds"
    if [ "$countdown" -gt "0" ]; then
        sleep 300
    fi
    let countdown="$countdown"-"300"
    timestamp=$(ls --full-time "$logfile" | awk '{print $7}' | awk -F"." '{print $1}')

done

echo "Finished logging data"
exit 0


member
Activity: 110
Merit: 10
September 10, 2013, 05:23:34 AM
Hi,
Niko
I've send you a few Emails asking about bulk chip order prices.
Is there any problem ?

Sorry Marto, I'm drowning in emails, just had someone take over the communication for me. We will introduce new chip pricing on the site this weekend.

Hi,
does anybody know more about the new chip pricing and when we will see that on the homepage?

Cheers,
Andreas
Waiting on this as well... got some $$$

Me too. And I also have an USB Bitfury PCB designed. This boards are waiting for their Bitfury chips ;-)
hero member
Activity: 546
Merit: 500
Owner, Minersource.net
September 10, 2013, 03:06:07 AM
Hi,
Niko
I've send you a few Emails asking about bulk chip order prices.
Is there any problem ?

Sorry Marto, I'm drowning in emails, just had someone take over the communication for me. We will introduce new chip pricing on the site this weekend.

Hi,
does anybody know more about the new chip pricing and when we will see that on the homepage?

Cheers,
Andreas
Waiting on this as well... got some $$$
member
Activity: 110
Merit: 10
September 10, 2013, 02:57:28 AM
Hi,
Niko
I've send you a few Emails asking about bulk chip order prices.
Is there any problem ?

Sorry Marto, I'm drowning in emails, just had someone take over the communication for me. We will introduce new chip pricing on the site this weekend.

Hi,
does anybody know more about the new chip pricing and when we will see that on the homepage?

Cheers,
Andreas
sr. member
Activity: 294
Merit: 250
September 10, 2013, 02:17:00 AM
hi all, how do i connect to miner from iphone ( i am not in my wlan, only 3G)

you need to port forward your miner's port 80 outside the NAT, or create an ssh tunnel into your home network if you have a server with ssh port open.

and get a dyndns.org address to your home ip, as its ip address might change. Put the dyndns details in your router, and you will always have minerXXXX.dyndns.org as your connecting point to your home network.
I'd recommend having some sort of VPN firewall setup if you really want to access home from outside..
legendary
Activity: 1946
Merit: 1006
Bitcoin / Crypto mining Hardware.
September 10, 2013, 12:55:30 AM
I have an interesting Bitfury anecdote.

One of my chips was consistently hashing at 0.1 to 0.4GH/s. The moment i added another cooling fan to my setup, the chip started hashing at 2.4GH/s.

legendary
Activity: 1946
Merit: 1006
Bitcoin / Crypto mining Hardware.
September 10, 2013, 12:49:48 AM
hi all, how do i connect to miner from iphone ( i am not in my wlan, only 3G)

you need to port forward your miner's port 80 outside the NAT, or create an ssh tunnel into your home network if you have a server with ssh port open.
member
Activity: 61
Merit: 10
September 10, 2013, 12:11:52 AM
hi all, how do i connect to miner from iphone ( i am not in my wlan, only 3G)
hero member
Activity: 525
Merit: 500
..yeah
September 09, 2013, 11:48:33 AM
Thanks cscape, you are of great help! Smiley

How do I interpret the .putstat.log? It reads "putworks, got, done, sent, url". From two different starter kits I get this:

Code:
4 682612 457440 457436 [0]http://127.0.0.1:8332/
0 717652 188601 188601 [1]http://127.0.0.1:8333/
0 682730 461372 461372 [2]http://127.0.0.1:8334/

Code:
20 112690 120635 120614 [0]http://127.0.0.1:8332/
3 112009 116636 116633 [1]http://127.0.0.1:8333/
7 112882 118537 118530 [2]http://127.0.0.1:8334/

How I interpret this: got 626k, did 2/3 of it  and sent except for 4 of them (to stratum proxy?). Which would fit nicely, because this miner drops the speed sometimes dramatically for hours and slowly getting back to full speed and slowly down again.
In the second case I read that I sent more than I got, wtf. This does not make any sense to me. This miner also goes up and down in speed. Help? Smiley
sr. member
Activity: 251
Merit: 250
September 09, 2013, 08:23:32 AM
An area on my H-board doesn't have any solder on the solder jumpers. So this doesn't matter as long as the chips ain't broken. Toch?
Correct. But if some chips are misbehaving, and you notice a lack of solder on the jumper, you may want to peek under the edge of the chip to see if there's enough solder on the contacts there.

It's possible to fix poorly soldered chip. Take good quality solder tin, and run a fresh bead along the edge of the chip. If you're lucky, it will wet the contacts of the chip. Only attempt this if you know what you're doing and have some wick ready to fix any bridges.
full member
Activity: 141
Merit: 100
September 09, 2013, 08:07:47 AM
The purpose of the solder jumpers is to route the signals around a broken chip. Normally, the communication signals from the Raspberry PI go through each chip to the next one. If a chip is broken, it could prevent communication with the next chip.

With the solder jumpers you could remove a chip (or disconnect it by cutting the copper traces), and then connect each of the two blobs of the solder jumper with some extra solder tin so the chip is skipped, and the software can talk to the next one.

An area on my H-board doesn't have any solder on the solder jumpers. So this doesn't matter as long as the chips ain't broken. Toch?

Edit: I should have read post #1068 more thoroughly.
sr. member
Activity: 251
Merit: 250
September 09, 2013, 07:50:13 AM
The purpose of the solder jumpers is to route the signals around a broken chip. Normally, the communication signals from the Raspberry PI go through each chip to the next one. If a chip is broken, it could prevent communication with the next chip.

With the solder jumpers you could remove a chip (or disconnect it by cutting the copper traces), and then connect each of the two blobs of the solder jumper with some extra solder tin so the chip is skipped, and the software can talk to the next one.
hero member
Activity: 525
Merit: 500
..yeah
September 09, 2013, 07:41:09 AM
I still try to find something suspicous looking on my boards, maybe this time I got something: At the end of the traces from each chip there are white squares reading "SJ18, SJ17, SJXX...". Are they called jumpers?
Yes, SJ = Solder Jumper. It doesn't matter if they are covered with solder tin or not, as long as they aren't connected to each other (unless you want to disable that particular chip).

But your lack of solder tin on the jumpers may indicate that the chips don't have enough either.
Thanks for your reply Smiley thats what I thought. But what are they good for on that spot anyway? to make sure that layers beneath it would have good contact (reflow of layers?)
Pages:
Jump to: