Skip to content

Instantly share code, notes, and snippets.

View gwmccubbin's full-sized avatar
🤢
choking on candy

Gregory McCubbin gwmccubbin

🤢
choking on candy
View GitHub Profile
@gwmccubbin
gwmccubbin / package.json
Last active December 15, 2023 17:48
Bootcamp Package.json
{
"name": "bootcamp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^13.5.0",
"dotenv": "^16.0.0",
"lodash": "^4.17.21",
@gwmccubbin
gwmccubbin / App.js
Last active July 29, 2022 02:35 — forked from GlitchicaL/App.js
Bootcamp App.js Starting Template
function App() {
return (
<div>
{/* Navbar */}
<main className='exchange grid'>
<section className='exchange__section--left grid'>
@gwmccubbin
gwmccubbin / App.css
Created May 2, 2022 20:56 — forked from GlitchicaL/App.css
Bootcamp CSS
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
:root {
--clr-primary: #0D121D;
--clr-secondary: #121A29;
--clr-neutral: #767F92;
--clr-white: #F1F2F9;
--clr-blue: #2187D0;
--clr-red: #F45353;
@gwmccubbin
gwmccubbin / Sublime Text 3 Command
Created April 21, 2022 13:17 — forked from vanderlin/Sublime Text 3 Command
Create a Sublime Text 3 symbolic link to open a file via command line. paste this into terminal and now you can run `subl .` to open the directory in sublime or `subl file.html`
ln -s /Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl /usr/local/bin/subl