โปรเจ็คมี 2 ส่วน
- Frontend: Technukrom
- Background Service: ตัวดึงข้อมูล feed data-crawler
Frontend stacks:
- Web: Next.js (React)
| <!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; |
โปรเจ็คมี 2 ส่วน
Frontend stacks:
Inspire from Publish from Bear to WordPress on iOS's rovest repo
Version 1.0.0 Download
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| :: 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` |
| 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) |
| #!/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" |
| #!/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]