Freelancer's Playground! Learn Programming, The Freelancer's Way

26Jan/100

ImageShack Linux Uploader

Has been using imageshack for years, my only complain is the lack of desktop uploader for linux. However, few days ago, when I open up imageshack to upload some images, I stumble upon section called "More Ways to Upload". Curious, I click it and I saw list of 3rd party apps. There's an uploader for linux too!. A great feature that I find useful is, the ability to upload images into our account. So that I can delete some stuff that is no longer required. Oh, did I mention that it came in .deb? YES .DEB!

Filed under: Reviews No Comments
11Jan/100

How To Prevent Someone From Executing xkill

From wikipedia entry:

Xkill is a utility program distributed with the X Window System that instructs the X server to forcefully terminate its connection to a client, thus "killing" the client.

Some one at id-ubuntu mailing list asked how to prevent someone from executing xkill. After reading this, my evil mind popped a solution >:).

My strategy is rather simple, you rename that xkill and move it somewhere else and put a script in place of xkill. Here's the run down:

  1. rename xkill and move it somewhere else: sudo mv /usr/bin/xkill /etc/init.d/llikx_hide
  2. put a script in place of xkill:
    sudo touch /usr/bin/xkill
    sudo chmod 555 /usr/bin/xkill
    sudo nano /usr/bin/xkill
    

    Put this script:

    #!/bin/bash
    
    logger "I'm trying to execute xkill";//logger will automatically save user who execute logger
    zenity --info --text "What are you doing?\nxkill execution is locked and logged\!" --title "Operation failed";
    
  3. There you go. Everytime someone trying to execure xkill, they will see popup window.

Filed under: Tips N Trick No Comments
10Nov/090

Multiple Boot Partition Tips

Yesterday, I had a chance to install ubuntu 9.10 'karmic koala' on my laptop. Having read several online reviews made me rethink my strategy. Previously, whenever there's new ubuntu release, I will always do fresh install. Now, several minor but annoying bug appeared in reviews where I had similar hardware :(. Kind of annoying, but, I'll still try it.

27Oct/092

Flashhole!

Ndak, ini ndak ngejek2 flash kok. Tulisan kali ini, cuman menindak-lanjuti tulisan sebelumnya, tentang cara bodoh mengakali akses website yang di blok.

3May/098

Show/Hide Desktop Icon On Ubuntu

I like things on my laptop to be simple and easily accessible. From time to time, I download stuffs. Some tutorial files, new products to test, deb updates, and several other random stuffs. Most of the time, I just throws this trashes to my desktop to make me easily remember that I have this particular stuff to work with. The other stuffs I throw to my desktop is, ebooks. Most of it is references and cheat-sheet.

23Mar/093

How To Create New MySQL User In Ubuntu

Few days ago I created a tutorial on how to create new database and table in mysql, in ubuntu and using GUI tool. Now, in this tutorial, I'll show you how to create new MySQL user using the same GUI tool.

Filed under: Tutorial Continue reading
18Mar/090

How To Add New Profile In Gnome-Terminal

I got a case where I need to switch between different terminal font-size in many times a day. So, a profile in gnome-terminal is helping me very much. Here how you create a new profile in gnome-terminal:

  1. Fire up your gnome-terminal!
  2. Goto Edit » Profiles...
  3. Click on New and fill in your profile name. Then, select which profile you want to be as base of your new profile.
  4. Click Create.
  5. A new window will appear where you will be able to customize this new profile to your need.
  6. Save it! by clicking on Close.
  7. Now, you can use this new profile by going to menu Terminal » Change Profile » select which profile you want to use.
Filed under: Tips N Trick No Comments
16Mar/095

Cara Bodoh Mengakali Akses Website Yang Di Blok

Disclaimer: Apa yang saya tuliskan disini ditujukan untuk sistem operasi linux dengan distro ubuntu. Jangan tanya cara implementasinya di Windows.

Tip kali ini, kita akan menggunakan dua jalur koneksi internet. Pertama, menggunakan koneksi asli (biasanya sih koneksi kantor ;)) ) yang memblok suatu situs. Kedua, koneksi backup untuk mem-bypass blok suatu situs. Saya sendiri untuk koneksi backup menggunakan telkomsel flash *BE, Kawos!*, karena koneksi kantor lebih cepat ;)).

Filed under: Tutorial Continue reading
6Mar/091

How To Create MySQL Database on Ubuntu

So, you have choose to live with ubuntu. That's great! But you came from windows world where there's so many mysql frontend application in which you are able to create table easily. That's OK, we also have many mysql front-end applications in linux.

Filed under: Tutorial Continue reading
28Feb/091

Dynamic DNS Using No-IP

I got a case where I need to access my laptop at home. I did have a xmpp client active at home that act as chatbot where I can chat with and give it specific command for me to get whatever report I want from my laptop. But, this chatbot is limited in term of funcionality. So, I needed another solution for another problem where my chatbot can't handle it.

Here come the DDNS part. This time, we will use No-IP as our DNS provider. So, how do we use the solution? first, you have to register to the site, activate your account email and login.

Filed under: Tutorial Continue reading