Skip to content

Instantly share code, notes, and snippets.

View timmypidashev's full-sized avatar
💭
Those who sow in tears shall reap in joy. - Psalm 126:5

Timothy Pidashev timmypidashev

💭
Those who sow in tears shall reap in joy. - Psalm 126:5
View GitHub Profile
@timmypidashev
timmypidashev / birthday.gs
Last active August 30, 2021 18:22
Birthday reminders sent in bulk to my email...
function main() {
// Load the sheet that contains the birthdays.
var sheet = SpreadsheetApp.getActive().getSheetByName("sheet1");
// Get the last row in the sheet that has data.
var numRows = sheet.getLastRow();
// Load data in the first two columns from the second row till the last row.
// Remember: The first row has column headers so we don’t want to load it.
var range = sheet.getRange(2, 1, numRows - 1, 2).getValues();
@timmypidashev
timmypidashev / init.vim
Created August 17, 2021 00:21
My current neovim config(much broken)
call plug#begin("~/.config/nvim/plugged")
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'wakatime/vim-wakatime'
Plug 'andweeb/presence.nvim'
Plug 'artanikin/vim-synthwave84'
Plug 'scrooloose/nerdtree'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'christoomey/vim-tmux-navigator'