Skip to content

Instantly share code, notes, and snippets.

View jksmall0631's full-sized avatar

Joshua Small jksmall0631

View GitHub Profile
@jksmall0631
jksmall0631 / Challenges.md
Created October 15, 2016 23:19
CSS Challenges

###Challenge 1

For challenge 1, I started by putting a container around div 2 and 3. I changed the position of all divs to inline-block. I gave the container a width and a height to allow room for div 2 and three to sit inside. Finally, I floated the container right.

challenge 1

###Challenge 2

For challenge 2, I started by setting margin to auto on div 2. Then, I set div 3's position to absolute and gave it a right value of 0.

1. Include alt tags for images to allow accessibilty for visually impaired
2. Provide the proper semantic tags to allow easier navigation
3. Use focus to allow keyboard/handsfree nav
@jksmall0631
jksmall0631 / Fitness-1.png
Last active February 16, 2017 16:49
fitness-app
Fitness-1.png
@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:
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();
}
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)
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',
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,
@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.

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