Batch images resizer for MacOS using Automator
Want to resize your images without any extra software installed on your Mac? Then this post is for you, we are using existing application named Automator to do the work for...
Connection reset by peer SSH error
Just a quick note to solve my problem with SSH, I can connect to my remote server OK with Putty or Bitvise SSH but not with Cywin or Babun SSH command...
How to install Python 2.7 on BlueHost in 4 steps
1. DOWNLOAD
wget http://www.python.org/ftp/python/2.7.2/Python-2.7.2.tgz
tar zxvf Python-2.7.2.tgz
2. INSTALL
cd Python-2.7.2
./configure –prefix=/home/<your account>/opt/python272 --enable-unicode=ucs4
make
make install
3. TEST
Now try to run:
/home/<your account>/opt/python272/bin/python
4. MAKE IT YOUR DEFAULT PYTHON
$vim ~/.bashrc
add the following line
export PATH=/home/<your account>/opt/python272/bin:$PATH
reload the session
$source ~/.bashrc
How to calculate MD5 in Linux
Well, there are many ways to calculate MD5 hash of a string, in this post, I show you 3 command line that you can find them handy to get MD5 hash...
Allow MySQL remote connection in Slackware
Okay, after along time working on Mac, today I opened up one of my old project on a Slackware server. And one of the thing I want to do is connect...
Google Chrome on Slackware 13.37 Install Error
The problem
Today I tried out Google Chrome on my Slackware 13.37 box, but it’s not that easy to start. I had a problem here
/usr/bin/google-chrome: error while loading shared libraries: libpam.so.0:
cannot open...
Display application’s path of running process in Windows
Normally you use Task Manager to see which processes are running, but from that you don’t know which application they belong to. Luckily, with these simple commandlines, you can easily see...
Navicat – Error 2006 MySQL server has gone away
When trying to restore a backup from Navicat, I got the Error 2006 which said that MySQL server has gone away. Looking around and I figured out that it’s because of...
Upgrade to Domino 8.5.3 crashed on Windows Server 2008 R2 64bits
Today I tried to upgrade from Domino 8.5 to Domino 8.5.3 on my Windows Server 2008 R2 64 bits box
Running lotus_domino853_w64_en.exe without any problem.
Trying to launch Domino Server =>...
How to delete Sphinx Search Service in Wind
1. DELETE Sphinx Search Service in Windows
C:sphinxbinsearchd –delete
If you installed with –servicename (e.g: SphinxSearch) then remove it with
C:sphinxbinsearchd –delete –servicename SphinxSearch
2. REINSTALL Sphinx Search Service in Windows
C:sphinxbinsearchd –install –config C:sphinxbinsphinx.conf –servicename...