Skip to content

Instantly share code, notes, and snippets.

@plusjade
Last active December 17, 2015 22:19
Show Gist options
  • Save plusjade/5681493 to your computer and use it in GitHub Desktop.
Save plusjade/5681493 to your computer and use it in GitHub Desktop.
custom skills
# Custom skills (previously "skill Groups")
CustomSkills = [
{
"name"=> "web",
"all"=>["HTML", "CSS"],
"any"=>["Javascript", "CoffeeScript", "PHP", "Ruby", "ASP", "Go"],
},
{
"name"=> "frontend-developer",
"all"=>["HTML", "CSS"],
"any"=>["JavaScript", "Cofeescript"],
},
{
"name"=> "backend-developer",
"any"=>["Ruby", "PHP", "Python", "Java", "ASP"],
},
{
"name"=> "osx",
"any"=>["Objective-C", "Objective C++"],
},
{
"name"=> ".NET-developer",
"all"=>["C#", "ASP", "ASP-DotNet"],
},
{
"name"=> "Unix",
"any"=>["Shell", "Bourne-Shell", "Bourne-Again-Shell", "Emacs"],
},
{
"name"=> "Oracle",
"all"=>["SQL"],
},
{
"name"=> "Rails",
"all"=>["Ruby", "Ruby-HTML"],
},
{
"name"=> "Flash",
"all"=>["ActionScript"],
},
{
"name"=> "windows",
"all"=>["C#"],
},
{
"name"=> "ios-developer",
"any"=>["Objective-C"],
},
{
"name"=> "Android",
"all"=>["Java"],
},
]
Aliases = {
"DotNet" => [".Net", 'net', 'ASP-DotNet', 'asp.Net'],
"bash"=>["Bourne-Again-Shell", "Bourne-Shell"],
"Fortran"=>["Fortran-77", "Fortran-90", "Fortran-95"],
"C++" => ["C/C++-Header"],
"Objective-C"=>["ios", "iphone", "ios-developer"],
"frontend-developer"=> ["frontend", "front-end"],
"backend-developer"=>["backend", "back-end"],
"osx"=>["xcode","x-code","mac"],
"Oracle"=> ["pl/sql", "dba", "9i"],
"Rails"=> %w{ ror ruby-on-rails },
"windows"=> %w{ win32 win },
"unix" => %w{
shell linux debian freebsd openbsd netbsd bsd gnu suse
opensuse ubuntu red hat fedora gentoo slackware
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment