Skip to content

Instantly share code, notes, and snippets.

View explooosion's full-sized avatar
🏡
Working from home

Robby explooosion

🏡
Working from home
View GitHub Profile
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder]
@="Open Cmder Here"
"Icon"="C:\\cmder\\Cmder.exe,0"
[HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder\command]
@="\"C:\\cmder\\Cmder.exe\" \"%V\""
@explooosion
explooosion / GitCommitEmoji.md
Created April 8, 2018 05:52 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji

開源之道

Original transcript: http://allisonrandal.com/2012/04/15/open-source-enlightenment/

這幾年來,我慢慢覺得,我們參與開源社群,就像是在一條道路上並肩而行:這不僅讓我們成為更好的程式設計者,也讓我們通過與人合作,而成為更好的人。

您可以將它想成一條修行之道,讓身而為人的我們能夠不斷成長。接下來,我想談談我對開源世界的個人觀點,希望能與您分享。

首先,人是一切開源專案的核心。程式碼是很重要,但最核心的永遠是人。

@explooosion
explooosion / gist:2c8f6805eb94250cb6a0a5600a1711b2
Created August 8, 2018 19:39
Dotblog - custom css backup
@import url(http://fonts.googleapis.com/earlyaccess/notosanstc.css); /*文章內容首行*/
.article__desc {
font-family: 'Noto Sans TC', sans-serif;
font-size: 18px;
font-weight: bold;
} /*文章標題*/
.article__title:hover {
-webkit-transform: scale(1.1);
@explooosion
explooosion / pr-rule.md
Created August 20, 2018 08:24
Rules for PR

Rules

Commits

  • Use this commit message format (angular style):

    [<type>] <subject> <BLANK LINE> <body>

@explooosion
explooosion / repo-reset.md
Created September 7, 2018 09:08 — forked from heiswayi/repo-reset.md
GitHub - Delete commits history with git commands

First Method

Deleting the .git folder may cause problems in our git repository. If we want to delete all of our commits history, but keep the code in its current state, try this:

# Check out to a temporary branch:
git checkout --orphan TEMP_BRANCH

# Add all the files:
git add -A
@explooosion
explooosion / git.md
Created September 30, 2018 15:11
git default pull origin master
git config branch.master.remote origin
git config branch.master.merge refs/heads/master
@explooosion
explooosion / manifest.json
Created December 4, 2018 07:04
manifest sample file
{
"name": "Magic Leap - Magic Leap",
"short_name": "Magic Leap",
"start_url": "/",
"theme_color": "#fbfafa",
"background_color": "#fbfafa",
"display": "standalone",
"icons": [
{
"src": "/static/icons/android-chrome-36x36.png?v=20171114",
@explooosion
explooosion / angular-cli.md
Created December 6, 2018 11:11
Angular CLI command
ng config -g cli.packageManager yarn