This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //////////////////////////////////////////////////////////////////////////////// | |
| // Frame animation object | |
| //////////////////////////////////////////////////////////////////////////////// | |
| ;namespace.display.FrameAnimation = (function(win, doc, ns) | |
| { | |
| "use strict"; | |
| //-------------------------------------------------------------------------- | |
| // Import | |
| //-------------------------------------------------------------------------- | |
| var AnimationEvent = ns.event.AnimationEvent, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Array clone | |
| */ | |
| Array.prototype.clone = function() | |
| { | |
| return this.concat([]); | |
| } | |
| /* | |
| * Max value (only number |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # http://qiita.com/items/57ccb570f02799efd9d3 | |
| fs = require 'fs' | |
| path = require 'path' | |
| {spawn, exec} = require 'child_process' | |
| option '-o', '--output [DIR]', 'Output directory.' | |
| option '-t', '--target [DIR]', 'Watch target directory.' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * jQuery extend | |
| */ | |
| jQuery.fn.extend({ | |
| /** | |
| * plugin | |
| * | |
| * @param {Object} argument comment | |
| */ | |
| plugin: function(args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * オブジェクトをクエリーにする | |
| * @param obj {Object} | |
| * @returns {String} | |
| * @private | |
| */ | |
| toQuery = function(obj) | |
| { | |
| var query = ''; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <Response> | |
| <Say voice="woman" language="ja-jp">こんちには、こんちには。ゆっくりしていってね</Say> | |
| </Response> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| -------------------------------------------------------------------------------- | |
| Config | |
| -------------------------------------------------------------------------------- | |
| */ | |
| var dgram = require('dgram') | |
| , Buffer = require('buffer').Buffer; | |
| var HEADER = [65, 114, 116, 45, 78, 101, 116, 0, 0, 80, 0, 14, 0, 0, 0, 0]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """""""""""""""""""""""""""""""""""""""" | |
| " プラグイン管理 | |
| """""""""""""""""""""""""""""""""""""""" | |
| " MacVimを初期化した場合は、以下 | |
| " mkdir -p ~/.vim/bundle | |
| " git clone https://github.com/Shougo/neobundle.vim | |
| " git clone https://github.com/Shougo/vimproc.vim.git ~/.vim/bundle/vimproc.vim | |
| " cd ~/.vim/bundle/vimproc.vim | |
| " make | |
| " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML> | |
| <html lang="ja"> | |
| <head prefix="og: http://ogp.me/ns# fb: http://www.facebook.com/2008/fbml"> | |
| <meta charset="UTF-8" /> | |
| <title></title> | |
| <meta name="viewport" content="width=device-width" /> | |
| <meta name="description" content="" /> | |
| <meta name="keywords" content="" /> | |
| <meta name="author" content="" /> | |
| <meta property="fb:app_id" content="" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 基底クラス | |
| * @file base.js | |
| */ | |
| function Base () | |
| { | |
| this.position = { x:0, y:0, z:0 }; | |
| } | |
| Base.prototype.update = function () |