Skip to content

Instantly share code, notes, and snippets.

View augbog's full-sized avatar
🤡
heehee

Augustus Yuan augbog

🤡
heehee
View GitHub Profile
@augbog
augbog / checkFileForModifiedImports
Last active August 29, 2015 14:28 — forked from madsleejensen/checkFileForModifiedImports
grunt-newer configuration to only preprocess scss files that have imported files that have changed
# grunt-newer:
# Check for newer @import .scss files example
# See: https://github.com/tschaub/grunt-newer/issues/29
newer: {
options: {
override: function(details, include) {
if (details.task === 'sass') {
checkForNewerImports(details.path, details.time, include);
}
@augbog
augbog / LICENSE.txt
Created March 9, 2016 08:52 — forked from 140bytes/LICENSE.txt
140byt.es -- Click ↑↑ fork ↑↑ to play!
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@augbog
augbog / mamp.md
Last active July 7, 2016 20:35 — forked from jfloff/mamp.md
How to get MAMP to work with SSL ... Yes really.

First of all you need to be able to run MAMP in port 80. This is a "heat check" if you don't have any process jamming http ports. You can check it like this:

sudo lsof | grep LISTEN

If you do happen to have any process with something like this *:http (LISTEN), you are in trouble. Before with adventure check if it isn't MAMP itself (yeah, you should close that beforehand)

ps <pid of that process>

If you don't see MAMP, you are in good hands, I have just the thing for you:

@augbog
augbog / index.html
Created July 10, 2017 18:39 — forked from rbndelrio/snip.html
Vertical aligning with Flexbox + IE9 table fallback
<div class="va">
<div class="va__body">
<div class="va__content">
<h1>Hello, World!</h1>
</div>
</div>
</div>
@augbog
augbog / redditwallpapers.sh
Last active August 2, 2017 20:47
CURL imgur links from a subreddit every so often so you always have a variety of wallpapers :)
#!/bin/bash
cd ~/Pictures/wallpapers && curl https://www.reddit.com/r/wallpapers/ | tr '"' '\n' | grep imgur | tee "$$.tmp" | egrep 'http:\/\/i.imgur.com\/.*\.jpg' | xargs wget -q -nc
egrep '^http://imgur.com/a/' "$$.tmp" | xargs -L1 ~/Pictures/wallpapers/imgur_album_download.sh
rm "$$.tmp"
# Credit /u/Molozonide
# https://www.reddit.com/r/wallpapers/comments/138qi2
@augbog
augbog / pax-tickets.sh
Created June 8, 2017 19:12
PAX Website Checker
#!/bin/bash
echo 'Running Pax Tickets script...'
while [ 1 ];
do
count=`curl -H 'Cache-Control: no-cache' -s "http://west.paxsite.com/registration?$[ (RANDOM % 18747214) + 1 ]" | grep -c "showclix.com"`
echo "http://west.paxsite.com/registration?$[ (RANDOM % 18747214) + 1 ]"
if [ "$count" != "0" ]
then
echo "West PAX Site updated!"
@augbog
augbog / closure-question.html
Last active July 23, 2018 19:22
Basic interview question on closures
<div id="hello1">Hello1</div>
<div id="hello2">Hello2</div>
<div id="hello3">Hello3</div>
<div id="hello4">Hello4</div>
<div id="hello5">Hello5</div>
@augbog
augbog / CSGO_Settings_README.md
Last active January 14, 2020 09:32
CS:GO Settings

How to use

I wrote some Powershell scripts to make things easier.

If you do not know where your cfg folder is, run these in order. Replace "G:\Program Files (x86)" with wherever your Steam games are located.

First extract the path of your autoexec.cfg from the raw file link in your gist. For example the one here would look like below and set it into the variable $rawFilePath

PS C:\Users\PC&gt; $rawFilePath = "https://gist.githubusercontent.com/augbog/6b0377d0192a2dea870a60c8001cffac/raw/7d7f9667357866e66d078349b2b44c1704c27fda/autoexec.cfg"
@augbog
augbog / The Technical Interview Cheat Sheet.md
Last active August 1, 2021 15:30 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

Array

Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.
  • Based on tuples from set theory.
@augbog
augbog / Free O'Reilly Books.md
Last active March 20, 2025 07:40
Free O'Reilly Books

Free O'Reilly books and convenient script to just download them.

Thanks /u/FallenAege/ and /u/ShPavel/ from this Reddit post

How to use:

  1. Take the download.sh file and put it into a directory where you want the files to be saved.
  2. cd into the directory and make sure that it has executable permissions (chmod +x download.sh should do it)
  3. Run ./download.sh and wee there it goes. Also if you do not want all the files, just simply comment the ones you do not want.