Skip to content

Instantly share code, notes, and snippets.

View sailfish009's full-sized avatar

sailfish009

  • freelancer
  • South Korea
View GitHub Profile
@sailfish009
sailfish009 / python_csv.txt
Created October 20, 2022 14:33
python csv
example = u'00:01:12.788'
strs = example.split(":")
hours = int(strs[0])
minutes = int(strs[1])
strs2 = strs[2].split(".")
seconds = float(strs2[0])
mseconds = float(strs2[1])
miliseconds = int(3600000 * hours + 60000 * minutes + 1000 * seconds + mseconds)
https://www.ribbonfarm.com/2009/10/07/the-gervais-principle-or-the-office-according-to-the-office/
ribbonfarm
constructions in magical thinking
The Gervais Principle, Or The Office According to “The Office”
October 7, 2009 By Venkatesh Rao
My neighbor introduced me to The Office back in 2005. Since then, I’ve watched every episode of both the British and American versions. I’ve watched the show obsessively because I’ve been unable to figure out what makes it so devastatingly effective, and elevates it so far above the likes of Dilbert and Office Space.
Series Home | Part I | Part II | Part III | Part IV | Part V | Part VI | ebook
mingw-w64-x86_64-{gcc,perl,make}
C:\msys64\msys2_shell.cmd -mingw64
git reset --hard <prev_commidId> && git push --force
https://paul.copplest.one/blog/do-nothing.html
I spent my early career as a sysadmin in a company of about 300
people. These interactions were frequent. Being an young upstart I would
jump on them straight away.
Often I would spend hours solving
the problem, prioritising it above what I was previously doing, only to
find it wasn't important to begin with.
#동기부여 #부자습관 #제임스클리어
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
동기부여를 위한 최고의 채널 : 성공비밀
정말 성공을 원하나요? ▶ http://asq.kr/YKImF3uSGimj
성공비밀 한글 오디오 & 채널 가입 📣
▶https://www.youtube.com/channel/UCnCd...
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
*동기부여 영상을 끝까지 시청하는 것은 효과의 극대화를 위한 유일한 길입니다
https://bagjunggyu.blogspot.com/2016/03/how-to-set-up-korean-hangul-in-ubuntu.html :
How to set up Korean & Hangul in Ubuntu
--- How to type in Korean Hangul On Ubuntu and its derivatives ---
https://plus.google.com/101028813073033149665/posts/SD8rH8uGNdF
1) set keyboard layout
Korean (101/104 key compatible)
https://www.crowdsupply.com/sutajio-kosagi/precursor
1. What do I want? Not what others want.
2. What am I avoiding.
3. What am I the most great full for?
4. What am I afraid of?
5. What are my biggest strengths and flaws?
@sailfish009
sailfish009 / streamlit_download_button.py
Created February 23, 2021 06:48 — forked from chad-m/streamlit_download_button.py
A download function and examples app for Streamlit
import base64
import os
import json
import pickle
import uuid
import re
import streamlit as st
import pandas as pd