Hi,
I am well aware that I'm not the biggest spender on internet but I think I've spent like a few hundred pounds over the last year only on amazon.
As of today, well goodbye and have fun lickin government ass.
I am sure you've considered your options and decided you'll lose less money by dumping wikileaks and I'm sure it is more beneficial for you. And also people will forget about this soon right?
well, anywho
Thursday, December 2, 2010
Monday, March 29, 2010
Setting ATI fan speed in linux shell script
ok. so you've landed here coz you are already a poor ATI user like me. All you wanted to do was set your fan speed in linux right?
following script uses aticonfig to print ur current GPU temperature and if you supply a parameter it'll set your fan speed.
save these lines to your profile file under
/home/username/.profile
and you can run from any shell window
> fans 70
to set ur fanspeed to 70%
following script uses aticonfig to print ur current GPU temperature and if you supply a parameter it'll set your fan speed.
save these lines to your profile file under
/home/username/.profile
and you can run from any shell window
> fans 70
to set ur fanspeed to 70%
#!/bin/bash
fans() {
if [ $1 ] ; then
aticonfig --adapter=0 --od-gettemperature | tail -n1 | awk '{print "Current temp: " $5}' ;
aticonfig --pplib-cmd "set fanspeed 0 $1" ;
else
aticonfig --adapter=0 --od-gettemperature | tail -n1 | awk '{print "Current temp: " $5}' ;
aticonfig --pplib-cmd "set fanspeed 0 auto" ;
fi
}
Tuesday, February 23, 2010
Fantastic opportunity
I want to,
I really do...
want to say stuff like 'you motherless retarded cunt'
but I won't, comment on this one
I really do...
want to say stuff like 'you motherless retarded cunt'
but I won't, comment on this one
Fantastic opportunity in a market leader company in North West London
CSS, HTML, XML, XSLT, JavaScript, Ajax, Jquery
JSP, PHP, Perl, freemarker
MySql, Sql Server
Adobe Photoshop CS4, Adobe Flash CS4
In addition to the above technical skills the Web Developer should be dedicated, highly motivated with excellent verbal and written communication skills. Experience of E-commerce sites, SEO and accessibility guidelines is also beneficial.
google buzz
dear google buzz...
get the fuck out of my e-mail and give my simple google profile back...
fucking retards, I've never imagined myself looking for a free e-mail provider, but here I am reading even more stupid reviews...
any suggestions?
did not even considered hotmail...
tried AMX, it looks shiny at first glance but has the potential to be as slow as yahoo mail
people say loads of good stuff about AIM Mail and Gawab but got to see touch and feel them first...
anyway
thank you google!
ps. on a second thought afaik yahoo mail has also rss reader right? may be they are not as slow as they used to be?
get the fuck out of my e-mail and give my simple google profile back...
fucking retards, I've never imagined myself looking for a free e-mail provider, but here I am reading even more stupid reviews...
any suggestions?
did not even considered hotmail...
tried AMX, it looks shiny at first glance but has the potential to be as slow as yahoo mail
people say loads of good stuff about AIM Mail and Gawab but got to see touch and feel them first...
anyway
thank you google!
ps. on a second thought afaik yahoo mail has also rss reader right? may be they are not as slow as they used to be?
Thursday, August 13, 2009
recursive svn cleanup!
Did you ever experienced a couple of random directories in your working copy getting locked by svn for no particular reason? And your favorite SVN interface told you 'Directory xxx is locked use svn cleanup'? or for some other reason do you need to run a recursive clean up command?
anywho...
It happened to me more than enough to write a very simple shell script.
save this script with "anyname.sh" and run in like
sh anyname.sh /top/path/to/cleanup
anywho...
It happened to me more than enough to write a very simple shell script.
#!/bin/bash
mysvnclean() {
if [ -d $1 ]; then
for tmpDescendDir in $1/*
do
if [ -d $tmpDescendDir ] && [ $tmpDescendDir != ".svn" ]; then
svnLookupDir="${tmpDescendDir}/.svn"
if [ -d $svnLookupDir ]; then
echo "$tmpDescendDir"
svn cleanup $tmpDescendDir
mysvnclean $tmpDescendDir
fi
fi
done
fi
}
mysvnclean $1
save this script with "anyname.sh" and run in like
sh anyname.sh /top/path/to/cleanup
Friday, July 31, 2009
George Carlin
"Religion has actually convinced people that there`s an invisible man -- living in the sky -- who watches everything you do, every minute of every day. And the invisible man has a special list of ten things he does not want you to do..And if you do any of these ten things, he has a special place, full of fire and smoke and burning and torture and anguish, where he will send you to live and suffer and burn and choke and scream and cry forever and ever `til the end of time! ...But He loves you."
George Carlin
George Carlin
Subscribe to:
Comments (Atom)