Profile:
# Better `ls`
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
alias ls='ls -p'
# Better `grep`
TITLE,SALARY (USD),RACE / ETHNICITY,GENDER IDENTITY,SEXUAL ORIENTATION,EMPLOYMENT STATUS,YRS IN ROLE,YRS EXPERIENCE,INDIRECT REPORTS,DIRECT REPORTS,ADDITIONAL COMPENSATION,"OTHER NOTES, INCLUDING THINGS RELGIOUS PRACTICES, STARTING SALARY, ETC.",COUNTRY,,,,,,,,,,,,,,,,,, | |
Digital Designer,"60,000","Asian, Pacific Islander",Woman (cisgender),Straight,Full-Time,1,2,0,0,yearly bonus,"Starting salary at $60,000, was low-balled because I just graduated",,,,,,,,,,,,,,,,,,, | |
Research Analyst,"61,800",White,Woman (cisgender),Straight,Full-time,1,2,,,0,,,,,,,,,,,,,,,,,,,, | |
Editor,"$77,500",White,Woman (cisgender),Queer,Full-time,2,5,0,0,0,"Starting salary $75,000, one 2% raise",,,,,,,,,,,,,,,,,,, | |
Video Editor/Animator,"80,000",White,Woman (cisgender),Straight,Full-Time,4,4,,,10% bonus,,,,,,,,,,,,,,,,,,,, | |
Product Designer,"$110,000",White,Man (cisgender),Straight,Full time,1,5,0,0,$500 one time bonus,,,,,,,,,,,,,,,,,,,, | |
Sales Planner,"$58,500",White,Woman (cisgender),Straight,Full-time,1,1.5,0,0,N/A,Yearly Bonus,,,,,,,,,, |
window.NREUM || (NREUM = {}), | |
(__nr_require = (function(t, e, n) { | |
function r(n) { | |
if (!e[n]) { | |
const o = (e[n] = { exports: {} }); | |
t[n][0].call( | |
o.exports, | |
e => { | |
const o = t[n][1][e]; | |
return r(o || e); |
describe('Mock XHR Calls', () => { | |
beforeEach(() => { | |
cy.server(); | |
cy.route({ | |
method: 'GET', | |
url: '/api/heroes/11', | |
response: { id: 11, name: 'Bob the Builder' } | |
}).as('heroGet'); | |
cy.route({ |
{"lastUpload":"2020-05-19T18:32:46.599Z","extensionVersion":"v3.4.3"} |
" Settings | |
let barposition = "bottom" | |
" alias ':g' to ':tabnew google' | |
command g tabnew google | |
let completionengines = ["google", "amazon", "imdb"] | |
let searchalias g = "google" " Create a shortcut for search engines. | |
" For example, typing ':tabnew g example' |
defaults: &defaults | |
working_directory: ~/app | |
docker: | |
- image: circleci/node:8.1.4-browsers | |
version: 2 | |
jobs: | |
build: | |
<<: *defaults | |
steps: |
# Open Internet Explorer and run the raw version of this url as the query parameter to BoxStarter's launcher: | |
# http://boxstarter.org/package/nr/url?<raw-version-of-this-gist> | |
# More Info: http://boxstarter.org/WebLauncher | |
# Configure Windows | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Update-ExecutionPolicy Unrestricted | |
cinst -y Microsoft-Hyper-V-All -source windowsFeatures |
server () | |
{ | |
local port="${1:-8000}"; | |
sleep 1 && open "http://localhost:${port}/" & python -c 'import SimpleHTTPServer; | |
map = SimpleHTTPServer.SimpleHTTPRequestHandler.extensions_map; | |
map[""] = "text/plain"; | |
for key, value in map.items(): | |
map[key] = value + ";charset=UTF-8"; | |
SimpleHTTPServer.test();' "$port" | |
} |