Skip to content

Instantly share code, notes, and snippets.

@jackysee
jackysee / eoe.srt
Created May 20, 2013 04:16
EOE eng subtitle
0
00:00:01,000 --> 00:00:04,000
Downloaded From www.AllSubs.org
1
00:02:58,750 --> 00:03:01,651
A New Century Evangelion
Theatrical Version
2
@jackysee
jackysee / eva-2.22.srt
Created May 20, 2013 04:11
Evangelion 2.22 eng subtitle
1
00:00:37,200 --> 00:00:39,240
Start entry sequence.
2
00:00:39,330 --> 00:00:41,950
Initializing LCL ionization.
3
00:00:42,040 --> 00:00:44,120
@jackysee
jackysee / eva-1.11.srt
Created May 20, 2013 04:10
evangelion 1.11 eng subtitle
1
00:00:32,880 --> 00:00:35,840
Presenting Studio Khara's 1st Production
2
00:00:35,970 --> 00:00:43,810
Rebuild of Evangelion: Prelude
3
00:01:12,340 --> 00:01:15,210

「福音戰士新劇場版:序」記錄全集訪談(選節)

問: 《序》似乎是在相當短的時間內從無到有充實起來的。而作為本書的趣旨,我們正嘗試從多角度確認這是如何實現的,以及其目標是什麼,還務必請庵野總導演對此做一下總結。首先是關於本次企劃剛剛決定的那段時期,如果當時有什麼契機的話,請先從這方面開始。

**庵野:**是啊,最初是從什麼時候開始的呢……決定要做《EVA新劇場版》的時候,大概是在2005年10月左右吧。書面上最早的記錄文字,其日期是11月10日。

問: 那個最早的記錄有些什麼內容呢?

**庵野:**寫了很多東西,最主要的還是以「EVA的高達化」或是說古典化為目標的內容。其中之一,就有制作類似於「Part 2」的以《福音戰士》為題的新系列。 我個人的理想是《G福音戰士》。

@jackysee
jackysee / twitter-no-linebreak.user.js
Created March 15, 2013 09:59
Twitter no line-break
// ==UserScript==
// @name twitter no line break
// @author Jacky See
// @include http*://*twitter.com/*
// @version 1.0
// ==/UserScript==
GM_addStyle('.tweet-display-linebreaks .tweet .js-tweet-text {white-space: normal !important;}');
@jackysee
jackysee / gist:5005192
Last active December 14, 2015 01:19
Aware of globals in mocking using Squire.js

Aware of globals in mocking using Squire.js

A typical spec would be like:

define(['lib/Squire', 'jquery'], function(Squire, $){

	describe("a", function() {
  		var a;
 beforeEach(function(){
@jackysee
jackysee / spec_a(partial).js
Created February 21, 2013 14:42
revised spec
new Squire()
.mock({
jquery: function(){ return $; }
})
.require(['components/a'], function (aa){
a = aa;
done = true;
});
@jackysee
jackysee / a.js
Last active December 14, 2015 01:19
sample a.js
//components/a.js
define(['jquery'], function($){
$.fn.aaa = function() {
this.addClass('aaa');
};
return $.fn.aaa;
});
@jackysee
jackysee / a_spec.js
Last active December 14, 2015 01:19
sample jasmine test with squire
//spec/a_spec.js
define(['lib/Squire', 'jquery'], function(Squire, $){
describe("a", function() {
var a;
beforeEach(function(){
var done = false;
runs(function () {
@jackysee
jackysee / rssget.user.js
Created April 26, 2012 16:21
google reader content retrieve for specific sites
// Google Reader Content Retrieve
// version 2.0
// 2011-09-06
// ==UserScript==
// @name Google Reader Content Retrieve
// @namespace http://google.com/reader/greasemonkey/content
// @description Retrieve content in Google Reader.
// @include http*://reader.google.com/*
// @include http*://www.google.com/reader/*
// @include http*://google.com/reader/*