<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| TemplateCache = { | |
| get: function(selector){ | |
| if (!this.templates){ this.templates = {}; } | |
| var template = this.templates[selector]; | |
| if (!template){ | |
| var template = $(selector).html(); | |
| this.templates[selector] = template; | |
| } |
| import 'dart:html'; | |
| /** | |
| * WebGL Demo made in Dart. | |
| * Updated: March 11th 2013 - Dart SDK 0.4.1 | |
| * This example is heavily inspired by: | |
| * http://www.netmagazine.com/tutorials/get-started-webgl-draw-square | |
| */ | |
| class WebGLTest { |
| // ==UserScript== | |
| // @name ZeroFix | |
| // @namespace applest.net | |
| // @version 0.9 | |
| // @description ZeroFix is ZeroWatch of niconico fixer. ZeroWatchが改良するまでの暫定的なユーザースクリプトです。 タイトルの縮小、タグの複数段表示、市場エリアを投稿者情報に、コメント入力エリアを下に、フェードを無効化などの機能があります。 | |
| // @include http://www.nicovideo.jp/watch/* | |
| // @license MIT License(http://en.wikipedia.org/wiki/MIT_License) | |
| // ==/UserScript== | |
| /********************************************* |
| # Font Squirrel Font-face Generator Configuration File | |
| # Upload this file to the generator to recreate the settings | |
| # you used to create these fonts. | |
| {"mode":"expert","formats":["ttf","woff","eot","svg"],"tt_instructor":"default","options_subset":"advanced","subset_custom":"","subset_custom_range":"f000-f073,f200-f273","filename_suffix":"-webfont","emsquare":"2048","spacing_adjustment":"0","rememberme":"Y"} |
| (defn normalize-json-args [map] | |
| (letfn [(keyify [s] (keyword (string/replace s "_" "-"))) | |
| (cleaner [[k v]] (if (string? k) [(keyify k) v] [k v])) | |
| (walker [x] (if (map? x) (into {} (map cleaner x)) x))] | |
| (postwalk walker map))) |
| diff -r d2213960ade2 src/cmd/5l/asm.c | |
| --- a/src/cmd/5l/asm.c Sat Jul 14 15:59:52 2012 +0400 | |
| +++ b/src/cmd/5l/asm.c Sun Jul 15 19:45:39 2012 +1000 | |
| @@ -33,6 +33,7 @@ | |
| #include "l.h" | |
| #include "../ld/lib.h" | |
| #include "../ld/elf.h" | |
| +#include "../ld/dwarf.h" | |
| static Prog *PP; |
| import java.util.Scanner; | |
| public class CaesarCipher { | |
| private static char []letters = | |
| { 'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z' | |
| ,'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z' | |
| ,'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z' | |
| }; |
In August 2007 a hacker found a way to expose the PHP source code on facebook.com. He retrieved two files and then emailed them to me, and I wrote about the issue:
http://techcrunch.com/2007/08/11/facebook-source-code-leaked/
It became a big deal:
http://www.techmeme.com/070812/p1#a070812p1
The two files are index.php (the homepage) and search.php (the search page)
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <assert.h> | |
| typedef unsigned int u32; | |
| typedef unsigned long long u64; | |
| //------------------------------------------------------------------------- | |
| // WorkArea | |
| //------------------------------------------------------------------------- |