Skip to content

Instantly share code, notes, and snippets.

View sri's full-sized avatar

Sriram Thaiyar sri

  • Bay Area, CA
View GitHub Profile
@sri
sri / dataclass_helper.py
Last active October 1, 2022 13:31
Parse JSON into objects
from dataclasses import fields
def init_from_json(cls, json):
return cls(**{f.name: json.get(f.name) for f in fields(cls)})
@sri
sri / convert.sql
Last active December 22, 2019 06:24
Sqlite convert datetime
-- Convert m/d/yyyy to yyyy-mm-dd -- Sqlite recognize this format
-- See https://fivethirtyeight.datasettes.com/fivethirtyeight?sql=select+%0D%0A++--+year%0D%0A++substr%28substr%28date_game%2C+instr%28date_game%2C+%27%2F%27%29%2B1%29%2C+instr%28substr%28date_game%2C+instr%28date_game%2C+%27%2F%27%29%2B1%29%2C+%27%2F%27%29%2B1%29%0D%0A++++%7C%7C+%22-%22+%7C%7C%0D%0A++--+month%0D%0A++substr%28date_game%2C+0%2C+instr%28date_game%2C+%27%2F%27%29%29%0D%0A++++%7C%7C+%22-%22+%7C%7C%0D%0A++--+day%0D%0A++substr%28date_game%2C+instr%28date_game%2C+%27%2F%27%29%2B1%2C+instr%28substr%28date_game%2C+instr%28date_game%2C+%27%2F%27%29%2B1%29%2C+%27%2F%27%29-1%29%0D%0A++as+played_on%2C+%0D%0A++*+from+%5Bnba-elo%2Fnbaallelo%5D+%0D%0Awhere+played_on+%3E%3D+%272000-01-01%27%0D%0A
select
-- year
substr(substr(date_game, instr(date_game, '/')+1), instr(substr(date_game, instr(date_game, '/')+1), '/')+1)
|| "-" ||
-- month
substr(date_game, 0, instr(date_game, '/'))
|| "-" ||
@sri
sri / emacs.diff
Created August 12, 2018 07:46
My fix for Emacs's ruby-mode toggle string quotes
From 48b5266274cf7904c5f288c3c6a658d3db074564 Mon Sep 17 00:00:00 2001
From: Sriram Thaiyar <[email protected]>
Date: Wed, 22 Jun 2016 09:21:26 -0700
Subject: [PATCH] Fix ruby-toggle-string-quotes bug
* lisp/progmodes/ruby-mode.el (ruby-toggle-string-quotes):
Change logic to quote based on the current quote of the string.
* test/lisp/progmodes/ruby-mode-tests.el (ruby-toggle-string-quotes-quotes-correctly):
Add test.
@sri
sri / encoding.txt
Created May 29, 2017 01:17
file encoding in python3
λ python3
Python 3.6.1 (default, Apr 4 2017, 09:36:47)
[GCC 4.2.1 Compatible Apple LLVM 7.0.2 (clang-700.1.81)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> b'abc\n'
b'abc\n'
>>> a = _
>>> list(a)
[97, 98, 99, 10]
>>> a.decode(encoding='utf_8')
@sri
sri / mvldown.kt
Last active May 18, 2017 19:48
Kotlin version of move last downloaded file (from ~/Downloads) into the current directory
import java.nio.file.Paths
import java.io.File
fun main(args: Array<String>) {
var sortedFiles = Paths.get(System.getProperty("user.home"), "Downloads").
toFile().
listFiles()?.
sortedBy { it.lastModified() }?.
reversed()
@sri
sri / my-google-it.el
Created October 19, 2016 20:00
google each line in dired -- useful for exploring other people's elpa packages
(defun my-google-it ()
(interactive)
(let ((line (buffer-substring-no-properties (point-at-bol)
(point-at-eol))))
(setq line (car (last (split-string line))))
(setq line
(replace-regexp-in-string "[-.0-9]" " " line))
(setq line (string-trim line))
(setq line (concat "emacs " line))
(setq line (replace-regexp-in-string " " "+" line))
@sri
sri / bst.rb
Created August 6, 2016 20:21
Binary search tree
#! /usr/bin/env ruby
# See https://medium.com/@jamis/weekly-programming-challenge-1-results-177ba9ebe10c#.yp50cbi51
class Node
attr_accessor :value, :left, :right
EMPTY = Object.new
def initialize(value = EMPTY)
@value = value
Run Col1 Col 2
hello ```
sdf
sdf
sdf``
```
sdfjsdf
sdf
sdf
@sri
sri / hours_of_day_worked.sh
Last active January 28, 2017 11:56
What hours of the day have I worked
# From https://plus.google.com/+LinusTorvalds/posts/9EuaUEgarfu
git log --author=Sriram --pretty="%cd" | cut -d' ' -f4 | cut -d: -f1 | sort -n | uniq -c
@sri
sri / gg.rb
Created February 16, 2016 23:36
a better git grep
#! /usr/bin/env ruby
USAGE = "gg <git-repos> pattern [-r]
Git grep for pattern using:
- <git-repos> are passed in, or
- the current dir is in a git repo, or,
- git repos that are subdirs ofthe current dir
If `-r' is specified, git grep from the repo's