Skip to content

Instantly share code, notes, and snippets.

View shstkvch's full-sized avatar

shstkvch shstkvch

View GitHub Profile
@shstkvch
shstkvch / fbscripting.js
Created April 22, 2012 18:43
Facebook Scripting Concept
// Facebook User Scripting
// A (conceptual) scripting interface for Facebook (by David Hewitson, if it matters.)
var people_who_think_i_rock = 0;
me.onWallPost(function(post) {
// someone's posted on my wall!
if(post.message == 'You rock!') {
// someone thinks I rock!
post.like(); // like the post
@shstkvch
shstkvch / test.html
Created May 22, 2011 00:59
Test Gist
<! DOCTYPE HTML>
<html>
<head>
<title>Test Gist</title>
</head>
<body>
<h1>Just a test.</h1>
</body>
</html>