Search content
Sort by

Showing 20 of 62 results by nous
Post
Topic
Board Mining software (miners)
Topic OP
A utility to automatically adjust miner intensity on detection of activity
by
nous
on 29/01/2014, 12:47:53 UTC
Ok. Let's assume that some fearless dudes out there have plugged some Radeons into their colleagues' and secretaries' workstations. Let's also assume that those jail-defying dudes have forced their workmates to run some Linux flavour on those PCs (a long shot, but I know of at least one scumbag person who has).

Great. So far we have a mining rig running on free electricity, internet and OS, but those pesky colleagues keep bitching about how slow it is to switch tasks and their screens get messed up with artifacts and their Libreoffice Writer crashes and their shiny X session is insufferable and, and, and to no end.

The obvious solution is to set a cron job to stop cgminer at 08:00 and restart it at whenever the get-the-hell-outta-here hour is. But then, you've paid in preciousss gold for a GPU that's idling for hours between wordprocessors and spreadsheets and the very thought is killing you.

The next best solution is telling cron to just lower the intensity to 10-12 at 08:00 and reset it to 20 at get-the-hell-outta-here hour. Now, that's better.

But nooooooooooooo. Your hard-earned gold deserves even better. You demand a tool that detects when that sucker has stopped typing or touching the mouse, sets intensity to maximum and then waits until that sucker has hung up the phone and touched the mouse again. Then and only then it lowers intensity to levels undetectable.

Your demands have been met; this little tool squeezes the last MH/s out of your GPUs and turns it into profit. And keeps your workmates happy.

Code:
/*
Detect activity on X and act accordingly.
(c) nous at archlinux dot us
BTC: 1Ls3Ug9V2J83XLsg9EFXgLX7ebSwXc39ix

Compile with
gcc -L/usr/X11R6/lib/ -lX11 -lXext -lXss cgminer_watch_intensity.c -o cgminer_watch_intensity

Share and enjoy!
*/

#include
#include
#include
#include
#include
#include
#include

int GetIdleTime () {
        time_t idle_time;
        static XScreenSaverInfo *mit_info;
        Display *display;
        int screen;
        mit_info = XScreenSaverAllocInfo();
        if((display=XOpenDisplay(NULL)) == NULL) { return(-1); }
        screen = DefaultScreen(display);
        XScreenSaverQueryInfo(display, RootWindow(display,screen), mit_info);
        idle_time = (mit_info->idle)/1000;
        XFree(mit_info);
        XCloseDisplay(display);
        return idle_time;
}

int main() {
char halfint[]="echo -n 'gpuintensity|0,15' | nc 127.0.0.1 4028 >/dev/null";
char fullint[]="echo -n 'gpuintensity|0,20' | nc 127.0.0.1 4028 >/dev/null";
int intensity=0;
int idleseconds=0;

system(halfint);
while (1) {
   idleseconds=GetIdleTime();
        if (idleseconds>10 && intensity<20) {
     system(fullint);
     intensity=20;
        }
        if (idleseconds<2 && intensity>15) {
system(halfint);
intensity=15;
        }
        if (!(idleseconds%10)) {
     printf ("Idleseconds: %d - intensity: %d\n", idleseconds, intensity);
        }
        sleep(1);
}
}

A little tweaking is required on your side, namely the fullint and halfint strings. For example, this dude I know has found that his workmates' tolerance threshold was good even at 15 intensity. YMMV. The tool checks for activity every second; it doesn't make any sense to set it lower. It also prints relative information every 10 seconds, so you can (should) run it in a screen(1) and check it remotely. It doesn't check whether the miner is running; it just tries to set its intensity and assumes RPC port 4028. Compilation instructions are in the top comment.

If anyone finds it useful and profitable, show your appreciation to 1Ls3Ug9V2J83XLsg9EFXgLX7ebSwXc39ix

Share and enjoy and profit!

[EDIT] I forgot to mention, you need netcat(1) to pass the commands to cgminer.
Post
Topic
Board Mining (Altcoins)
Re: Minerd - For QRK and QRK Clones
by
nous
on 29/01/2014, 11:40:57 UTC
A couple of things pop in my mind:

1. The mobo underclocks the CPUs too agressively, look at the "Cool'n'Quiet" BIOS setting (it shouldn't though, given the load). Issuing 'lscpu' on a terminal will show you the current MHz.

2. The memory modules might be too slow. Replace them with a couple from a 'fast' rig to see if it makes any difference.
Post
Topic
Board Trading Discussion
Re: HAL 10K - PHP Open source Trading bot
by
nous
on 17/01/2014, 21:24:18 UTC
I left the bot running for 20 hours, using the settings of woutie70. Here's the data of the last transaction and the accompanying chart. The initial $fake_btc_balance was set to 2.

*** Processing order...array ( 8 )
  ["type"]=> string(3) "ask"
  ["amount"]=> float(1.8646517758757)
  ["price"]=> string(9) "952.99500"
  ["datetime"]=> string(19) "2014-01-12 20:12:07"
  ["prem"]=> string(6) "profit"



The results are not very encouraging, but I'll do another overnight run with the default settings from github and see how it goes. intrd, please push the new chart code to the repo, as pChart isn't very legible after a few hours.

Did you ever perform another overnight run?

As a matter of fact, I've left the bot running since my last post. It started at 2 BTC and again slowly lowered to 1.7 overnight. Now it is at 1.919 but I can't see the graph as I'm running it on an old Pentium 3 and it times-out drawing it.

Anyway, it clearly needs tweaking, but presently I don't have much free time to devote.
Post
Topic
Board Trading Discussion
Re: HAL 10K - PHP Open source Trading bot
by
nous
on 12/01/2014, 21:48:39 UTC
I left the bot running for 20 hours, using the settings of woutie70. Here's the data of the last transaction and the accompanying chart. The initial $fake_btc_balance was set to 2.

*** Processing order...array ( 8 )
  ["type"]=> string(3) "ask"
  ["amount"]=> float(1.8646517758757)
  ["price"]=> string(9) "952.99500"
  ["datetime"]=> string(19) "2014-01-12 20:12:07"
  ["prem"]=> string(6) "profit"



The results are not very encouraging, but I'll do another overnight run with the default settings from github and see how it goes. intrd, please push the new chart code to the repo, as pChart isn't very legible after a few hours.
Post
Topic
Board Trading Discussion
Re: HAL 10K - PHP Open source Trading bot
by
nous
on 11/01/2014, 23:30:48 UTC
First of all, thanks for making this tool open source. I believe that with enough feedback from its users you'll deliver a solid final product. I'm using it right now on linux at paper mode, testing to see how it goes, using the settings woutie70 reported as "perfect".

The least I can do is provide a good start_hal10k.sh for UNIX-like systems:

Code:
#!/bin/sh

#export HTROOT=/srv/http/bitcoin/hal10k

[ $HTROOT ] || { echo "Please, edit $(basename ./$0) and set the correct HTROOT path."; exit 1; }

while true; do
    echo Start time is: $(date)
    cd $HTROOT
    php start.php
done

I'll leave hal10k (what a cool name, BTW) running all night and report back with the results.
Post
Topic
Board Altcoin Discussion
Re: Alpha Technology Viper Scrypt Miner List of Orders
by
nous
on 10/01/2014, 17:18:57 UTC
Has anyone actually contacted Dexcel Designs to confirm their alleged partnership?

Why not just look on their website and see it as news before asking?
Come on people, it is getting crazy with the hate here.

I apologize, you're right. It was the very first article in their scrolling news frame though and I must've missed it.

Anyway, it's not hatred, just plain scepticism. A £405 deposit for the 5 MH/s is not an amount I can really afford to spare in case this thing turns awry.
Post
Topic
Board Altcoin Discussion
Re: Alpha Technology Viper Scrypt Miner List of Orders
by
nous
on 10/01/2014, 09:39:38 UTC
is this your asic seller?

http://www.dailyrecord.co.uk/news/scottish-news/killer-sex-attacker-mohammed-akram-2900333


good luck:
Document: AD01 - Change of registered office address
REGISTERED OFFICE CHANGED ON 29/12/2013 FROM
64 DICKENSON ROAD
MANCHESTER
M14 5HF
Filed on: 29 Dec 2013

these guys are far gone with your money

But, sir, Alpha Technology is located at 66 Dickenson Road! I'm confident you're reaching here Cheesy
Post
Topic
Board Altcoin Discussion
Re: Alpha Technology Viper Scrypt Miner List of Orders
by
nous
on 10/01/2014, 09:28:56 UTC
Has anyone actually contacted Dexcel Designs to confirm their alleged partnership?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN]MouseCoin , mouse is coming. []~( ̄▽ ̄)~* 
by
nous
on 08/01/2014, 23:15:10 UTC
1% premine, eh? 5,000,000,000*1/100=50,000,000

50,000,000 premined mice.


I'll pass. Good luck to all the suckers who'll fall in this mousetcrap.
Post
Topic
Board Altcoin Discussion
Re: [OGC] OnlineGamingCoin is not dead.
by
nous
on 08/01/2014, 21:54:07 UTC
coin is not only utterly useless it's also extremely boring. it's a few days old and you already have to tell people that it's not dead. before you waste your time on creating fantasy business plans: this coin does not have any future. it does not have any usp, has no market and no customer base. it has nothing to offer.

Indeed. 100% correct!!! This coin has no market and no customer base, and this is now what we will change. I've been working on projects with no future at all, with losing money, every kind of projects, and some of them went from almost nothing to something big. A coin is as good as their owners/developers/marketing people.

The start of this coin was not bad, we didn't had any issues. (i was not part of it, but anyway). The issue after the startup is not telling the people/miners/investors what the future will bring, what are you doing to promote your coin... Why is Earthcoin/Dogecoin so good? All marketing... at this moment the coin is worth nothing, so nothing to lose anyway. Only 5 or 6 hours a day that i'll spend on this coin and not doing other things.

That's what happens to aggressively premined cryptocoins.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Catcoin - Scrypt meow!
by
nous
on 07/01/2014, 21:39:12 UTC


Cryptographic
Anonimous
Transactions
It's too serious to say meow.

Think this one more like real coin and more serious. CATcoin doesn't need rebranding, but let this coin be.
(Mars landscape from athlas, earth's position from my head, Earth not up to scale)


Oh-so-cool design. Serious stuff.
Post
Topic
Board Altcoin Discussion
Re: [SHKL][GIVEAWAY] 200 SHKLs to giveaway. GET IN HERE!
by
nous
on 04/01/2014, 12:32:31 UTC
oTo8MGQK5bx1FoQD7nTgnjBYBFRPtctnWN

Cheers.
Post
Topic
Board Altcoin Discussion
Re: [OGC][GIVEAWAY] 10,000 OGC for first 100 to celebrate Coined Up support !!!!!!!!
by
nous
on 04/01/2014, 12:04:03 UTC
Great news!

oTo8MGQK5bx1FoQD7nTgnjBYBFRPtctnWN
Post
Topic
Board Announcements (Altcoins)
Re: [SWAG] Swagcoin | launch delayed | only 10,000 coins!
by
nous
on 02/01/2014, 09:00:41 UTC
这个币什么时候发布?????????

لست متأكدا، ولكن هناك فرصة جيدة.
Post
Topic
Board Altcoin Discussion
Re: [MMC] MemoryCoin 2.0 giveaway
by
nous
on 01/01/2014, 23:44:28 UTC
ML8SWdy3EmgsboTPNUhXjNKrRZoFzxgEcw
Thanks.
Post
Topic
Board Altcoin Discussion
Re: No Joke- Another 10,000 EARTHCOIN (EAC) giveaway!!!
by
nous
on 01/01/2014, 23:43:01 UTC
eh5Joyqkjr9upRz9owXxbZhPoG1RzJdbPy

Appreciate it.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][OGC] *OnlineGamingCoin* LAUNCHED !!! Crypto designed for Online Gaming \o/
by
nous
on 01/01/2014, 18:33:50 UTC
If I launch "SereneCoin" which will promise to soothe rage will you be able to have a pool up and running on it in 15 minutes? I think I'll have the qt wallet play Enya or something.

MWAHAHAHAHAHAHAHAHA!  Cheesy Cheesy Cheesy

You sire just made my day!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][OGC] *OnlineGamingCoin* LAUNCHED !!! Crypto designed for Online Gaming \o/
by
nous
on 01/01/2014, 02:37:24 UTC
Sell 50k OGC for 10 BTC  Roll Eyes Roll Eyes

WTF man, what kind of rig you threw at it?

2mhs  Roll Eyes Roll Eyes

I'd only mined 56 with 0.7 MH/s at ogc.idcray, what gives? Anyway, I'm outta this instamined crapcoin.

WTS 56 OGC, pm w/ offers.

I got 23 coins, and I was here since the launch, and joined active pool the second it active for 1hr and a half mining is not even worth one got 1.5m coins a couple got a dozen of thousands and the rest of us who will promote the coin and provide the hashrate got the shit!, but to catcoin, it was shit at launch but at least no premine or shitty nodes and no working pools at beginning.

I joined the CAT launch at the very beginning and made 300 cats CPU-mining (~ 120 KH/s) in 3 hours, before the diff exploded. Now, with 2 7870s @ 800 KH/s I got the cock.


Post
Topic
Board Announcements (Altcoins)
Re: [ANN][OGC] *OnlineGamingCoin* LAUNCHED !!! Crypto designed for Online Gaming \o/
by
nous
on 01/01/2014, 02:19:53 UTC
Sell 50k OGC for 10 BTC  Roll Eyes Roll Eyes

WTF man, what kind of rig you threw at it?

2mhs  Roll Eyes Roll Eyes

I'd only mined 56 with 0.7 MH/s at ogc.idcray, what gives? Anyway, I'm outta this instamined crapcoin.

WTS 56 OGC, pm w/ offers.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][OGC] *OnlineGamingCoin* LAUNCHED !!! Crypto designed for Online Gaming \o/
by
nous
on 01/01/2014, 02:14:23 UTC
Just saw the instamine code. Dropping out. The dev^Wcloner is a fucking liar.

Oh, wait, I must be politically correct. He's not a liar, he's truth-challenged.