21 Ocak 2009 Çarşamba

CSS: Toggle visibility on hover (with IE6 fix)

CSS: Toggle visibility on hover

As IE 6.0 fix #fix a:hover { zoom: 1; } is added.

7 Ocak 2009 Çarşamba

Getting HTML contents of YUI Rich Editors

//Put the HTML back into the text area 
myEditor.saveHTML(); 

//The var html will now have the contents of the textarea
var html = myEditor.get('element').value;

//We got the contents, if we want format for alert() func:
html = html.replace(/<br>/gi, "<br>\n"); 
alert(html);

6 Ocak 2009 Salı

Çok güzel bir Emacs tutorial - Türkçe

Aycan İrican' dan çok güzel bir Türkçe Emacs tutorial.

http://people.core.gen.tr/~aycan.irican/web/publish/NasilBirEmacs.html

İngilizce tutorial' larda bile bulamayacağınız bilgiler burada gayet güzel bir dille anlatılıyor.

Emacs' ta e-posta, IRC, MSN, fihrist, ielm(REPL buffer for elisp), slime vb kurulup çalıştırılması, örnek bir Lisp Tabanlı Web Uygulama Sunucusu kurulumu, bu sunucuya swank ile uzaktan erişim dahi anlatılmış.

Bu kadar güzel bir dökümanda küçük bir eksik var. Windows kurulumları yok. Çok az Windows kullanıcısı Emacs kullanır ama ben de bunlardan birim :(

5 Ocak 2009 Pazartesi

Regular Expressions in Lisp

  • When POSIX regular expressions module is present, *FEATURES* contains the symbol :REGEXP.
  • When Perl Compatible regular expressions (PCRE) module is present, *FEATURES* contains the symbol :PCRE.