SPC q q- quitSPC w /- split window verticallySPC w- - split window horizontallySPC 1- switch to window 1SPC 2- switch to window 2SPC w c- delete current windowSPC TAB- switch to previous bufferSPC b b- switch buffers
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
| <html> | |
| <head> | |
| <script> | |
| <!--script which will change the date in the input box according to selection--> | |
| <!-- This date selector doesnot carry fancy stuff :). A very basic date selector. --> | |
| function changedate() | |
| { | |
| var date = document.getElementById("date"), | |
| sel_date = date.options[date.selectedIndex]; | |
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
| #301 Redirects for .htaccess | |
| #Redirect a single page: | |
| Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
| #Redirect an entire site: | |
| Redirect 301 / http://www.domain.com/ | |
| #Redirect an entire site to a sub folder | |
| Redirect 301 / http://www.domain.com/subfolder/ |
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
| .dh_hover { | |
| opacity: 0.8; | |
| border: 1px solid #0990C5; | |
| position: relative; | |
| top: -1px; | |
| left: -1px; | |
| } | |
| #dialog { | |
| display: none; |
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
| #!/usr/bin/env bash | |
| # Simple move this file into your Rails `script` folder. Also make sure you `chmod +x puma.sh`. | |
| # Please modify the CONSTANT variables to fit your configurations. | |
| # The script will start with config set by $PUMA_CONFIG_FILE by default | |
| PUMA_CONFIG_FILE=config/puma.rb | |
| PUMA_PID_FILE=tmp/pids/puma.pid | |
| PUMA_SOCKET=tmp/sockets/puma.sock |
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
| [{ ref: 'refs/heads/test', | |
| before: '7eb0542d24a7b55a788966b9e996a8edb56ec5be', | |
| after: '530c2b92e094d0d3494c22fa3ca12393f89e7acf', | |
| created: false, | |
| deleted: false, | |
| forced: false, | |
| base_ref: null, | |
| compare: 'https://github.com/jeremyrajan/jeremyrajan.github.io/compare/7eb0542d24a7...530c2b92e094', | |
| commits: | |
| [ { id: '530c2b92e094d0d3494c22fa3ca12393f89e7acf', |
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
| const entityTypes = ['d', 'f', 't', 'z']; | |
| /* properties | |
| Type | |
| Name | |
| Path | |
| Content | |
| */ | |
| const data = []; | |
| /* data = [{ |
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
| =begin | |
| @module FileSystem | |
| Structure: data = [{ | |
| type: 'd', | |
| name: 'c', | |
| path: '/c', | |
| children: [{ | |
| type: 'f', | |
| name: 'myfolder', | |
| path: '/c/myfolder', |
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
| // Place your settings in this file to overwrite the default settings | |
| { | |
| "typescript.check.tscVersion": false, | |
| "files.associations": { | |
| "*.ts": "typescript" | |
| }, | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontSize": 13, | |
| "editor.tabSize": 2, | |
| "editor.cursorBlinking": "smooth", |
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 path = require('path'); | |
| var _invalidateRequireCacheForFile = function(filePath){ | |
| delete require.cache[path.resolve(filePath)]; | |
| }; | |
| var requireNoCache = function(filePath){ | |
| _invalidateRequireCacheForFile(filePath); | |
| return require(filePath); | |
| }; |
OlderNewer