Bitcoin Forum
May 04, 2024, 10:42:57 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 [3]
41  Bitcoin / Hardware / Re: Kano vs Bitsyncom on: February 10, 2013, 04:34:50 AM
It would be so much easier if companies would just release the source when they release binaries.

Bitsyncom, post the source. Now.

From what I understand you actually have to have a binary...  do you know anybody who has the binary?  Perhaps the demand should come from that person instead.

I don't see why they have to redistribute anything, if the hardware hasn't been delivered.  It might even be shipped with the unit... who knows!

Demanding stuff seems so wrong;  especially after everything they have done for the bitcoin community.  Trying to get a open platform to market.  Not trying to take advantage of their skill set in bringing it to fruition just for themselves, instead allowing the boxes to be distributed far and wide to build the foundation of the network.

All of these complaints, are they even customers of Avalon?

I ordered one box from Avalon; they said in the beginning it would be shipped/delivered by the end of February 2013.  They are currently (AFAIK) on schedule and yet they still get bashed constantly for everything.  Why?  They are on schedule.  They are delivering generally what they said they would deliver.  They will arrive when they arrive (I'm sure source was well).  It is a little early to start demanding source before distribution of binaries is it not?

When I purchased the one box I thought they would be shipping MONTHs after everyone.  But I liked the idea and the plan behind building the boxes so I put my BTC's where my mouth was.

If you look at what ngzhang has committed to the open source community, if you look at his youtube videos... from what I can see is a company/organization that is actually making a difference, unlike some others that appears to be in it for (more) personal gain.

42  Bitcoin / Hardware / Re: [Announcement] Avalon ASIC Development Status [Batch #1] on: January 19, 2013, 07:39:12 PM
One thing is bothering me. If Avalon will ship to me via DHL, this is will be total fail because of reasons, I explained before.

I'm not sure what that is.  I also am outside of DHL (no service at all).  What I receive items via DHL it goes to a city about 600 miles away.   Then DHL re-ships the original piece of the local mail system to the destination.  I have seen two different carriers used to re-ship packages.

The tracking information comes up and says, "delivery arrangements have been made" as that last item in tracking website.

I looked through your post history and I could not find a reason why DHL can't mail to you.

Have you ever had a failure of DHL to deliver to your location?

As far as customs, you should have less problems with DHL.  I suppose different countries could be different depending upon who is bribed.  But maybe next time DHL has greased the proper palms.  (you should hope)
43  Economy / Marketplace / Re: List of honest traders. on: July 27, 2011, 10:30:57 PM
+1
thundertoe successful trade
44  Economy / Goods / [WTS] DiRT3 promo code for steam 0.9 BTC each (4 left) on: July 23, 2011, 11:46:39 AM
[WTS] DiRT3 promo code for steam 0.9 BTC each (total 8 available)

also a following ad site:

http://www.bitcoinclassifieds.net/ad/830/


Edit:
Found 3 more bringing total to sell up to 11;  4 sold now 7 more left to sell.  Thanks!
Edit:
Sold 2 more, 5 left now
Edit:
Sold another, 4 left!
45  Bitcoin / Mining / [gputempmon.sh]Linux temperature script for adjusting GPU clock based on temp. on: July 05, 2011, 08:28:57 PM
I've found this script very useful for myself;  hopefully by sharing it someone else will find it useful

script is very simple

Script adjusts clock speed UP if temperature falls below a certain temperature.
Script adjusts clock speed DOWN if temperature increases a certain threshold

individual cards are adjusted;  supports up to 4 GPU's

you can wget it it via
wget http://akpool.org/files/gputempmon.sh

or I'll paste it inline here:
Code:
#!/bin/sh
#akpool.org
#latest version at http://akpool.org/files/gputempmon.sh
#version 0.56
#this script monitors temperatures across cards and adjusts MHZ and fan speeds as necessary
CARD0ENABLE=1
CARD1ENABLE=1
CARD2ENABLE=1
CARD3ENABLE=0
#clock down to MINCLOCK when OVERHEATTEMP is reached
#additionally set fanspeed to 95%
#basically card is getting a little warm lets set it up to a regular clock rate
OVERHEATTEMP=82
MINCLOCK=900
#clock up to MAXCLOCK if temperature is under COOLTEMP
#additionally set fan to auto
COOLTEMP=74
MAXCLOCK=980
MAXMEMORY=1120
#when between TARGETTEMPLOW and TARGETTEMPHIGH
#set clock to TARGETCLOCK
#additinally set fan speed to auto
#TARGETTEMPLOW=75
#TARGETTEMPHIGH=80
#TARGETCLOCK=880
MEMORYCLOCK=1050

aticonfig --od-enable


while true; do
sleep 5;

if [ "$CARD0ENABLE" == "1" ]; then
export DISPLAY=:0
num=`aticonfig --pplib-cmd "get temperature 0"|tr -s ' '|cut -f 7 -d ' '|cut -f 1 -d '.'`
if [ "$num" -gt "$OVERHEATTEMP" ]; then
echo "Adapter 0 is overheating clocking it down and increasing fan to 100%"
aticonfig --od-setclocks=$MINCLOCK,$MEMORYCLOCK --adapter=0;
aticonfig --pplib-cmd "set fanspeed 0 95"
echo $num
fi
if [ "$num" -lt "74" ]; then
echo "Clocking up adapter 0"
CURRENTCLOCK=`aticonfig --od-getclocks --adapter=0|grep "Current Clocks"|tr -s ' '|cut -f 5 -d ' '`
if [ ! "$CURRENTCLOCK" -eq "$MAXCLOCK" ]; then
aticonfig --od-setclocks=$MAXCLOCK,$MAXMEMORY --adapter=0;
fi
echo $num
fi


#if [ "$num" -lt "$TARGETTEMPHIGH" && "$num -gt "$TARGETTEMPLOW ]; then
#CURRENTCLOCK=`aticonfig --od-getclocks --adapter=0|grep "Current Clocks"|tr -s ' '|cut -f 5 -d ' '`
#if [ ! "$CURRENTCLOCK" -eq
#
#
#fi


if [ "$CARD1ENABLE" == "1" ]; then
export DISPLAY=:0.1
num=`aticonfig --pplib-cmd "get temperature 0"|tr -s ' '|cut -f 7 -d ' '|cut -f 1 -d '.'`
if [ "$num" -gt "$OVERHEATTEMP" ]; then
echo "Adapter 1 is overheating clocking it down and increasing fan to 100%"
aticonfig --od-setclocks=$MINCLOCK,$MEMORYCLOCK --adapter=1;
aticonfig --pplib-cmd "set fanspeed 0 75"
echo $num
fi
if [ "$num" -lt "74" ]; then
echo "Clocking up adapter 1"
CURRENTCLOCK=`aticonfig --od-getclocks --adapter=1|grep "Current Clocks"|tr -s ' '|cut -f 5 -d ' '`
if [ ! "$CURRENTCLOCK" -eq "$MAXCLOCK" ]; then
aticonfig --od-setclocks=$MAXCLOCK,$MEMORYCLOCK --adapter=1;
fi
echo $num
fi
fi


if [ "$CARD2ENABLE" == "1" ]; then
export DISPLAY=:0.2
num=`aticonfig --pplib-cmd "get temperature 0"|tr -s ' '|cut -f 7 -d ' '|cut -f 1 -d '.'`
if [ "$num" -gt "$OVERHEATTEMP" ]; then
echo "Adapter 2 is overheating clocking it down and increasing fan to 100%"
aticonfig --od-setclocks=$MINCLOCK,$MEMORYCLOCK --adapter=2;
aticonfig --pplib-cmd "set fanspeed 0 75"
echo $num
fi
if [ "$num" -lt "74" ]; then
echo "Clocking up adapter 2"
CURRENTCLOCK=`aticonfig --od-getclocks --adapter=2|grep "Current Clocks"|tr -s ' '|cut -f 5 -d ' '`
if [ ! "$CURRENTCLOCK" -eq "$MAXCLOCK" ]; then
aticonfig --od-setclocks=$MAXCLOCK,$MAXMEMORY --adapter=2;
#also set fan speed to auto
#aticonfig --pplib-cmd "set fanspeed 0 0"
fi
echo $num
fi
fi


if [ "$CARD3ENABLE" == "1" ]; then
export DISPLAY=:0.3
num=`aticonfig --pplib-cmd "get temperature 0"|tr -s ' '|cut -f 7 -d ' '|cut -f 1 -d '.'`
if [ "$num" -gt "$OVERHEATTEMP" ]; then
echo "Adapter 2 is overheating clocking it down and increasing fan to 100%"
aticonfig --od-setclocks=$MINCLOCK,$MEMORYCLOCK --adapter=3;
aticonfig --pplib-cmd "set fanspeed 0 75"
echo $num
fi
if [ "$num" -lt "74" ]; then
echo "Clocking up adapter 2"
CURRENTCLOCK=`aticonfig --od-getclocks --adapter=3|grep "Current Clocks"|tr -s ' '|cut -f 5 -d ' '`
if [ ! "$CURRENTCLOCK" -eq "$MAXCLOCK" ]; then
aticonfig --od-setclocks=$MAXCLOCK,$MAXMEMORY --adapter=3;
#also set fan speed to auto
#aticonfig --pplib-cmd "set fanspeed 0 0"
fi
echo $num
fi
fi
fi



#DISPLAY=:0 aticonfig --adapter=0 --od-getclocks;
#DISPLAY=:0 aticonfig --adapter=0 --od-getclocks;
#DISPLAY=:0 aticonfig --od-setclocks=900,1300 --adapter=0;
#DISPLAY=:0 aticonfig --adapter=0 --od-getclocks;
done;


46  Other / Beginners & Help / Re: Whitelist Requests (Want out of here?) on: June 24, 2011, 09:09:53 PM
-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160

Greetings Moderator,

I would like to be whitelisted so I can post a script that monitors heat and
if cooling fails for some reason will auto clock the GPU down and then if the
temperature goes down far enough will restore clock speed.

You can choose the range you want your cards to operate in and it will adjust
all cards MHZ independently of each other to target the heat range you are
intrested in maintaining.

This is for linux miners.

- -Myron
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)

iEYEAREDAAYFAk4E/PwACgkQifbfg5b2FvWR1ACgqQ2GEtVDm87R05F7LFp3d3YX
EZQAoJWvL+qKB96bZ4wka4L5phQaFZJb
=xvrt
-----END PGP SIGNATURE-----
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!