Skip to content

Instantly share code, notes, and snippets.

View mturilin's full-sized avatar

Mikhail Turilin mturilin

  • Google
  • San Francisco, CA
View GitHub Profile
@mturilin
mturilin / dedupe.py
Created March 11, 2021 00:34
CVS dedupe
import csv
uniques = {}
with open('original.csv') as csv_file:
reader = csv.DictReader(csv_file)
for row in reader:
if row['Password'] == '':
if row['Group'] == 'Root':
row['Group'] = 'Root/Non_Login'
@mturilin
mturilin / obsidian.css
Created October 31, 2021 23:26 — forked from pihentagy/obsidian.css
Clutter free edit mode
/* inline formatting, link targets and [[ ]] disappears if not active line*/
div:not(.CodeMirror-activeline) > .CodeMirror-line span.cm-formatting,
div:not(.CodeMirror-activeline) > .CodeMirror-line span.cm-string.cm-url,
div:not(.CodeMirror-activeline) > .CodeMirror-line span.cm-formatting-link,
div:not(.CodeMirror-activeline)>.CodeMirror-line span.cm-hmd-barelink,
div:not(.CodeMirror-activeline)>.CodeMirror-line span.cm-comment
{ display: none; }
/* hide all html tags -- IT IS COMMENTED OUT BY DEFAULT */
/* div:not(.CodeMirror-activeline) > .CodeMirror-line span.cm-tag{ display: none; } */

Backend Developer for Crypto Payments Startup

Looking for a backend developer to crypto payments startup

Who we are?

We are a stealth starup that is working on new generation of money transfer app based on crypto / blockchain technology.

We have senior team with experince of starting mutiple successful businesses.

@mturilin
mturilin / aspect_ration.fs
Created December 21, 2022 21:17
F# script to compute image aspect ratio
open System
let resolutions =
[
((1,1), (1080 , 1080));
((3,2), (1080 , 720));
((4,3), (1024 , 768));
((16,9), (1920 , 1080));
((16,10), (1920 , 1200));
]