based on rage-quit support for bash
Put the files below inside ~/.oh-my-zsh/custom/plugins/fuck
Also chmod a+x the flip command.
| public static IEnumerable<T> Promise<T>(this IEnumerable<T> enumerable) | |
| { | |
| return enumerable ?? Enumerable.Empty<T>(); | |
| } |
| --desired collation for (var)char columns: | |
| DECLARE @collationName VARCHAR(30) | |
| SET @collationName = 'Latin1_General_CS_AI' | |
| --build tables containing drop/create index queries | |
| --http://www.sqlservercentral.com/scripts/Indexing/31652/ | |
| SELECT | |
| REPLICATE(' ',4000) AS COLNAMES , | |
| OBJECT_NAME(I.ID) AS TABLENAME, | |
| I.ID AS TABLEID, |
| /* | |
| * Scripts to remove data you don't need here | |
| */ | |
| /* | |
| * Now let's clean that DB up! | |
| */ | |
| DECLARE @DBName VarChar(25) |
| Chrome | |
| Alfred | |
| Dropbox | |
| 1Password | |
| Sizeup | |
| Coconut Battery | |
| Dash | |
| XCode | |
| Caffeine |
based on rage-quit support for bash
Put the files below inside ~/.oh-my-zsh/custom/plugins/fuck
Also chmod a+x the flip command.
This list is based on aliases_spec.rb.
You can see also Module: RSpec::Matchers API.
| matcher | aliased to | description |
|---|---|---|
| a_truthy_value | be_truthy | a truthy value |
| a_falsey_value | be_falsey | a falsey value |
| be_falsy | be_falsey | be falsy |
| a_falsy_value | be_falsey | a falsy value |
Branch A has commits (X,Y) that also need to be in Branch B. The cherry-pick operations should be done in the same chronological order that the commits appear in Branch A.
cherry-pick does support a range of commits, but if you have merge commits in that range, it gets really complicated
git checkout branch-B
git cherry-pick X
git cherry-pick Y
| -- A global variable for the Hyper Mode | |
| k = hs.hotkey.modal.new({}, "F17") | |
| -- Trigger existing hyper key shortcuts | |
| k:bind({}, 'm', nil, function() hs.eventtap.keyStroke({"cmd","alt","shift","ctrl"}, 'm') end) | |
| -- OR build your own | |
| launch = function(appname) |