My Unity repo's git config as of today.
For more complex and complete alternatives, look at:
My Unity repo's git config as of today.
For more complex and complete alternatives, look at:
Welcome to [Your Website Name] (hereinafter referred to as "the Website"). In order to provide you with a secure and seamless experience while using the various services and information on our website, we are committed to protecting your privacy rights. Please read the following information carefully:
This Privacy Policy outlines how we handle the collection, processing, and utilization of personal identifiable information when you use our website's services. This Privacy Policy does not apply to other related websites not operated by us or to individuals not managed or commissioned by us.
| #!/bin/sh | |
| # | |
| # Check for ruby style errors | |
| red='\033[0;31m' | |
| green='\033[0;32m' | |
| yellow='\033[0;33m' | |
| NC='\033[0m' | |
| if git rev-parse --verify HEAD >/dev/null 2>&1 |
| ## Unity ## | |
| *.cs diff=csharp text | |
| *.cginc text | |
| *.shader text | |
| *.mat merge=unityyamlmerge eol=lf | |
| *.anim merge=unityyamlmerge eol=lf | |
| *.unity merge=unityyamlmerge eol=lf | |
| *.prefab merge=unityyamlmerge eol=lf |
| cask_args appdir: '/Applications' | |
| tap 'caskroom/cask' | |
| tap "homebrew/cask-fonts" | |
| tap 'caskroom/versions' | |
| tap "homebrew/bundle" | |
| tap "homebrew/core" | |
| tap "homebrew/services" | |
| tap "hsatac/toybox" | |
| brew "coreutils" | |
| brew "gnu-sed" |
@版本 2.0.0
譯注:此翻譯版,主要給不能流利的讀英文的人看,相關專有名詞還是保留原文。翻譯不好地方請協助pull request.
此repository包含了一些前端開發的面試問題,來審查一個有潛力的面試者。這並不是建議你對同一個面試者問上所有的問 (那會花費好幾小時)。從列表中挑幾個題目,應該就夠幫助你審查面試者是否擁有你需要的技能。
Rebecca Murphey 的 Baseline For Front-End Developers 也是一篇很棒且值得讀的文章在你開始面試之前。
| uniform mat4 mvp; | |
| uniform float t; | |
| varying vec2 tc; | |
| varying vec3 col; | |
| varying vec3 p; | |
| void main() | |
| { | |
| //gl_Position = mvp * gl_Vertex; |
| # --------------------------------------------------------------- | |
| # Aotoki Theme for oh-my-zsh theme by Aotoki (elct9620@frost.tw) | |
| # Home Page : http://frost.tw/ | |
| # -------------------------------------------------------------- | |
| # LS Color | |
| LSCOLORS=xxbxcxxxxxdxBxxxxxCxExBhCh | |
| #Color Shortcuts | |
| R=$fg[red] |