>Ketika X Berkuasa

>Apa bila suatu hari nanti tiada x server maka kita harus beralih ke terminal/konsole, maka harus ada tool/software pendukung yang bisa membantu kita dalam memanage sebuah komputer.

Browser
bisa mencoba : Elinks, Lynx, Links dan w3m.
Email
bisa baca email di layar hitam-putih dengan bantuan Mutt dan Pine, udah support smtp dam imap,pop3.
Chatting
bisa memakai program freetalk,
kalau ingin memakai aim maka pakailah Naim.Naim juga support untuk ICQ dan IRC pakailah IRSSI.
File Management
Untuk file manager pakailah Norton Commander dan Midnight Commander.
Gambar
Siapa bilang layar hitam putih gak bisa lihat gambar. dengan software zgv semua gambar bisa di lihat.
Video
Bisa juga nonton film walaupun di terminal gak usah khawatir Untuk menontonnya kita bisa pakai software vlc dan Mplayer.
Musik
Untuk memainkan musik di terminal/konsole bisa pakai software mocp dan Cplay.

Window Management
Bisa pakai twin untuk memanage window-window yang kita buka

Posted in Uncategorized | Leave a comment

>Emoticons Bergaya Ubuntu Untuk Pidgin

>Kali ini saya akan ngeshare tentang pidgin neh, buat pengguna pidgin mungkin perlu sedikit refreshing dengan emoticon yang ada sekarang. karena sekarang ada emoticon bergaya Ubuntu. pengen nyoba? berikut screenshotnya:

untuk menginstallnya cukup mudah, ikuti langkah-langkah berikut ini:

Download filenya Disini

Kemudian, buka Pidgin >> Tools >> Preferences >> dan select tab “Themes”
Buka folder file hasil downloadan tadi Pidgin_Ubuntu_smileys.tgz kemudian Drag n Drop ke Jendela Theme Pidgin.

Selesai deh, silahkan dinikmati emoticon bergaya Ubuntunya…

Semoga bermanfaat.

Posted in Uncategorized | Leave a comment

>Audio / Video Encoding Guide

>This is a guide on how to encode audio / video in which you will find some tips & tricks for using FFmpeg and other tools.

Video Size and Aspect Ratio

iPhone:

Name Size Aspect
Wide 16:9 480×270 4:3
Old TV 4:3 427×320 16:9
Wide 16:9 /16 480×272 480:272
Old TV 4:3 /16 432×320 432:320

DV NTSC video

Name Size Aspect
Wide 16:9 720×480 16:9
Old TV 4:3 720×480 4:3

Upload to Youtube and Vimeo

Name Size Aspect
SD 4:3 640:480 4:3
HD 16:9 1280×720 16:9

HD, Blu-Ray, AVCHD

Name Size Aspect
720p 1280×720 16:9
1080p/i Anamorphic 1440×1080 16:9
1080p/i 1920×1080 16:9

Frames Per Second

Name Standard Fps FFmpeg
Movies NTSC 23.976 24000/1001
Movies QuickTime N/A 29.976 10000000/417083
TV vídeo NTSC 29.97 30000/1001
Movies PAL 25 25
TV vídeo PAL 30 30

Video encoding with FFmpeg

Config for X264

default fastfirstpass lossless_ultrafast lossless_slower
baseline slowfirstpass lossless_fast lossless_max
normal hq lossless_medium ipod320
main max lossless_slow ipod640
Location of presets in Windows:
C:usrshareffmpeg

Location of presets on Linux:
usrshareffmpeg

High Quality 2 Pass

ffmpeg -y -i INPUT -r 30000/1001 -b 2M -bt 4M -vcodec libx264 -pass 1 -vpre fastfirstpass -an output.mp4ffmpeg -y -i INPUT -r 30000/1001 -b 2M -bt 4M -vcodec libx264 -pass 2 -vpre hq -acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4

iPod iPhone-width 320

ffmpeg -i INPUT -s 320×240 -r 30000/1001 -b 200k -bt 240k -vcodec libx264 -vpre ipod320 -acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4

iPod iPhone-width 640

ffmpeg -i INPUT -s 640×480 -r 30000/1001 -b 200k -bt 240k -vcodec libx264 -vpre ipod640 -acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4

High quality, 2 pass without preconfiguration

ffmpeg -y -i input -r 24000/1001 -b 6144k -bt 8192k -vcodec libx264 -pass 1 -flags +loop -me_method dia -g 250 -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -bf 16 -b_strategy 1 -i_qfactor 0.71 -cmp +chroma -subq 1 -me_range 16 -coder 1 -sc_threshold 40 -flags2 -bpyramid-wpred-mixed_refs-dct8x8+fastpskip -keyint_min 25 -refs 1 -trellis 0 -directpred 1 -partitions -parti8x8-parti4x4-partp8x8-partp4x4-partb8x8-an output.mp4
ffmpeg -y -i input -r 24000/1001 -b 6144k -bt 8192k -vcodec libx264 -pass 2 -flags +loop -me_method umh -g 250 -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -bf 16 -b_strategy 1 -i_qfactor 0.71 -cmp +chroma -subq 8 -me_range 16 -coder 1 -sc_threshold 40 -flags2 +bpyramid+wpred+mixed_refs+dct8x8+fastpskip -keyint_min 25 -refs 4 -trellis 1 -directpred 3 -partitions +parti8x8+parti4x4+partp8x8+partb8x8-acodec libfaac -ac 2 -ar 44100 -ab 128k output.mp4

iPod, iPhone 320 off, without preconfiguration

ffmpeg -i INPUT -s 320×240 -r 30000/1001 -b 200k -bt 240k -vcodec libx264 -coder 0 -bf 0 -flags2 -wpred-dct8x8 -level 13 -maxrate 768k -bufsize 3M-acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4

iPod, iPhone 640 off, without preconfiguration

ffmpeg -i INPUT -s 320×240 -r 30000/1001 -b 200k -bt 240k -vcodec libx264 coder 0 -bf 0 -refs 1 -flags2 -wpred-dct8x8 -level 30 -maxrate 10M -bufsize 10M-acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4

iPod, iPhone, custom 2 pass

ffmpeg -y -i input -r 30000/1001 -s 480×272 -aspect 480:272 -vcodec libx264 -b 512k -bt 1024k -maxrate 4M -flags +loop -cmp +chroma -me_range 16 -g 300 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -rc_eq “blurCplx^(1-qComp)” -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -coder 0 -refs 1 -bufsize 4M -level 21 -partitions parti4x4+partp8x8+partb8x8 -subq 5 -f mp4 -pass 1 -an -title “Title” output.mp4
ffmpeg -y -i input -r 30000/1001 -s 480×272 -aspect 480:272 -vcodec libx264 -b 512k -bt 1024k -maxrate 4M -flags +loop -cmp +chroma -me_range 16 -g 300 keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -rc_eq “blurCplx^(1-qComp)” -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -coder 0 -refs 1 -bufsize 4M -level 21 -partitions parti4x4+partp8x8+partb8x8 -subq 5 -f mp4 -pass 2 -acodec libfaac -ac 2 -ar 44100 -ab 128k -title “Title” output.mp4

DV Video

To DV

ffmpeg -i input -target ntsc-dv -aspect 4:3 -y output.dv

Audio

AAC Stereo High Quality

-acodec libfaac -ac 2 -ar 48000 -ab 192k

AAC Stereo Standard Quality

-acodec libfaac -ac 2 -ar 44100 -ab 128k

High Quality AAC 5.1

-acodec libfaac -ac 6 -ar 48000 -ab 448k

Low Quality AAC 5.1

-acodec libfaac -ac 6 -ar 44100 -ab 224k

AAC AC3 (Recommended: use AviSynth for mapping channel)

ffmpeg -i intput.aac -vn -acodec ac3 -ac 6 -ar 48000 -ab 448k

AC3 to M4V (Mux to be open in another application)

ffmpeg -i input.ac3 -vn -acodec copy output.m4v

AC3 to AAC (does not work as expected)

ffmpeg -i input.ac3 -vn -r 30000/1001 -acodec libfaac -ac 6 -ar 48000 -ab 448k output.aac

Eac3To

AC3 5.1 channel mapping correction

eac3to true_hd.ac3 fixed_true_hd.ac3 -blu-ray -448

AAC to AC3

Open AAC in Audacity or SoundBooth
Export To Wav
Remux the Wav to Wav using FFmpeg:
ffmpeg -i audio.wav –vn -acodec copy audio-out.wav
Convert to AC3 using EAC3to
eac3to.exe audio.wav Main.ac3 -448

Other FFmpeg options

-threads thread count
-y overwrite output files
-ss time_off set the start time offset
-t duration record or transcode “duration” seconds of audio/vídeo
-ildct Interlaced

Windows builds:

http://ffmpeg.arrozcru.com/autobuilds
http://sourceforge.net/project/showfiles.php?group_id=205275&package_id=248632

X264 encoding guide in English by Robert Swain:

http://rob.opendot.cl/index.php/useful-stuff/ffmpeg-x264-encoding-guide

[Credits: Rodrigo Polo]

Posted in Uncategorized | Leave a comment

>MPD INSTALL USER SERVICE UBUNTU

>This guide describes how to install mpd as a user service in ubuntu.
The screenshots are taken on xubuntu jaunty, but should also work on ubuntu intrepid.

Step 1
Install mpd. In a terminal, write the below:
sudo apt-get install mpd

Step 2
By default ubuntu installs mpd as a system service. We don’t want this, so let’s remove it from startup.
If mpd is running stop it first. (not in screenshot)

/etc/init.d/mpd stop

sudo update-rc.d mpd disable

Alternatively you can edit the file /etc/default/mpd as root and set the value of START_MPD to false.

Step 3
Extract and copy the default config file.
gunzip -c /usr/share/doc/mpd/examples/mpd.conf.gz > ~/.mpdconf

Step 4-7
Now we are going to edit the config file
gedit ~/.mpdconf
First we change all paths to point to: ~/.mpd. You need to change the following entries:
music_directory
playlist_directory
db_file
log_file
error_file
pid_file
state_file

This is important, comment the user entry. This is normally used if mpd runs as system service. But we don’t need it now.

If you don’t comment this field, you will get an error trying to run it.

Now we are going to setup an audio_output {} This step is optional, you can also choose to let mpd autodetect.

I setup an pulse output, because this is what ubuntu intrepid uses by default.

Insert in the audio output section the following block

audio_output {
type “pulse”
name “My Pulse Output”
}

Step 8
Create the needed directories.
mkdir ~/.mpd
mkdir ~/.mpd/playlists
If the music_directory you specified does not exist, create that one too. On jaunty ~/Music exists by default.
Step 9
run mpd.
mpd
If everything is ok, it directly detaches itself. (so it looks like it exits)
It might complain that the db_file cannot be found, you can safely ignore this.

Step 10
Run gmpc. As you can see in the below screenshot I do not see any music. This is because I have no music in my music directory.

Step 11-13
Add music to the music directory and tell mpd to update its database.

Step 14
Gmpc should tell you when mpd finished updating its database. You will then see the music in the file browser.

Step 15
Add the music and press play.

Step 16
Listen to your music.

Step 17 (optional)
You most likely want to have mpd started automatically when logging into your desktop.
How this is done depends on the desktop you run.

On gnome you can add it using the session manager. (System -> Preferences -> Sessions -> Startup Programs -> Add)

A new system to have this consitent between desktops, is to create an autostart file in ~/.config/autostart/.

In the screenshot below is an example.

[Desktop Entry]
Encoding=UTF-8
Version=0.9.4
Type=Application
Name=Music Player Daemon
Comment=
Exec=mpd
StartupNotify=false
Terminal=false
Hidden=false

Posted in Uncategorized | Leave a comment

>How to customize the clock applet in Ubuntu

>If you’re bored with the look of the default date and time applet in Ubuntu why not jazz it up with one of the following themes?

Instructions on how to do are at the bottom but first the eye-candy!

Stacked

http://pastebin.com/eZx6L1QX

Just time

http://pastebin.com/PeMrrnWW

OS X Style

http://pastebin.com/R0cEP5HK

Posted in Uncategorized | Leave a comment

>How To Replace The MeMenu Username with Actual Name

>

MeMenu is applet in panel thats allow you to set online status and post updates to Twitter, Facebook…
By default it show username on panel.

To change it to show you name go to terminal and type:

gconftool -s /system/indicator/me/display –type int 2

To remove MeMenu and leave only session manager type

gconftool -s /system/indicator/me/display –type int 0

To restore to default type:

gconftool -s /system/indicator/me/display –type int 1


Posted in Uncategorized | Leave a comment

>Nine Type Intelligence

>

The Nine Types of Intelligence

By Howard Gardner
1. Naturalist Intelligence (“Nature Smart”)
Designates the human ability to discriminate among living things (plants, animals) as well as sensitivity to other features of the natural world (clouds, rock configurations). This ability was clearly of value in our evolutionary past as hunters, gatherers, and farmers; it continues to be central in such roles as botanist or chef.  It is also speculated that much of our consumer society exploits the naturalist intelligences, which can be mobilized in the discrimination among cars, sneakers, kinds of makeup, and the like. 
2. Musical Intelligence (“Musical Smart”)
Musical intelligence is the capacity to discern pitch, rhythm, timbre, and tone.  This intelligence enables us to recognize, create, reproduce, and reflect on music, as demonstrated by composers, conductors, musicians, vocalist, and sensitive listeners.  Interestingly, there is often an affective connection between music and the emotions; and mathematical and musical intelligences may share common thinking processes.  Young adults with this kind of intelligence are usually singing or drumming to themselves.  They are usually quite aware of sounds others may miss.
3. Logical-Mathematical Intelligence (Number/Reasoning Smart)
Logical-mathematical intelligence is the ability to calculate, quantify, consider propositions and hypotheses, and carry out complete mathematical operations.  It enables us to perceive relationships and connections and to use abstract, symbolic thought; sequential reasoning skills; and inductive and deductive thinking patterns.  Logical intelligence is usually well developed in mathematicians, scientists, and detectives.  Young adults with lots of logical intelligence are interested in patterns, categories, and relationships.  They are drawn to arithmetic problems, strategy games and experiments.

4. Existential Intelligence

Sensitivity and capacity to tackle deep questions about human existence, such as the meaning of life, why do we die, and how did we get here.
5. Interpersonal Intelligence (People Smart”)
Interpersonal intelligence is the ability to understand and interact effectively with others.  It involves effective verbal and nonverbal communication, the ability to note distinctions among others, sensitivity to the moods and temperaments of others, and the ability to entertain multiple perspectives.  Teachers, social workers, actors, and politicians all exhibit interpersonal intelligence.  Young adults with this kind of intelligence are leaders among their peers, are good at communicating, and seem to understand others’ feelings and motives.
6. Bodily-Kinesthetic Intelligence (“Body Smart”)
Bodily kinesthetic intelligence is the capacity to manipulate objects and use a variety of physical skills.  This intelligence also involves a sense of timing and the perfection of skills through mind–body union.  Athletes, dancers, surgeons, and craftspeople exhibit well-developed bodily kinesthetic intelligence.
7. Linguistic Intelligence (Word Smart)
Linguistic intelligence is the ability to think in words and to use language to express and appreciate complex meanings.  Linguistic intelligence allows us to understand the order and meaning of words and to apply meta-linguistic skills to reflect on our use of language.  Linguistic intelligence is the most widely shared human competence and is evident in poets, novelists, journalists, and effective public speakers.  Young adults with this kind of intelligence enjoy writing, reading, telling stories or doing crossword puzzles.
8. Intra-personal Intelligence (Self Smart”)
Intra-personal intelligence is the capacity to understand oneself and one’s thoughts and feelings, and to use such knowledge in planning and directioning one’s life.  Intra-personal intelligence involves not only an appreciation of the self, but also of the human condition.  It is evident in psychologist, spiritual leaders, and philosophers.  These young adults may be shy.  They are very aware of their own feelings and are self-motivated.
9. Spatial Intelligence (“Picture Smart”)
Spatial intelligence is the ability to think in three dimensions.  Core capacities include mental imagery, spatial reasoning, image manipulation, graphic and artistic skills, and an active imagination.  Sailors, pilots, sculptors, painters, and architects all exhibit spatial intelligence.  Young adults with this kind of intelligence may be fascinated with mazes or jigsaw puzzles, or spend free time drawing or daydreaming.
Posted in Uncategorized | Leave a comment

>Pekerjaan Hari Pertama (Live In)

>Haha… Mari qt review pkerjaan qt hari ini… (kemarin mksudny, postny kluapaan)

D post sbelumny saya sudah share saya mandi… Haha, stelah mandi… Sampai d rmah pam0ng tw2 sudah ada tempe goreng dan tahu goreng… Lalu qt mkan deh, stelah mkan… Saya nunggu bapa pam0ng… Bapa pam0ng lg k tempat trnak… Oh y nama bapa pam0ngny 'ii' haha…

Nama ibuny lupa -_-"

hehe… Nunggui ckup lama, sampai bnun… Apa yg mw d krjakan y???

Lalu bapa sampai deh… Pas qt mkan nasi, lalu bapa pam0ng mkan…

Qt lsg maju k ladang… Hehe, d ladang bkanny krja dlu bru mkan mlah mkan dlu bru krja… Qt mkan Kelapa Muda cuy, hahaha… Saat it ktemu dngan defa, hdra, jfree…

Wkwk… Kluar istilah krja knd0r mkan kuat… Haha…

Lalu krja dah, saya dan teman srumah saya mnyiram tnaman… 1lubang sdikit2, 10bnjar kynya… 1bnjar 10lubang… Hoho….

:-)biz ituw ibu pam0ng pulang, bapa pam0ng krja tebas rmput… 😀 bleh2… Mantap2…

Pro bnget pk aritny, saya gag nyoba… Tkut k tebas hoho…

Lalu pulang, trz cuci baju deh… Biz ituw qt tempat meyke dan karina, hoho… Rusuhin mkanan 2toples habiz, haha… Stelah it qt k ladang lg, d suruh mmbuat lubang untuk dtanami lobis, tusuk2 trz… Hoho… Paz mw pulang dio, mncoba mmetik kelapa, ph0nny emg pndek dan yg d ambil it satu daun gt, skitar 7bh hoho, lalu lsg kumpul… Wkwk… Stelah kumpul briefing utk GP dan Boro, jg baksos lsg deh bw t kelapa k hm pam0ngny meyke dan karina, buka smua… Kelapa yg dio ambil isiny 3 kering… Hoho… Untung d karina ada 4… Hoho, msukin smua k teko…

D oplos deh marimas jeruk ponti 2, pop drink jruk 2, marimas lemon 1… Hoho, hasilny? Muantap manisny… Wkwkwk…

Lalu tmenin di0 deh jalan2, mnta duit… Preman mode on… Wkwk… Dan ad hal2 yg gag enak… Wkwk, mantap dah…

Lalu mandi, mkan istirahat jam 9 tdur deh

Posted in Uncategorized | Leave a comment

>Mandi (Live In)

>Wkawkawkaw… 1jam yg lalu saya mandi…

Nah kn sebelumny saya mandi d pinggir jalan gt toiletny… Tp td ktemu sama GV d jalan, haha… Ktemu sama pam0ngny, lalu pam0ngny blg "lg d pkai tuh toiletny….'' trus d tunjukin deh tempat mandi… Trun k sungai…

😀 haha, trun sungai blok knan d sisi knan…

Haha… Biz it dio dlu mandi, hoho… Tdak lama stelah it ada org lewat…

Dio lg bugil OmG… Hoho… Tp saya pr2 gtw ah… Dio brkata 'widih mantep sh0werny ga usa d matiin' hahaha…

Gliran aku mandi… Bet3x lsg bugil aja aku… Mandi dah, seger airny… Eh ada org lewat, aku ya manggut2 aja… Akakaka, anggap aj lg pk bju… 😀 pdahal lg bugil erotis…

Haha… Spertiny it air yg alirkan lewat pipa dr sela2 bbatuan… Hehe… Ser2x… Y bgitulah pngalaman saya…

Posted in Uncategorized | Leave a comment

>Pagi2 di Sawangan (Live In)

>Di pagi2 saya trbngun pkul 05.12…

Hahaha… Pas bngn telapak kaki saya dngin, hoho… Tp saya trpaksa bngn… Hoho, kn malu kalau bngn siang2…

Trz k sungai utk kncing haha… Pas naik lg, brr… Kerasa dinginny cuy

Posted in Uncategorized | Leave a comment