9 Nisan 2013
How to install WhatsApp on my desktop ?
As the date of this writing, WhatsApp is only available for mobile devices.
19 Kasım 2009
Clear Printer Spooler
Try this steps ;
1-) Start - Run - Cmd (this command show you the ms-dos command line)
2-) NET STOP SPOOLER
4-) CD \WINDOWS\SYSTEM32\SPOOL\PRINTERS
5-) DEL. (type y)
6-) NET START SPOOLER
1-) Start - Run - Cmd (this command show you the ms-dos command line)
2-) NET STOP SPOOLER
4-) CD \WINDOWS\SYSTEM32\SPOOL\PRINTERS
5-) DEL. (type y)
6-) NET START SPOOLER
16 Eylül 2009
jQuery Glimmer Freestyle Animation Plugin
Use Glimmer to move items around and be interactive on click, hover, load, ... the sky's really the limit!
http://visitmix.com/labs/glimmer/samples/freestyle.html
http://visitmix.com/labs/glimmer/samples/freestyle.html
15 Eylül 2009
jQuery Gmail Facebook Style Chat Plugin
jQuery blockUI Plugin
http://malsup.com/jquery/block/
The jQuery BlockUI Plugin lets you simulate synchronous behavior when using
AJAX, without locking the browser[1]. When activated, it will prevent user
activity with the page (or part of the page) until it is deactivated.
BlockUI adds elements to the DOM to give it both the appearance and behavior
of blocking user interaction.
The jQuery BlockUI Plugin lets you simulate synchronous behavior when using
AJAX, without locking the browser[1]. When activated, it will prevent user
activity with the page (or part of the page) until it is deactivated.
BlockUI adds elements to the DOM to give it both the appearance and behavior
of blocking user interaction.
jQuery reel Plugin
http://www.vostrel.cz/jquery/reel/#demo
Reel is a jQuery plugin which takes an image tag and makes it a live
"projection" of pre-built animation frames sequence. Its aim is to provide a
360° view of something or someplace. Great alternative to widely used Flash
techniques.
Reel is a jQuery plugin which takes an image tag and makes it a live
"projection" of pre-built animation frames sequence. Its aim is to provide a
360° view of something or someplace. Great alternative to widely used Flash
techniques.
jQuery jGrowl Plugin
Ekranda kendiliginden kapanan bilgilendirme kutucuklari aciyor.
http://www.stanlemon.net/projects/jgrowl.html#samples
http://www.stanlemon.net/projects/jgrowl.html#samples
jQuery to-Top Plugin
Sayfada asagi dogru inildikce, yukari cikmak icin bir buton olusturuyor.
http://lab.mattvarone.com/projects/jquery/totop/
http://lab.mattvarone.com/projects/jquery/totop/
jQuery Before/After Plugin
Bir nesnenin önceki ve sonraki halini, resimlerini üst-üste koyarak dramatik
bir biçimde göstermek için yapılmış jQuery eklentisi.
http://www.catchmyfame.com/2009/06/25/jquery-beforeafter-plugin/
bir biçimde göstermek için yapılmış jQuery eklentisi.
http://www.catchmyfame.com/2009/06/25/jquery-beforeafter-plugin/
28 Mart 2008
4 Aralık 2007
Intersystems Cache - Collections (list)
Collection bir elemana ait bir grup veriyi saklamak için kullanılır. Bu veriler herhangi bir tipte olabilir. Cachede iki çeşit collection vardır. Array ve list collectionlar.
List tipindeki collectionun tanımlaması ;
Property renkler As %String[collection=list]
Burada renkler adında string tipinde bir property tanımlanıyor. Ayrıca bunun list tipinde bir collection olarak tutulacağı belirtiliyor.
Classtaki bir elemanın renkler collectionuna veri eklemek için aşağıdaki komut kullanılır.
D ZOBJ.renkler.Insert("kırmızı")
Elemana ait collectiondaki bilgileri okumak için aşağıdaki döngü kullanılabilir.
F Z=1:1:ZOBJ.renkler.Count() W !,ZOBJ.renkler.GetAt(Z)
List tipindeki collectionun tanımlaması ;
Property renkler As %String[collection=list]
Burada renkler adında string tipinde bir property tanımlanıyor. Ayrıca bunun list tipinde bir collection olarak tutulacağı belirtiliyor.
Classtaki bir elemanın renkler collectionuna veri eklemek için aşağıdaki komut kullanılır.
D ZOBJ.renkler.Insert("kırmızı")
Elemana ait collectiondaki bilgileri okumak için aşağıdaki döngü kullanılabilir.
F Z=1:1:ZOBJ.renkler.Count() W !,ZOBJ.renkler.GetAt(Z)
2 Ekim 2007
Javascript ve Json İle Veri İşleme
Json son günlerde oldukça popüler olmaya başlayan bir veri aktarma standardı. Aslında tüm gücünü javascriptten alıyor. Eğer javascript deneyiminiz varsa hiç yabancılık çekmeyeceksiniz. Fakat şimdiden söyleyeyim XML in yerini almasını beklemeyin ama çoğu işinizi kolaylaştıracağı kesin. Json hakkında daha detaylı Türkçe bilgi için tıklayınız.
// İşlemek istediğim veri.
var zogrenciler='[{numara:1,adi:"Ali",yas:function(){return 20;}},{numara:2,adi:"Ayse",yas:function(){return 19;}},{numara:3,adi:"Veli",yas:function(){return 20;}}]';
// Json veriyi parse ediyor.
var zjson = eval ("(" + zogrenciler + ")" );
var zhtml="";
// Jsondaki her bir elemandan geciyor.
for(var i = 0;i<zjson.length;i++){
// Her bir elemana ait bilgileri liste oluşturmak için kullanıyor.
zhtml+="<li>"+zjson[i].adi+" ("+zjson[i].numara+")("+zjson[i].yas()+" yasinda)";
}
// Çıktıyı oluşturuyor. self.document.getElementById("ogrenciler").innerHTML="<ul>"+ zhtml + "</ul>";
Kaydol:
Kayıtlar (Atom)