@版本 2.0.0
譯注:此翻譯版,主要給不能流利的讀英文的人看,相關專有名詞還是保留原文。翻譯不好地方請協助pull request.
此repository包含了一些前端開發的面試問題,來審查一個有潛力的面試者。這並不是建議你對同一個面試者問上所有的問 (那會花費好幾小時)。從列表中挑幾個題目,應該就夠幫助你審查面試者是否擁有你需要的技能。
Rebecca Murphey 的 Baseline For Front-End Developers 也是一篇很棒且值得讀的文章在你開始面試之前。
| ## convert HTML POST data or HTTP GET query string to JSON | |
| ## get the raw post data from the AWS built-in variable and give it a nicer name | |
| #if ($context.httpMethod == "POST") | |
| #set($rawAPIData = $input.path('$')) | |
| #elseif ($context.httpMethod == "GET") | |
| #set($rawAPIData = $input.params().querystring) | |
| #set($rawAPIData = $rawAPIData.toString()) | |
| #set($rawAPIDataLength = $rawAPIData.length() - 1) | |
| #set($rawAPIData = $rawAPIData.substring(1, $rawAPIDataLength)) |
@版本 2.0.0
譯注:此翻譯版,主要給不能流利的讀英文的人看,相關專有名詞還是保留原文。翻譯不好地方請協助pull request.
此repository包含了一些前端開發的面試問題,來審查一個有潛力的面試者。這並不是建議你對同一個面試者問上所有的問 (那會花費好幾小時)。從列表中挑幾個題目,應該就夠幫助你審查面試者是否擁有你需要的技能。
Rebecca Murphey 的 Baseline For Front-End Developers 也是一篇很棒且值得讀的文章在你開始面試之前。
| #!/bin/bash | |
| repos=( | |
| "/Users/rob/Library/Application Support/TextMate/Bundles/Git.tmbundle" | |
| "/Users/rob/Library/Application Support/TextMate/Bundles/Ruby.tmbundle" | |
| "/Users/rob/Library/Application Support/TextMate/Bundles/RubyAMP.tmbundle" | |
| "/Users/rob/Library/Application Support/TextMate/Bundles/Ruby Haml.tmbundle" | |
| "/Users/rob/Library/Application Support/TextMate/Bundles/Ruby on Rails.tmbundle" | |
| "/Users/rob/Library/Application Support/TextMate/Bundles/ruby-sass.tmbundle" | |
| "/Users/rob/Library/Application Support/TextMate/Bundles/ruby-shoulda.tmbundle" |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| .DS_Store | |
| ._* | |
| node_modules/ |
| // pseudocode but something like this | |
| var fs = require('fs'); | |
| var path = require('path'); | |
| var gulp = require('gulp'); | |
| var concat = require('gulp-concat'); | |
| var gif = require('gulp-if'); | |
| function getFolders(dir){ | |
| return fs.readdirSync(dir) | |
| .filter(function(file){ |
| PWD=`/bin/pwd` | |
| all: | |
| @echo '... INSTALL NEOBUNDLE ...' | |
| @git clone git://github.com/Shougo/neobundle.vim $(PWD)/bundle/neobundle.vim | |
| @echo '... DONE! NOW USE "make install" INSTALL VIM SETTING ...' | |
| install: | |
| @echo '... INSTALL VIM SETTING ...' | |
| @ln -fs $(PWD)/_vimrc $(HOME)/.vimrc |