Skip to content

Instantly share code, notes, and snippets.

View saxenanurag's full-sized avatar
🐍
import this

Anurag Saxena saxenanurag

🐍
import this
View GitHub Profile

Effective Engineer - Notes

What's an Effective Engineer?

  • They are the people who get things done. Effective Engineers produce results.

Adopt the Right Mindsets

@saxenanurag
saxenanurag / tmux-cheatsheet.markdown
Created November 2, 2018 00:05 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@saxenanurag
saxenanurag / zillow.py
Created July 2, 2019 01:20 — forked from scrapehero/zillow.py
Python 3 script to find real estate listings of properties up for sale on zillow.com
from lxml import html
import requests
import unicodecsv as csv
import argparse
import json
def clean(text):
if text:
return ' '.join(' '.join(text).split())

Minutes

  • Suz Hinton - noopkat - streaming setup
  • Recording software if difficult
    • OBS
    • StreamLabs OBS
    • Quadlibet?
    • Text source plugins that OBS reads
  • StreamLabs has plugins for useful stuff
@saxenanurag
saxenanurag / lamp_setup.sh
Created July 19, 2019 14:33 — forked from gnovaro/lamp_setup.sh
PHP Lamp Setup Nginx + PHP 7.3
#!/bin/bash
# One Click LAMP Server Installer (Ubuntu/Debian) - Roskus
# @author Gustavo Novaro
# @version 3.3.1
# @url https://gist.github.com/gnovaro/5295150774be1794028c15c83313c16e
# Run: sudo ./lamp_setup.sh
###############################################
#Servidor Web http
apt-get install -y nginx
@saxenanurag
saxenanurag / settings.json
Created July 25, 2019 18:04
vscode-insiders-settings
{
"workbench.colorTheme": "Night Owl",
"editor.wordWrap": "on",
"editor.rulers": [72,79,100],
"editor.cursorBlinking": "solid",
"editor.cursorStyle": "line",
"editor.renderWhitespace": "all",
"editor.minimap.enabled": false,
"terminal.integrated.fontFamily": "monospace",
"files.trimTrailingWhitespace": true,
# Status update interval
set -g status-interval 1
# Basic status bar colors
set -g status-bg black
set -g status-fg cyan
# Left side of status bar
set -g status-left-bg black
set -g status-left-fg green
#!/bin/bash
##########
# contents
##########
# contents
# notes
# script setup
# git config files
@saxenanurag
saxenanurag / git.plugin.zsh
Last active January 21, 2020 02:27 — forked from DavidToca/git.plugin.zsh
oh-my-zsh git alias
# Aliases
alias g='git'
alias gst='git status'
alias gl='git pull'
alias gup='git fetch && git rebase'
alias gp='git push'
alias gc='git commit -v'
alias gca='git commit -v -a'
alias gco='git checkout'
alias gcm='git checkout master'
# Insomnia Configuration
## Run the test query
{
shop {
id
name
}
}
# Query Structure Examples