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 / 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.

@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 / 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" />

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 / 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?...

@rouzbeh84
rouzbeh84 / cloudSettings
Last active October 17, 2017 21:40
Visual Studio Code Settings Sync Gist
{"lastUpload":"2017-10-17T21:40:29.605Z","extensionVersion":"v2.8.3"}
@rouzbeh84
rouzbeh84 / vscode-custom-colors.json
Created October 5, 2017 05:56
quasi complete list of workspace customization options for vscode
{
"workbench.colorCustomizations": {
"activityBar.background": "#00AA00",
"activityBar.background": "", // Activity Bar bgcolor
"activityBar.border": "", // Activity Bar border color with the sidebar
"activityBar.dropBackground": "", // Drag and drop feedback color for the Activity Bar items
"activityBar.foreground": "", // Activity bar fgcolor (i.e. used for the icons)
"activityBarBadge.background": "", // Activity notification badge bgcolor
"activityBarBadge.foreground": "", // Activity notification badge fgcolor
"badge.background": "", // Badge bgcolor
@rouzbeh84
rouzbeh84 / pair-programming.md
Last active April 6, 2023 21:24
resources for pair programming remotely and on site

Guide Page

To start using this site you need to have a GitHub account to sign in. Once signed in it will create your profiles information based on your GitHub account and return you to your brand new profile page. Click the profile editor button to enter in if you want to be a student, partner or teacher. You should also enter in what skills you have and what skills you are looking to learn on this page.

Once you have your profile how you like it, head on over to the search page to look for what you want to use on your next project and what kind of partner you are looking for. After hitting the search button we will find the very best matches for you to begin your pair programming journey!


What is Pair Programming?