How to setup Aptana using Git on bitbucket.org in Windows

How to setup Aptana using Git on bitbucket.org in Windows

  1. in Aptana, install EGit from http://download.eclipse.org/egit/updates
  2. install official git for Windows from http://msysgit.googlecode.com/files/Git-1.7.8-preview20111206.exe
  3. log in to Git Bash from start menu
  4. in Git Bash, change to directory .ssh ; cd ~/.ssh
  5. in Git Bash, create new ssh key ; ssh-keygen -t rsa -C "yourcomment"
  6. in Git Bash, add bitbucket.org to your know hosts ; ssh bitbucket.org ; ignore permission denied message, its just trick to add bitbucket.org to known_hosts
  7. in bitbucket.org, copy public key from inside id_rsa.pub to your bitbucket.org account, from menu Account settings -> SSH keys
  8. in Aptana, change SSH2 home to C:\Users\yourwindowsuser\.ssh
  9. done

Comments

Text Blinking in all browser use jquery

teks kedap-kedip kompatibel dengan seluruh browser, pake jquery

<style>
.ngeblink {
	font-weight: bold;
	/*text-decoration: blink;*/
	color: #0000A0;
}
</style>

<script type="text/javascript">
function blink() {
$(".ngeblink")
.fadeTo(400, 0)
.fadeTo(400, 1, function(){blink()});
}
$(function(){
blink();
});
</script>
<span class="ngeblink">in progress</span>

Comments

Materi Kuliah Jaringan Komputer 2011/2012

Materi Kuliah Jaringan Komputer 2011/2012 untuk Jurusan Teknik Informatika Fakultas Teknologi Industri Universitas Islam Indonesia

Silahkan download :

Comments

Dell Inspiron 910 Resolution Problem

Punya masalah resolusi dengan dell inspiron 910 (Dell Inspiron Mini 9)

masalahnya : resolusi monitor selalu balik ke 800x600 setelah restart, windows xp, bios A00

bisa sembuh kalau upgrade bios, sayangnya kok error flashing new bios

Comments

Upload Attachment K2 jadi txt ? Ini dia hacknya

Buka file administrator/componets/com_k2/lib/class.upload.php

cari line 2505 isinya :

$this->file_src_mime = mime_content_type($this->file_src_pathname);

ganti dengan :

$this->file_src_mime = mime_content_type($this->file_src_name);

Comments

« Previous entries