Skip to content

Instantly share code, notes, and snippets.

View stevecalla's full-sized avatar

Steve Calla (he/him) stevecalla

  • Boulder, Colorado
  • 01:22 (UTC -06:00)
View GitHub Profile

Career Journal: Mod 4 XX-XX-2020.md

Note: Mod 4 Prompts will be provided to you by your Career Specialist at that time.

Week 1: [Link here to your gist]

  • (completed)
  • (partially complete)
  • (not started)

If you will not be able to complete your journal this week, please provide an update for the Career Dev team on when you'll have it completed here:

Career Journal: Mod 3 XX-XX-2020.md

Week 1: [Link here to your gist]

  • (completed)
  • (partially complete)
  • (not started)

If you will not be able to complete your journal this week, please provide an update for the Career Dev team on when you'll have it completed here:

Week 2: [Link here to your gist]

Career Journal: Mod 2 XX-XX-2020.md

Week 1: [Link here to your gist]

  • (completed)
  • (partially complete)
  • (not started)

If you will not be able to complete your journal this week, please provide an update for the Career Dev team on when you'll have it completed here:

Week 2: [Link here to your gist]

Career Journal: Mod 1 Steve Calla


Mod 1 First Time - Journal Reflections (Dec '20 to Jan '21)


Mod 1 Week 1: Understanding your strengths (status = COMPLETE) Answer the below questions in a separate gist and link them into your career journal using this template:

Week 1: [Link here to your gist]

  • (completed)
  • (partially complete)

Career Journal: Mod 0 10-17-20.md

  1. When you've worked towards a goal in the past, what systems or tools have been helpful for you in accomplishing that goal? How could you adapt those same systems/tools to use while at Turing?

    • Steve Calla - I use a variety of systems and/or tools depending on the end objective. Whether in a team or individual environment, my first objective is to understand the goal with as much clarity as possible. Secondarly, I attempt to understand the timeline and key deliverables. Subject to that macro level information/overview, I break down the goal into smaller pieces again either in a team or individual environment then I create tasks necessary to complete each piece or section. I typically attempt to complete the goal ahead of schedule to allow for review and improvement if possible as I providing for some space to re-think or review allows for improvement or the ability to exceed the goal.
  2. As you start this new career, what is one of your strengths and how do

Objective: Document data types knowledge using Markdown

Based on Turing Mod0 Class 1 on Monday 10/5/2020

Instructor: David Whitaker

There are at least 6 different data types

  1. Strings
  2. Integers
  3. Floats
  4. Boolean
  5. Array
@alexanderGugel
alexanderGugel / gist:f3e8e82b606dac9624b4
Created November 10, 2014 22:07
Node.JS Redis in production
// Port, host and auth token of Redis server might be defined as environment
// variables. If not, fall back to defaults.
var redisPort = process.env.REDIS_PORT || 6379,
redisHost = process.env.REDIS_HOST || '127.0.0.1',
redisAuth = process.env.REDIS_AUTH || null,
redis = require('redis');
// Since we are waiting for the error event, we don't have to check for errors
// individually after each Redis command.
var onError = function (error) {