(Several of these git examples have been extracted from the book 'Pragmatic guide to GIT' of Travis Swicegood )
git config --global user.name "Fernando Guillen"
git config --global user.email "[email protected]"
cd /develop/myrepo
(Several of these git examples have been extracted from the book 'Pragmatic guide to GIT' of Travis Swicegood )
git config --global user.name "Fernando Guillen"
git config --global user.email "[email protected]"
cd /develop/myrepo
| package | |
| { | |
| import flash.display.Sprite; | |
| public class Main extends Sprite | |
| { | |
| private var _labelArray:Array = [10, 30, 50, 70, 90]; | |
| private var _midDotArray:Array; | |
| private var _combineArray:Array; | |
| private var _newMidDotArray:Array; |
| // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ | |
| // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating | |
| // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel | |
| // MIT license | |
| (function() { | |
| var lastTime = 0; | |
| var vendors = ['ms', 'moz', 'webkit', 'o']; |
| var p1 = { | |
| x: 20, | |
| y: 20 | |
| }; | |
| var p2 = { | |
| x: 40, | |
| y: 40 | |
| }; |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>App Redirection</title> | |
| </head> | |
| <body> | |
| <!-- | |
| NOTE: This was a great hack in days gone by, but now both Apple and Google have improved their support for custom | |
| protocol handlers. |
To run this, you can try:
curl -ksO https://gist.githubusercontent.com/nicerobot/2697848/raw/uninstall-node.sh
chmod +x ./uninstall-node.sh
./uninstall-node.sh
rm uninstall-node.sh
| package { | |
| import flash.external.ExternalInterface; | |
| public class URLUtil { | |
| protected static const WINDOW_OPEN_FUNCTION : String = "window.open"; | |
| public static function openWindow(url : String, window : String = "_blank", features : String = "") : void { | |
| ExternalInterface.call(WINDOW_OPEN_FUNCTION, url, window, features); |
| // tests | |
| // returns height of the screen including all toolbars | |
| // requires detection of orientation. (320px for our test) | |
| // window.orientation === 0 ? screen.height : screen.width | |
| // returns height of the visible area | |
| // it decreases if you zoom in | |
| // window.innerHeight | |
| // returns height of screen minus all toolbars |
| /* | |
| RequireJS 2.1.4 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved. | |
| Available via the MIT or new BSD license. | |
| see: http://github.com/jrburke/requirejs for details | |
| */ | |
| /*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license | |
| //@ sourceMappingURL=jquery.min.map | |
| */ |
@版本 2.0.0
譯注:此翻譯版,主要給不能流利的讀英文的人看,相關專有名詞還是保留原文。翻譯不好地方請協助pull request.
此repository包含了一些前端開發的面試問題,來審查一個有潛力的面試者。這並不是建議你對同一個面試者問上所有的問 (那會花費好幾小時)。從列表中挑幾個題目,應該就夠幫助你審查面試者是否擁有你需要的技能。
Rebecca Murphey 的 Baseline For Front-End Developers 也是一篇很棒且值得讀的文章在你開始面試之前。