This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var fs = require('fs') | |
| var Q = require('q') | |
| var fs_stat = Q.denodeify(fs.stat) | |
| var fs_readdir = Q.denodeify(fs.readdir) | |
| var files = [ | |
| './fixtures/file1', | |
| './fixtures/file2', | |
| './fixtures/file3', | |
| './fixtures/file4' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $route.current.$$route.reloadOnSearch = false | |
| $location.hash "newHash#{Math.random()}" | |
| $timeout -> | |
| $route.current.$$route.reloadOnSearch = false | |
| , 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Hotkeys | |
| Ctrl + Escape or Win: Display start menu. | |
| Shift + F10 or AppsKey: Display context menu. | |
| Win + E: Open Windows Explorer. | |
| Win + R: Open Run dialog. | |
| Win + M: Minimize all windows. | |
| Win + Shift + M: Undo minimize all windows. | |
| Win + D: Toggle minimize all windows. | |
| Win + B (XP only): Activate system tray. Arrow keys select, Enter double-clicks, and AppsKey or Shift + F10 right-clicks. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ubuntu keyboard shortcuts | |
| ## Global | |
| Alt+F1 : Keyboard focus on launchbar | |
| Alt+F2 : Launch program | |
| Ctrl+Alt+T : Terminal | |
| Win : Search Unity | |
| Alt : Enter Command for current apps & top bar | |
| Ctrl+Alt+Del : Log out | |
| Ctrl+Alt+L : Lock computer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### GIT ### | |
| >git commit --amend #изменить описание последнего коммита | |
| >git add file1 file2 | |
| >git commit --amend #добавить изменения в коммит | |
| >git stash #спрятать изменения | |
| >git stash list #показать список спрятанных изменений | |
| >git stash apply #применить последнее спрятанное изменение |