Skip to content

Instantly share code, notes, and snippets.

View jendiamond's full-sized avatar
🏠
Working from home

JenDiamond jendiamond

🏠
Working from home
View GitHub Profile
@jendiamond
jendiamond / la_rails_learners_firstapp.md
Last active August 29, 2015 14:22
L.A. Rails Learners First App

LA Rails Learners - The Parallell Project

Homework for each week can be found in issues.

Vanilla Rails

We are starting out this project by creating a vanilla Rails App. Once built you will have the base from which you can build any number of other applications.

Our Vanilla Rails Base App will include

  • An new instance of a Rails App
@jendiamond
jendiamond / laxercism_todo-for_5-19-2015.md
Last active August 29, 2015 14:21
LAXercism Todo for 5-19-2015

exercism/DEPRECATED.x-api#54

kytrinyx commented:

Let's work together on Tuesday at the meetup to get this implemented as part of these two endpoints:
GET /problems, implemented in lib/app/routes/problems.rb on line 32 (the test is in test/app/routes/problems_test.rb on line 60)

lib/app/routes/problems.rb

@jendiamond
jendiamond / Python_3rd_Edition_Tony Gaddis_Notes_7-13.md
Last active September 15, 2023 10:48
Starting Out with Python 3rd Edition - Tony Gaddis Chapters 7-13

Starting Out with Python 3rd Edition Chapters 7-13 - Tony Gaddis

Chapter 7

Sequences

sequence - a sequence is an object that holds data, stored one after another. You can perform operations on a sequence to examine and manipulate the items stored in it.

A list is a sequence and a tuple is a sequence.

@jendiamond
jendiamond / python.md
Last active August 29, 2015 14:19
Python Chapter 7 >>>

Python Chapter 7 >>>

##Lists and Tuples

Sequence - an object that holds multiple items of data stored one after the other. You can perform operations on a sequence to examine and manipulate the items stored in it. (Java has atomic data)

Lists and tuples are sequence types

List is an object that contains multiple data items. It is mutable is an Array - it is dynamic, items can be added and removed. You can use methods index, slice to work with them. It can hold different types.

@jendiamond
jendiamond / speakerlist.txt
Created April 18, 2015 16:01
speaker list
Schedule of Talks
10am
Pivotal - Mike McCormick - 10
Verizon - Nicole Willams - 10
Github - Lindsay St John and Shanah Zilberkweit - 5
Ruby vs. Rails by Hannah Howard - 5
What's a Gem? by JZ aka Joanna Zeta - 5
Git vs Github by Vyki Englert - 5
Don't beat yourself up by Jen Diamond - 5
@jendiamond
jendiamond / Java_4th_Edition_Tony Gaddis_Notes.md
Last active August 24, 2022 22:01
Starting Out with Java 4th Edition - Tony Gaddis

Starting Out with Java 4th Edition - Tony Gaddis

Primitive data types - you use these data types to create variables which are storage locations in the computer's memory - they have no other built in capability other than storing a value.
byte short int long char float double boolean

Chapter 4

Increment & Decrement

postfix mode - number++;

@jendiamond
jendiamond / Python_3rd_Edition_Tony Gaddis_Notes_2-6.md
Last active September 15, 2023 10:48
Starting Out with Python 3rd Edition - Tony Gaddis Chapters 2-6

Starting Out with Python 3rd Edition Chapters 2-6 - Tony Gaddis

Chapter 2 & 3

conditionally executed -
block - statements in a group
George Boole - 1800's mathematician
string - a sequence of characters used as data
string literal - a string in the code
numeric literal - a number in the code

@jendiamond
jendiamond / python_chapter_5_notes.md
Last active August 29, 2015 14:18
Python Chapter 5 Notes

Starting Out with Python 3rd Edition - Tony Gaddis

Chapter 5

keyword argument - spefies which parameter variable the argument should be passed to

parameter_name = value

pass by value - a function CAN NOT change the value of an argument that was passed to it

@jendiamond
jendiamond / python_chapter_4_notes.md
Last active November 25, 2023 15:47
Python Chapter 4 Notes

Starting Out with Python 3rd Edition - Tony Gaddis

Chapter 4

repetition structure - a loop - write code once put it in a structure that repeats as many times as necessary

condition controlled loop - while loop - uses a true false condition

while loop (pre-test loop) condition controlled loop - uses a true false condition

@jendiamond
jendiamond / python_notes.md
Last active August 29, 2015 14:18
Python Notes

Starting Out with Python 3rd Edition - Tony Gaddis

Chapter 2 & 3

conditionally executed -
block - statements in a group
George Boole - 1800's mathematician
string - a sequence of characters used as data
string literal - a string in the code
numeric literal - a number in the code