Skip to content

Instantly share code, notes, and snippets.

View rouzbeh84's full-sized avatar
๐Ÿ’œ
Staying Safe

rouzbeh84 rouzbeh84

๐Ÿ’œ
Staying Safe
View GitHub Profile
@rouzbeh84
rouzbeh84 / pr-template.md
Created January 9, 2018 19:13
base pull request template
Status Type Env Vars Change
Ready/In Development/Hold Feature/Bug/Chore/Tooling/Release/Hotfix Yes/No

Description

A few sentences describing the overall goals of the pull request's commits. What is the current behavior of the app? What is the updated/expected behavior with this PR?...

Keybase proof

I hereby claim:

  • I am rouzbeh84 on github.
  • I am rouzbeh84 (https://keybase.io/rouzbeh84) on keybase.
  • I have a public key ASBraj1xzV7uXoY9emRB-eov7_ZSuNGGOWwuC6JEoDqkgAo

To claim this, I am signing this object:

@rouzbeh84
rouzbeh84 / podcasts.opml
Created August 6, 2018 16:55
list of subscribed podcasts
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<opml version="1.0">
<head>
<title>Breaker Subscriptions</title>
</head>
<body>
<outline title="Radiolab" xmlUrl="http://feeds.wnyc.org/radiolab" type="rss" text="Radiolab" />
<outline title="Serial" xmlUrl="http://feeds.serialpodcast.org/serialpodcast" type="rss" text="Serial" />
<outline title="Reply All" xmlUrl="http://feeds.gimletmedia.com/hearreplyall" type="rss" text="Reply All" />
<outline title="Invisibilia" xmlUrl="https://www.npr.org/rss/podcast.php?id=510307" type="rss" text="Invisibilia" />
@rouzbeh84
rouzbeh84 / bash.md
Created November 13, 2018 00:49
bash tips

I have marked with a * those which I think are absolutely essential Items for each section are sorted by oldest to newest. Come back soon for more!

BASH

  • In bash, 'ctrl-r' searches your command history as you type
  • Input from the commandline as if it were a file by replacing 'command < file.in' with 'command <<< "some input text"'
  • '^' is a sed-like operator to replace chars from last command 'ls docs; ^docs^web^' is equal to 'ls web'. The second argument can be empty.
  • '!!' expands to the last typed command. Useful for root commands:
@rouzbeh84
rouzbeh84 / grok-code.md
Last active June 26, 2019 16:16
just some suggestions and links on how to jump into large codebases

I would begin by saying to never be afraid to ask questions but to be sure your questions are structured well and actually worthwhile so you can extract usable info from the answers. Here are some resources to help with that:

StackOverflow

OpenSource

This one is long but comprehensive: CatB

There will probably be some overlap between these but that's good, it will show what is most valued in asking questions.