I hereby claim:
- I am codyduval on github.
- I am codyduval (https://keybase.io/codyduval) on keybase.
- I have a public key whose fingerprint is E5C8 E770 7528 5311 3530 3905 E07D 7E85 FC81 8E82
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| /** @jsx React.DOM */ | |
| var SessionsBox = React.createClass({ | |
| handleSelect: function (e) { | |
| this.props.onSelect(e); | |
| }, | |
| handleFilter: function(semesterName) { | |
| var filteredSessions = _.filter(this.props.initialSessions, { 'semester': semesterName }); | |
| this.setState({ |
| var PostsList = React.createClass({ | |
| getInitialState: function() { | |
| return { posts: this.props.initialPosts }; | |
| }, | |
| render: function() { | |
| var posts = this.state.posts.map(function(post) { | |
| return <Post key={post.id} post={post} />; | |
| }); | |
| 11 def introduction | |
| 12 @user = current_user | |
| 13 unless @user.taste_profile | |
| 14 @taste_profile = @user.build_taste_profile | |
| 15 render 'introduction.html.haml', :layout => 'numokha.html.haml' | |
| 16 @taste_profile.save | |
| 17 if session[:return_to] | |
| 18 redirect_to session[:return_to] | |
| 19 end | |
| 20 else |
| import java.util.Scanner; | |
| import java.util.*; | |
| public class go { | |
| public static void main(String[] args) { | |
| ArrayList<Character> wordCharacters = new ArrayList<Character>(); | |
| Session 1: | |
| Using an IDE, components of a computer, Java programming overview, compiled vs. interpreted language, static vs. dynamic languages. | |
| Session 2: | |
| Source control, code reviews, naming conventions, debugging in Eclipse, intro to data structures | |
| Session 3: | |
| Data structures: arrays, lists, stacks, queues Asymptotic notation (Big “Oh”) | |
| Session 4: |