Skip to content

Instantly share code, notes, and snippets.

View sjoonk's full-sized avatar

Sukjoon Kim sjoonk

View GitHub Profile
@sjoonk
sjoonk / fan_event.html
Created November 28, 2011 08:47
Facebook Page Tab template
<!doctype html>
<html xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<meta charset="utf-8">
<title>Fan Event</title>
<script src="http://code.jquery.com/jquery-1.6.2.min.js" type="text/javascript"></script>
</head>
<body>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/ko_KR/all.js"></script>
@sjoonk
sjoonk / aws-facebook-php.template
Created November 23, 2011 06:30
AWS Facebook PHP template
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Launch your Facebook applications within minutes. This template will create a Facebook Stack and configure a social file sharing sample application that upload files to Amazon S3 and notifies your friends by posting it on your wall. **WARNING** This template takes advantage of the AWS Free Usage Tier and if you are eligible since it creates one or more Amazon EC2 instances and a Elastic Load balancer. You will be billed for the AWS resources used.",
"Parameters": {
"AppURL": {
"Default": "http://aws-facebook.s3.amazonaws.com/aws-facebook-php-v2.tar.gz",
"Description": "URL of the application to be deployed",
"Type": "String"
@sjoonk
sjoonk / gist:1357064
Created November 11, 2011 02:59
Hello World Gadget
<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="HelloWorld">
<Require feature="opensocial-0.9"/>
</ModulePrefs>
<Content type="html">
<![CDATA[
Hello World!
]]>
</Content>
@sjoonk
sjoonk / gist:1199582
Created September 7, 2011 02:16
A Rails 3.1 template for adding the Backbone.js skeleton structure
inside('app/assets/javascripts') do
run "mkdir models"
run "mkdir views"
run "mkdir routes"
run "touch app.js"
end
@sjoonk
sjoonk / gist:1099227
Created July 22, 2011 10:42
Facebook OpenGraph Integration with WordPress
<meta property="og:title" content="기업용으로 활용가능한 오픈소스 SNS 솔루션들" />
<meta property="og:site_name" content="유스풀패러다임" />
<meta property="og:description" content="시중에 출시되어 있는 많은 소셜 네트워킹(SNS) 솔루션들 중 기업이나 공공기관, 학교, 비영리단체 등 조직 내부에서 사용할 수 있는 오픈소스 기반 SNS 솔루션들을 몇 가지 소개합니다." />
<meta property="og:type" content="article" />
<meta property="og:url" content="http://usefulparadigm.com/2011/06/21/oss-social-networking-solutions-for-enterprise/" />
<meta property="og:image" content="http://usefulparadigm.com/wp-content/uploads/2011/06/yammericon1.jpg" />
<meta property="fb:admins" content="[여기에 관리자 ID를 등록합니다]" />
<meta property="fb:app_id" content="[여기에 APP_ID를 등록합니다]" />
@sjoonk
sjoonk / gist:1091615
Created July 19, 2011 07:44
FeedWordPress face image sample
// In a post context
<?php $img = get_feed_meta('face'); if (strlen($img) > 0): ?>
<img src="<?=$img?>" alt="" />
<?php endif; ?>