solution
How to disable Skype Home popup?
by d2 on Sep.05, 2011, under solution
Download older version of skype: http://download.skype.com/msi/SkypeSetup_5.3.0.120.msi Uninstall your current Skype Navigate to c:\Users\<YOUR_USERNAME>\AppData\Roaming\Skype\ Delete shared_dynco and shared_httpfe folders create files called shared_httpfe and shared_dynco (FILES not FOLDERS!) Install Skype 5.3 That’s it. No more annoying popups from Skype. Well, at least for now…
Problem solving flowsheet
by d2 on Mar.09, 2011, under solution
For those who can’t solve some particular tasks….
how to change nginx server string?
by d2 on Jul.06, 2010, under bash, code, solution
If you want to hide web server string which is shown each time you perform request, this might be howto for you ;) Usual nginx response looks like that: HTTP/1.1 200 OK Date: Tue, 06 Jul 2010 08:14:19 GMT Server: nginx/0.7.67 To get rid of it you need to get source code, change it and [...]
calculating md5 sum under bash
by d2 on Jun.14, 2010, under bug, solution
Recently I wrote short bash script to check files integrity inside directory and saw that all sums were wrong :) This couldn’t be a coincidence, so I decided to check with other tools. Well, this is what I found: $ php -r “echo md5(‘test1234′);” 16d7a4fca7442dda3ad93c9a726597e4 echo test1234|md5sum|awk ‘{print $1}’ eddc02b200ae8a15a7e6b44ac05bf5f1 Reason? Pretty simple. I used [...]
Apache2 [emerg] (28)No space left on device: Couldn’t create accept lock
by d2 on Jun.10, 2010, under solution
When restarting Apache2 it’s possible to hit this error which reveals only in error.log. From console’s point of view, restart/start/stop looks OK, but Apache2 won’t come up ad won’t bind to any port. First check if you have enough space (# df -h) and then study logs and strace output: # tail -10 f /var/log/apache2/error.log [...]
SSH (no key forwarding)
by d2 on Jun.02, 2010, under solution
This sometimes happens on Linux. You are expecting private key to be forwarded to remote host, but it’s not. Root cause here is key-agent which for gnome might be ssh-agent. It sometimes dies for no reason but resides in system as zombie process. You can “kill” zombie process, but 99,9% you will fail :) Anyways, [...]