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:
I hereby claim:
To claim this, I am signing this object:
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.
9-10am: breakfast/respond to emails
10-11am: codewars
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(); | |
} |
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: |