- clone swagger-ui
- check out v3.26.0 (
git checkout v3.26.0
) or whatever version we're working on - make your changes!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Update mailhog links sometimes | |
// @description Update broken Links in mailhog | |
// @author Andrew Wylde <https://codelemur.com/> | |
// @match *localhost:8025* | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0.0 | |
// @updateURL https://gist.github.com/codelemur/0973624c0e1ec014561c68a6b28a2117/raw/update-portal-links.user.js | |
// @downloadURL https://gist.github.com/codelemur/0973624c0e1ec014561c68a6b28a2117/raw/update-portal-links.user.js | |
// @require http://code.jquery.com/jquery-3.4.1.min.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
g=git | |
ga='git add' | |
gaa='git add --all' | |
gap='git apply' | |
gapa='git add --patch' | |
gau='git add --update' | |
gav='git add --verbose' | |
gb='git branch' | |
gbD='git branch -D' | |
gba='git branch -a' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <cs50.h> | |
#include <stdint.h> | |
#include <string.h> | |
int logerror(char *msg, int errNum) | |
{ | |
fprintf(stderr, "%s\n", msg); | |
return errNum; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { get } from "lodash-es"; | |
interface Person { | |
name: string; | |
age: number; | |
children?: Person[]; | |
} | |
declare type DriverType = "Race" | "Commercial" | "Personal"; |
- Find the version of ubuntu you're running by using
lsb_release -a
in the terminal. docs - Human-readable filesystem information (how much space is there on my drive?):
df-h
docs examples - How much space do I have on my computer?
du -h
- Can do total for current directory (
du -c
) - Is recursive
- Can exclude
- Can do total for current directory (
- Run chrome w/ custom timezone (great for testing): StackOverflow Post
mkdir ~/chrome-profile
TZ='US/Pacific' open -na "Google Chrome" --args "--user-data-dir=$HOME/chrome-profile"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"C0": { | |
"Frequency (Hz)":16.35, | |
"Wavelength (cm)":2109.89 | |
}, | |
" C#0/Db0 ": { | |
"Frequency (Hz)":17.32, | |
"Wavelength (cm)":1991.47 | |
}, | |
"D0": { |
Project 2 had you working with Ruby, SQL, and Rails to build a full-stack application that was integrated via an API. For Project 3, you'll be working in teams to build one of several exciting projects, with a back-end API that's built on Node, Express, and Mongo.
This project is meant to push you both technically and collaboratively. In many ways, it’s a lot harder to work in a team than to work by yourself, but that's most likely you’re going to find yourself doing in your first development job after WDI, and it's important to learn how to work together.
At a high level, here's what we're looking for with this project, irrespective of which prompt you're working from: