Skip to content

Instantly share code, notes, and snippets.

View trailjeep's full-sized avatar
💭
¯\_(ツ)_/¯

trailjeep

💭
¯\_(ツ)_/¯
View GitHub Profile

If you are like me you find yourself cloning a repo, making some proposed changes and then deciding to later contributing back using the GitHub Flow convention. Below is a set of instructions I've developed for myself on how to deal with this scenario and an explanation of why it matters based on jagregory's gist.

To follow GitHub flow you should really have created a fork initially as a public representation of the forked repository and the clone that instead. My understanding is that the typical setup would have your local repository pointing to your fork as origin and the original forked repository as upstream so that you can use these keywords in other git commands.

  1. Clone some repo (you've probably already done this step).

    git clone git@github...some-repo.git
Keys Action
META Menu
META + RETURN Terminal
META + E Files
META + B Browser
META + V Video
META + N Notes
META + . Emoji Picker
META + L Lock

Forge Keybinding Defaults

See the acceptable key combinations on the wiki

Action Shortcut
Increase active window size left <Ctrl> + <Super> + y
Decrease active window size left <Ctrl> + <Shift> + <Super> + o
Increase active window size bottom <Ctrl> + <Super> + u
Decrease active window size bottom <Ctrl> + <Shift> + <Super> + i
Increase active window size top <Ctrl> + <Super> + i
@trailjeep
trailjeep / Custom CSS.css
Created March 6, 2024 14:29 — forked from TaylanTatli/Custom CSS.css
Miniflux Custom CSS
:root {
--font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--body-color: rgba(255, 255, 255, 0.7);
--body-background: #282c34;
--header-link-color: #9b9494;
--header-active-link-color: #d19a66;
--input-border: 1px solid #2c384e;
--input-background: #2c384e;
--input-placeholder-color: #888;
--input-focus-border-color: #d19a66;
@trailjeep
trailjeep / Roku Secret Menus.md
Last active January 23, 2024 11:40 — forked from kgust/Roku Secret Menus.md
Roku Secret Menus

Here is a list of currently-working secret menus, though new ones are discovered often:

Home x5 + FF x 3 + RW x 2
Secret screen one (factory reset, USB test, cycle channel store, update server/software, enable debug)
Home x 5 + U + R + D + L + U
Secret screen two (cycle screenshot, cycle ad-banner, remote auto-pair, log theme info)
Home x 5 + U + D + U + D + U
Wi-Fi secret screen
Home x 5 + FF + PP + RW + PP + FF
@trailjeep
trailjeep / RandomNicknames.swift
Created December 20, 2022 21:28 — forked from LutfiTekin/RandomNicknames.swift
Including 1124 adjectives and 4554 nouns | English
//
// RandomNames.swift
//
// Created by Lütfi Tekin on 27.12.2017.
//
class RandomNickNames{
static let adjectiveList = ["aback","abaft","abandoned","abashed","aberrant","abhorrent","abiding","abject","ablaze","able","abnormal","aboard","aboriginal","abortive","abounding","abrasive","abrupt","absent","absorbed","absorbing","abstracted","absurd","abundant","abusive","acceptable","accessible","accidental","accurate","acid","acidic","acoustic","acrid","actually","ad","hoc","adamant","adaptable","addicted","adhesive","adjoining","adorable","adventurous","afraid","aggressive","agonizing","agreeable","ahead","ajar","alcoholic","alert","alike","alive","alleged","alluring","aloof","amazing","ambiguous","ambitious","amuck","amused","amusing","ancient","angry","animated","annoyed","annoying","anxious","apathetic","aquatic","aromatic","arrogant","ashamed","aspiring","assorted","astonishing","attractive","auspicious","automatic","available","average","awake","aware","awesome","awful","axiomatic","bad","barbarou
@trailjeep
trailjeep / ics2txt.awk
Last active September 13, 2021 23:52 — forked from codedot/ics2tc.awk
Awk script that converts iCalendar .ics files to pipe "|" separated values for further processing
# Adapted from [codedot/ics2tc.awk](https://gist.github.com/codedot/1cce55b4fd354b470becb8ce341b6598)
# Parse ics to pipe seperated values for further processing
# pass in vars (-v from=remove entries before this date) (-v source=add string so i know source from multiple ics's)
function parse(dt) {
Y = substr(dt, 1, 4);
M = substr(dt, 5, 2);
D = substr(dt, 7, 2);
h = substr(dt, 10, 2);
m = substr(dt, 12, 2);
@trailjeep
trailjeep / user.js
Last active August 13, 2021 18:41
Personal Firefox Preferences (add to ~/.mozilla/firefox/PROFILE/user.js
user_pref("app.normandy.api_url", "");
user_pref("app.normandy.enabled", false);
user_pref("app.shield.optoutstudies.enabled", false);
user_pref("app.update.auto", false);
user_pref("beacon.enabled", false);
user_pref("breakpad.reportURL", "");
user_pref("browser.aboutConfig.showWarning", false);
user_pref("browser.cache.offline.enable", false);
user_pref("browser.crashReports.unsubmittedCheck.autoSubmit", false);
user_pref("browser.crashReports.unsubmittedCheck.autoSubmit2", false);
@trailjeep
trailjeep / bootstrap-markdown.css
Created April 25, 2020 22:23
Shaarli Markdown Toolbar Plugin Dark CSS (Unminified) (Ref: https://github.com/immanuelfodor/shaarli-markdown-toolbar)
.md-editor {
display: block;
border: 1px solid #888;
}
.md-editor .md-footer,
.md-editor > .md-header {
display: block;
padding: 6px 4px;
background: #333;
}