Run | Col1 | Col 2 |
---|---|---|
hello | ``` | |
sdf | ||
sdf | ||
sdf`` | ||
``` | ||
sdfjsdf | ||
sdf | ||
sdf |
This file contains 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
from dataclasses import fields | |
def init_from_json(cls, json): | |
return cls(**{f.name: json.get(f.name) for f in fields(cls)}) |
This file contains 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
-- 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, '/')) | |
|| "-" || |
This file contains 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
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. |
This file contains 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
λ 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') |
This file contains 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
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() |
This file contains 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
(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)) |
This file contains 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 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 |
This file contains 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
# From https://plus.google.com/+LinusTorvalds/posts/9EuaUEgarfu | |
git log --author=Sriram --pretty="%cd" | cut -d' ' -f4 | cut -d: -f1 | sort -n | uniq -c |
This file contains 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 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 |
NewerOlder