Skip to content

Instantly share code, notes, and snippets.

View jksmall0631's full-sized avatar

Joshua Small jksmall0631

View GitHub Profile

Keybase proof

I hereby claim:

  • I am jksmall0631 on github.
  • I am jksmall0631 (https://keybase.io/jksmall0631) on keybase.
  • I have a public key ASCZXxjbgYsoQfsJ1zJpXVHnJREqSjAWSBH8sDPcgAcCZQo

To claim this, I am signing this object:

Interview Overview:

Prep suggestions: Write down answers to generic interview questions.

Interview overview: Answered a series of generic interview questions from "what is one of your greatest weaknesses?" to "what do you know about our company?"

Reflections: Should have done more prep for generic questions, I got tripped up on a couple and didn't give the best answers.

Post-Grad Job Search Action Plan Template

1: Job Search Plan: Create a schedule & goals

40-hour work week:

9-10am: breakfast/respond to emails

10-11am: codewars

@jksmall0631
jksmall0631 / cold-outreach
Last active April 11, 2017 15:18
Outreach emails
Fitbot
Robbie Jack, Co-founder
3/18/17
No answer
Zen Planner
Ti Wegmeyer, engineer
3/19/17
Scheduled meetup, never heard from her when meetup date came.
ipcMain.on('save-selfie', (event, args) => {
const { fileName, img } = args
saveSelfie(fileName, img)
.then(path => wallpaper.set(path, { scale: 'fill' }))
.then(_ => {
notifier.notify({
'title': 'Wallpaper Updated',
'message': 'Updated Your Desktop Wallpaper to Your Selfie',
'sound': false,
ipcMain.on('save-photo', (event, args) => {
const { url, fileName } = args
const picsDir = app.getPath('pictures')
const path = join(picsDir, 'SplashTop-Wallpapers', fileName)
downloadPic(url, path)
.then(_ => wallpaper.set(path, { scale: 'fill' }))
.then(_ => {
notifier.notify({
'title': 'Wallpaper Updated',
'message': 'Updated Your Desktop Wallpaper',
ipcRenderer.send('save-photo', { fileName, url })
ipcRenderer.once('save-photo-success', (event, args) => {
console.log('event', event)
console.log('args', args)
})
ipcRenderer.once('save-photo-error', (event, args) => {
console.log('event', event)
console.log('args', args)
import { app, BrowserWindow } from 'electron';
import MenuBuilder from './menu';
let mainWindow = null;
if (process.env.NODE_ENV === 'production') {
const sourceMapSupport = require('source-map-support');
sourceMapSupport.install();
}
@jksmall0631
jksmall0631 / mod4-action-plan
Created February 27, 2017 05:14
Module 4 action plan
Module 4 Goals
In mod 4 I hope to absorb as much information about the back end as possible. Come away with the confidence to potentially apply for a full stack position.
Strategy To Achieve Goals:
Devote an hour each evening to reading about/practicing some piece of tech I am uncomfortable with.
Coding (both including your module 4 curriculum and anything outside of it):
Devote an hour each evening to reading about/practicing some piece of tech I am uncomfortable with.
Opportunities Research:
@jksmall0631
jksmall0631 / Fitness-1.png
Last active February 16, 2017 16:49
fitness-app
Fitness-1.png