May 2012
1 post
May 9th
April 2012
1 post
1 tag
EVE Loot History Analyzer
If you’re mining or looting much in EVE Online, you should use functionality of fleet’s loot history. But how to control analyze it? Yes! There is a tool Loot History Analyzer that help you analyze & view in better structure it. Some features, like ore filtering and members ignore are available only for registered users, which still requires full API Access. But if you...
Apr 3rd
March 2012
13 posts
Mar 29th
Mar 28th
3 tags
Mar 23rd
Mar 23rd
Mar 22nd
3 tags
Mar 22nd
Photoshop CS6 Beta Released for Free!
Yup, it was released, and after watches “6 features” video, it worth time to test ;) Watch it now: And if you want to get it, there are links: Download for Mac (direct link, 984MB) Download for Windows (direct link, 1.7GB) P.S. Did it eaten After Effects & InDesign?
Mar 22nd
How to cut your posts at tumblr / generate "read...
Found blog post in google and same in FAQ of tumblr, but it said this feature will work only in WYSIWYG editor. Btw, Markdown editor supports it too, just use: <!-- more -->
Mar 22nd
Mar 21st
143 notes
3 tags
Mar 21st
4 tags
Word Squared Solver on GitHub! →
First commit! :)
Mar 20th
Anonymous asked: Is your bot hosted somewhere so I can fork it ? :)
Mar 20th
Anonymous asked: just curious, are you going to release the code for wordsquared solver?
Mar 20th
February 2012
1 post
Set windows hardware time to UTC
If you dual booting between Mac / Linux and Windons, you’re noticed that your time always fucked up. To fix that, you should set Windows OS to treat BIOS time as UTC. And here is how to do that: Open Notepad Paste this: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation] "RealTimeIsUniversal"=dword:00000001 Save as...
Feb 8th
January 2012
1 post
4 tags
WordSquared bot
Looks like i wrote a good enough bot for http://wordsquared.com/ Version 0.1b at youtube: http://www.youtube.com/watch?v=NilCjtRIvng It was more laggy, than current :) As below log shows, its completing words with 2-4w per 1s, but this affected only by my current internet connection. Later i’ll move it to dedicated server in hetzner.de to test European’s speed. P.S. from 3k...
Jan 15th
15 notes
November 2011
4 posts
Nov 18th
Nov 11th
Nov 10th
12 notes
3 tags
How to Run SSD's TRIM on a Mac
To force cleaning of unused blocks, boot in Single-User Mode: Chameleon's flag: -s Original mac: Hold ⌘+s When you see command prompt, write this: fsck -fy && mount -uw / && exit After process finished, your Mac will be booted with TRIMed blocks ;)
Nov 5th
21 notes
October 2011
5 posts
Oct 30th
1 tag
Bug with Chameleon, affects performance of nVidia...
Found that newest Chameleon(that support FaceTime fix) lowers performance of GTX 470GT 1280 (i think all nvidia’s) to about 20% of total. For example, My normal Minecraft’s FPS around 300, with newest Chameleon i got about 34. Fix Just add to Boot Flags in org.chameleon.Boot.plist: SkipFTFix=Yes
Oct 8th
2 notes
Oct 5th
2 tags
Oct 4th
6,096 notes
Playing with Ruby + Processing + Audio
Don’t really know, what i wrote… but this thing can react on audio beats ))) and you can specify channels to visualize(circle). Controls: “a”, “s” — sets minimum & maximum samples to display as circle “d” — output current min & max “x” — exit xD And don’t forget to put sound.mp3 near .rb file You need...
Oct 1st
September 2011
12 posts
Transfering mysql database from another server to...
Very often i’m in need of moving external database to my own pc, bored of ssh + mysqldump + tar -zcf + scp + mysql < file And here goes, oneliner: ssh user@server 'mysqldump -uUSER -pPASSWORD DATABASE_NAME | gzip' | gunzip | mysql5 -uUSER -pPASSWORD DATABASE_NAME
Sep 30th
Samsung ISN'T copying Apple!!! Trust me!
There goes just 2 images, why Samsung is 100% different from Apple.
Sep 30th
Sep 26th
2 tags
Power of Zen Coding
I found interest plugin for most IDEs (and for textmate too), named Zen Coding. It lets you take advantage of writing html as css selectors. As example: a.no-trans[href="#"]>img.bordered will be converted to <a class="no-trans" href="#"><img class="bordered" src="" alt="" /></a> And, if you wish something harder… looks at...
Sep 24th
17 notes
Sep 14th
Anonymous asked: Why are you writing a bot for Dofus?

I'm not like, OMFG STOP BOTTIN MY PRECIOUS GAYME I'm just genuinely curious D:
Sep 11th
Anonymous asked: share
Sep 11th
mineshaft82 asked: I love your site!!!! I am currently trying to teach myself Ruby at the moment! Any tips? How would i get started doing GUI with Ruby???
Sep 11th
Anonymous asked: why you hacked vbulletin site?
Sep 11th
Anonymous asked: where is the forum??
Sep 11th
Anonymous asked: nice hacking!!!
Sep 11th
Anonymous asked: Речь идет о 1м дофусе, или о 2м?
Писал много под первый, правда давно это было.

С интересом взглянул бы на распаковку/расшифровку карт - ибо на тот момент не осилил.
kcop@mail.ru
ICQ 48313937
Sep 11th
August 2011
4 posts
1 tag
Aug 24th
Aug 19th
Aug 7th
Aug 6th
July 2011
13 posts
Jul 24th
1,647 notes
2 tags
Jul 21st
9 notes
Harry Potter and Deathly Hallows: Part II
Just watched it: + Many effects + Many battles - No idea / sense of scenario at all Congratz! End of Harry Potter is here!
Jul 20th
1 tag
Jul 16th
1 note
1 tag
Jul 16th
1 note
3 tags
MovementRequestMessage -> AutoBan for 2 hours
Generally, if you want move using packets, u will notice, that without MovementCompleteMessage, after re-login, you’ll be teleported back to start position. And 2nd “thing”, after MovementRequestMessage, without sending MovementCompleteMessage, you can’t move anymore xD Fix… send MovementCompleteMessage… but if u send it too fast, after 20-30 steps u will be...
Jul 16th
9 notes
3 tags
Jul 15th
3 tags
Ruby & Binary data... My way of parsing:
Wrote class, that help me reading binary data: Usage "\x11\x5f\x14".log # show hexdump "\x40\x40".readShort # & etc Code module NetString LITTLE_ENDIAN = 1 BIG_ENDIAN = 2 SYS_ENDIAN = ([42].pack('i')[0].ord == 42) ? LITTLE_ENDIAN : BIG_ENDIAN def endian #@endian = SYS_ENDIAN if @endian.nil? @endian = BIG_ENDIAN if @endian.nil? @endian end def endianess=(endian) ...
Jul 14th
2 notes