Skip to content

Instantly share code, notes, and snippets.

View MisterC-Rogers's full-sized avatar
🎯
Focusing

Mister C. Rogers MisterC-Rogers

🎯
Focusing
View GitHub Profile
const divvy = document.getElementById('1fa28980-c007-11eb-8a00-9de619bfa83e');
console.log("This is my div =>",divvy)
divvy.style.backgroundColor = "red";
@MisterC-Rogers
MisterC-Rogers / gist:03e81be63ecc13d7fe172d682d216f04
Last active October 22, 2020 14:37
It's a list of companies that have an 'easy apply' option on there websites. I'm sure the list could grow, but wanted to share. You can load it in a Markdown viewer or add it to one of your github repo's for clean viewing.

Easy Application

Have you ever tried to apply for a company only to discover they won't let you upload your resume? Instead you have to meticulously fill out pages of information (all of which could be found on your resume).

This is a list of companies that are easy to apply to. These companies use a job application system that allows a candidate to focus on their application rather spend energy fighting bad UX (e.g. Jobvite, Lever, Greenhouse are all good systems). If the company uses a system that requires the candidate to manually input every field from their resume (e.g. Taleo and Brassring) they are not allowed on this list.

Please note that it is not encouraged to blindly apply to every company on this list. I made this list because I felt that the application process of a company is a reflection on their culture and internal processes. Every link is to the company's main career page so that you can spend some time learning about the company and making sure it's a good fit for you before applying.

@MisterC-Rogers
MisterC-Rogers / redux-guide.js
Created November 22, 2019 03:34 — forked from vinnihoke/redux-guide.js
Step by Step Redux Guide:
// Step 1: Setup Folders
// Create an actions and a reducers folder. Then add an index.js file in both folders.
// Required dependency installs: axios, redux, react-redux, redux-thunk
************************************************
// Step 2: Create Redux Config File
// @ Root of application create a <config>.js file.
import { createStore } from 'redux';
@MisterC-Rogers
MisterC-Rogers / Setting up an SQL Project
Created August 23, 2019 03:58 — forked from Copterdoctor/Setting up an SQL Project
Setting up an Knex SQLite3 project from scratch
Configuring the setup
1. Setting up the dependices
yarn init -y (Initalises a packag.json with the default values)
yarn add knex sqlite3 (Add knex sqlite module)
yarn add jest --dev (Add jest to dev dependices)
2. Adding scripts to the package.json file