jQuery UI 1.7 Cheatsheet
http://oscarotero.com/jquery/ui.html Read more...
Son zamanlarda Cyber-Protest adlı bir team facebook Gruplarını kekliyor.
Yani buna lamerce kekleme diyelim.
Bir grup'a katılmışım ve o grub'u herhalde hackliyorlar GRUP'un adını "Bu Grup CYBERPROTEST TIM Tarafından Misyon Dahilinde HACKLENMİŞTİR" değiştirmeden önce tüm üyelerine Özel Mesaj atmışlar MEsajın KOnusu "FAcebook Hesaplarını Dondurun" diye Mesajı açtım ve ne göreyim aman allahım M.Ö'ki yöntemleri deniyorlar. Çoookk Utandım Çok :)
Mesajın İçeriği :
Sizi Sinirlendiren Birisimi Var?
Onun Facebook Hesabini Kilitlemek Istiyorsunuz?
Bunun Icin Yapmaniz Gereken Facebook.’unu Actigi Mail Hesabini Programa Girin.
Sonra Freeze Dedikten Sonra Program Ekraninda % Olarak cikiyor.
%100 Olmasini Bekleyin
Bu Islem Maksimum 2 – 3 Dakika Zaman Aliyor.
Tamamen Donduruldugunda Kurbaniniz Facebook Hesabina Girdigi Zaman “Hesabin Icin Izin Verilen Hatali Giris Sinirini Astin.
sifreni Unuttuysan , sifreni Buradan Yenile” seklinde Bilgi Notuyla Karsilasir. Bizzat EditOrlerimiz Tarafindan Test Edilip Onaylanmistir.
Bunu Arkadaslariniza saka seklinde Kullanabilirsiniz..
http://www.facebookdondur.tr.gg/
% 100 Çalışıyor Arkadaşlar Lütfen Şaka Amaçlı Kullanın :)
This article will show you how to order a server-side list of fruit from a database using drag and drop behavior and then save them back to the database in order.
I recently worked on a project which required an unordered list to be re-ordered and then saved. I wasn't about to make users enter numbers next to each item so I looked toward JQuery's UI library.
Objective: We will display a list of fruit. The user can then drag the fruit and click a button to save the new order in the database.
For this example, let's use a database table named fruit with the following fields: id, name, weight.
CREATE TABLE fruit ( id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(64) NOT NULL, weight TINYINT UNSIGNED NOT NULL ) TYPE = MYISAM ; INSERT INTO fruit (name, weight) VALUES ('apple', 1); INSERT INTO fruit (name, weight) VALUES ('pear', 2); INSERT INTO fruit (name, weight) VALUES ('orange', 3);
<ul id="fruit_list"> // query fruit table and print out each item $result = mysql_query("SELECT id, name, weight FROM fruit ORDER BY weight"); // print the list items while ($row = mysql_fetch_assoc($result)) {- \n";
echo "
- "
. $row['name'] ." }
?>
ul>
<form method="POST" action=""> <ul id="fruit_list"> // query fruit table and print out each item $result = mysql_query("SELECT id, name, weight FROM fruit ORDER BY weight"); // print the list items while ($row = mysql_fetch_assoc($result)) { echo '
. $row['id'] .'" />- ';
'. $row['name'] .' }
?>
ul>
form>
// make your db connection up here ... $link = mysql_connect('localhost', 'user', 'pass'); $db = mysql_select_db('dbname', $link); // handle POST if ($_POST) { // use $i to increment the weight $i=1; // loop through post array in the order it was submitted foreach ($_POST['fruit'] as $fruit_id) { // update the row $result = mysql_query("UPDATE fruit SET weight=". $i . " WHERE id=". mysql_real_escape_string($fruit_id)); // increment weight to make the next fruit heavier $i++; } } ?> <script type="text/javascript" src="jquery-1.2.6.js">script> <script type="text/javascript" src="jquery-ui-1.5.1.min.js">script> <script type="text/javascript"> // when the entire document has loaded, run the code inside this function $(document).ready(function(){ // Wow! .. One line of code to make the unordered list drag/sortable! $('#fruit_list').sortable(); }); <form method="POST" action=""> <ul id="fruit_list"> // query fruit table and print out each item $result = mysql_query("SELECT id, name, weight FROM fruit ORDER BY weight"); // print the list items while ($row = mysql_fetch_assoc($result)) { echo '
. $row['id'] .'" />- ';
'. $row['name'] .' }
?>
ul>
<input type="submit" name="reorder" value="Re-Order Fruit" />
form>
Read more...
Pastebin.com süper bir uygulama diyebiliriz. :)
Php , python , vb tüm dilleri hemen hemen destekleyen servistir. Php kodlarınızın kolaylığı için renklendirme yapar , daha iyi anlaşılır.
Kolay Kullanım
Kolay bir kullanımı var mesela örnek : http://pastebin.com/m7a7fba95 burada PHP seçtim ve php kodumu yazdım .
Renklendirmeyle kodum daha iyi anlaşılıyor ve orda sürekli kalıyor lazım ettiğinde direk kullanabilirim .
Kısaltılmış URL Kullaranarak DAHA İyi bir hale getirmişler :)
hade sizde kodlarınızı böyle saklayabilir daha iyi anlaşılması için pastebin.com'u kullana bilirsiniz..
Ceviz'de Gezerken bir Konuda Gördüm Bu Linki Süper Hazırlamışlar herşey Mükemmel. Sizinde İzlemenizi İstedim..Güzel Akıl Yapmışlar Herşey bir birine Uyumlu.n Sonda Yaptıklarıda Güzel olmuş.. Buraya Tıklayın İzleyin.
Read more...