css

Rabu, 28 Agustus 2013

Facebook Album Stealer

This tool will Search for all Albums on User/Page ID you provide and then Give you options to choose which Albums you wanna steal from.
Click here whenever you're ready

Senin, 26 Agustus 2013

Get Long Lived Token

Click Here Whenever You're Ready

As we all know, on December 5, 2012 Facebook has decided to remove the offline_access permission and has introduced a concept called long-lived access tokens which last a maximum of 60 days.

To get Long-lived Access Token from your own Facebook Application, This what you'll need to set up from your App Dashboard:

If you're not sure about this tool result, Use Facebook Developers Access Token Debugger to test token expiry.

Senin, 08 Juli 2013

IDs 9 July 2013

Yang MC BANCI GILA LO !!. Siang Teman Teman sekarang gw mau share IDs 9 JULI 2013. IDs ini buatan saya sendiri Lumayan lah, IDs ini berjumlah 10+ semoga saja masih Work IDs-nya.
  • IDs.

  • MassFollow.
  1. Server A
  2. Server B
  3. Server C
Kalau di massfollow tulisan succes tapi follower tidak bertambah berarti IDs disuspend sementara oleh pihak twitter :P

 Tutorial

  • Buka massfollow
  • copy IDs tadi
  • isikan nama pengguna twitter agan contoh "@EnggarOfficial" tulis nya tanpa "@" jadi "EnggarOfficial".

~ Have a good day :)

Rabu, 19 Juni 2013

Bookmarklets Collection

What are Bookmarklets?

A bookmarklet is a useful bit of javascript code stored in a bookmark, used like a tool on a toolbar. You can click a bookmarklet to do important things like: highlight search terms, look information up, block ads or auto invite all your facebook friend to your group.

Google Chrome.
Press [Ctrl][Shift][B] to bring down your Google Chrome bookmark bar.
Drag-and-drop the bookmarklet links below into your bookmark bar, or Other bookmarks folder.
You are done! Now, when you visit a page, just click on the bookmarklet you want to use.
Firefox.
Press [Ctrl][B] to show your Firefox bookmark panel.
Drag-and-drop the bookmarklet links below into your bookmark bar.
You are done! Now, when you visit a page, just click on the bookmarklet you want to use. Works just like toolbar but without slowing down the browser.
  • Invite All Facebook Friends to a Group ( pure; no gid insertion )
    Drag the bookmarklet link above into your bookmark bar, Go to your Facebook Group page, and then click the bookmarklet to invite all your friends into that group.
  • Index of Folder to URLs
    It will lot more easier to explain this with an example. So try this: Drag the bookmarklet link above into your bookmark bar, Go to Click this link for an example, and then click the bookmarklet. Now you have the full links listed :D you may Select All those links and then upload to your new facebook album using Facebook Photo upFlood :P

Bikin Notif Pengunjung ala Facebook diBlog (versi Google Script)

Udah gak usah dijelasin lagi kali kayanya ya, noh tuh kan contonya (kalo masih) ada dipojok kiri bawah.

Dulu di Blog yang lama juga udah pernah dishare scriptnya kalo gak salah, tapi emang yang itu DataBase untuk penyimpanan data pengunjung-nya masih pake Feed dari Facebook Page, nah kalo yang sekarang udah dipindah pake ScriptDB-nya Google Script.

Sebenernya kalo dibilang beda juga gak jauh-jauh amat kayanya, antara nyimpen sama ngambil datanya juga tetep pake API, cuman emang kalo ScriptDB-nya Google Script gak butuh Access_token, tapi kalo soal privacy data sih tetep aja public open; semua orang bisa access read/write.

Ada beberapa yang masih jadi ganjelan dari Blog Notif yang sekarang ini:
  • Apakah ada/Berapa limit penyimpanan dari ScriptDB ini.
  • Masih suka kepentok masalah Limit Eksekusi Script, jadi kalo pengunjung blognya rame, butuh lebih dari satu ScriptDB.
  • Belum ketemu gimana caranya biar write access ke-ScriptDB hanya bisa dari satu subdomain saja.
Karena disini bukan forum copy-paste, jadi mending kita bahas ditelnya dulu okeh?
udah, okeh aja,, daripada gak dibagi :P

ScriptDb

ScriptDb is a JavaScript Object database for Google Apps Script.

Saving Data

function saveToDB(){
  var db=ScriptDb.getMyDb();
  var whatToSave={
    visitor:{
      id:"4",
      name:"Zuck",
      page_title:"AingCreations",
      page_uri:"http://aingcreations-reborn.blogspot.com/",
      action:"viewed",
      browser:"Firefox 10",
      time:"2013-05-20T17:11:45+0000"
    }
  };
  db.save(whatToSave);
}

Collecting Data

function collectDB(){
  var visitors=[];
  var count=0;
  var limiting=5;

  var db=ScriptDb.getMyDb();
  var whatToCollect={visitor:db.anyValue()};
  var searchOnDB=db.query(whatToCollect);
  while(searchOnDB.hasNext()){
    var fromDB=searchOnDB.next();
    visitors.push(fromDB.visitor);
    count++;
    if(count==limiting){break}
  }

  var Lol="\nFound: "+visitors.length+" Visitors\n"+JSON.stringify(visitors,null,"  ");
  Logger.log(Lol);
}

Modifying Data

function modifDB(){
  var db=ScriptDb.getMyDb();
  var whatToModify={visitor:{id:"4"}};
  var modifPart={
    partName:"time",
    partVal:"2013-06-10T00:00:00+0000"
  }
  var searchOnDB=db.query(whatToModify);
  while(searchOnDB.hasNext()){
    var whatToSave=searchOnDB.next();
    whatToSave.visitor[modifPart.partName]=modifPart.partVal;
    db.save(whatToSave);
  }
}

Deleting Data

function dellDB(){
  var db=ScriptDb.getMyDb();
  var whatToDell={visitor:{id:"4"}};
  var searchOnDB=db.query(whatToDell);
  while(searchOnDB.hasNext()){
    db.remove(searchOnDB.next());
  }
}

ContentService

When a script is published as a web app, the special callback functions doGet() and doPost() are invoked whenever a request is made to the script's URL. The ContentService can be used to return raw textual content. This allows you to write scripts that act as services, responding to GET and POST requests and serving data of various mime-types.

Codes at Google Script

Publishing as a Web App

Testing

Getting visitor facebook ID

The important thing about this Blog Notif is visitor facebook ID. We can get this ID by connecting our blog to facebook or better known as Facebook Connect.

I'm not writing yet about this, but you may still learn it from http://developers.facebook.com/ or you may analyze this blog source script if you want :)

By knowing our visitor facebook ID, then we can fetch more information about our visitor from facebook, such as their profile photo, locale language, gender etc.

Tester HTML File

To learn more about how the script flows, Download this BlogNotifTester.htm file, open/drag and drop into browser new tab, use browser console to monitor the script flow.

~ Have a good day :)