This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
Conventions for this fork:
- done
| $('test').click(function () | |
| { | |
| //this is the code here | |
| } | |
| ); | |
| $('test').click(function () | |
| { | |
| //this is the code here | |
| }); |
| (function($, window, undefined) { | |
| $.fn.tooltip = function(options) { | |
| options = $.extend(options, { | |
| title: 'needs a title', | |
| body: 'tst', | |
| position: 'left' | |
| }); | |
| $('<div>') // 50 other elements | |
| // '<div>'.... |
| (function($, window, undefined) { | |
| $.fn.tooltip = function(options) { | |
| options = $.extend(options, { | |
| title: 'needs a title', | |
| body: 'tst', | |
| position: 'left' | |
| }); | |
| $('<div>') // 50 other elements | |
| // '<div>'.... |
| (function($, window, undefined) { | |
| $.fn.tooltip = function(options) { | |
| options = $.extend(options, { | |
| title: 'needs a title', | |
| body: 'tst', | |
| position: 'left' | |
| }); | |
| $('<div>') // 50 other elements | |
| // '<div>'.... |
| testing gist plugin |
| PROMPT='%{$fg[magenta]%}%c$(git_prompt) %{$reset_color%}$ ' | |
| ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[cyan]%}" | |
| ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" | |
| ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%} ✗%{$reset_color%}" | |
| ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[white]%} ?%{$reset_color%}" | |
| ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[white]%} *%{$reset_color%}" | |
| ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[white]%} +%{$reset_color%}" | |
| ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%}" |
| # Load posh-git example profile | |
| . 'C:\Users\kpartridge\posh-git\profile.example.ps1' | |
| New-PSDrive -name script -PSProvider FileSystem -Root $home\Documents\Scripts | |
| New-Alias -Name sudo 'script:\sudo.ps1' | |
| New-Alias -Name which Get-Command |
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
Conventions for this fork:
| public class Redirect { | |
| private String actionName; | |
| private String method; | |
| private Map<String, Object> params = new LinkedHashMap<String, Object>(); | |
| public Redirect actionName(String actionName) { | |
| this.actionName = actionName; | |
| return this; | |
| } |