Skip to content

Instantly share code, notes, and snippets.

View mildronize's full-sized avatar

Thada Wangthammang mildronize

View GitHub Profile
@mildronize
mildronize / d3-force-graph.html
Created November 6, 2019 17:16
d3-force-graph.html
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js" > </script>
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
<style>
body {
overflow:hidden;
@mildronize
mildronize / Technukrom.md
Last active September 11, 2018 17:30
Technukrom Road map & Todo

ภาพรวม

โปรเจ็คมี 2 ส่วน

  1. Frontend: Technukrom
  2. Background Service: ตัวดึงข้อมูล feed data-crawler

Frontend stacks:

  • Web: Next.js (React)
@mildronize
mildronize / Readme.md
Created July 20, 2018 06:42
Workflow | Publish Bear note to markdown on iOS
@mildronize
mildronize / GitCommitEmoji.md
Created July 6, 2018 05:09 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji
@mildronize
mildronize / Readme.md
Last active December 18, 2017 16:02
Docker Cmder Alias - setup docker environment if the docker machine is started
@mildronize
mildronize / auto_sync_to_remote.bat
Created February 13, 2017 10:30
[Windows] Auto upload files changed to remote host
:: Name: auto_sync_to_remote.bat
:: Purpose: Auto upload files changed to remote host without removing any remote files
:: Author: Thada Wangthammang <[email protected]>
:: Revision: 2017/02/13 Initial version
:: Ref: http://steve-jansen.github.io/guides/windows-batch-scripting/part-10-advanced-tricks.html
:: http://schier.co/blog/2013/03/13/start-virtualbox-vm-in-headless-mode.html
:: Prerequisite
:: - `Winscp`
@mildronize
mildronize / .vimrc
Last active August 25, 2024 01:13
Minimal .vimrc for ACM-ICPC
set nocompatible " use vim, not vi api
syntax on " enable syntax processing
set number " show line numbers
set tabstop=4 " number of visual spaces per TAB
set softtabstop=4 " number of spaces in tab when editing
set autoindent " Indent at the same level of the previous line
set smartindent " If you wnat to paste in INSERT MODE, press `F5` (PASTE toggle)
@mildronize
mildronize / autotest.py
Created August 6, 2016 16:27
Auto test script ( watchdog + nose ) for TDD ( with test )
#!/usr/bin/env python
import os
import sys
import time
from watchdog.observers import Observer
from watchdog.events import PatternMatchingEventHandler
# STYLE="startswith_test"
# STYLE="endswith_test"
@mildronize
mildronize / boot-repair.sh
Last active May 30, 2016 04:08
Boot Repair for ubuntu
#!/bin/bash
sudo add-apt-repository ppa:yannubuntu/boot-repair && \
sudo apt-get update && \
sudo apt-get install -y boot-repair && \
sudo boot-repair

Docker Cheat Sheet


Build Image

docker build -t [REPOSITORY/IMAGE NAME] [PATH]