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
function plusDay(zeroDate) { | |
var shet = SpreadsheetApp.getActiveSheet() | |
var date = new Date(zeroDate) | |
var maxRaw = 10 | |
var maxCol = 10 | |
for (var raw = 1; raw <= maxRaw; raw++) { | |
for (var col = 1; col <= maxCol; col++) { | |
shet.getRange(raw,col).setValue(date) |
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
login: "hello" | |
password: "world" | |
host: "localhost" | |
port: "8080" |
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
set number | |
syntax on | |
nmap <f5> :Stdheader<CR> | |
let NERDTreeShowHidden=1 | |
inoremap { {}<left> | |
inoremap {<CR> {<CR>}<ESC>O | |
inoremap {;<CR> {<CR>};<ESC>O |
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
bindkey -M menuselect '^M' .accept-line | |
# Always show colorised path in shell | |
% PROMPT='%~ %# ' | |
export PS1="%F%F{3}%3d%f %F{6}%m%#%f " | |
# Load Homebrew config script | |
source $HOME/.brewconfig.zsh | |
# Useful aliases |