I hereby claim:
- I am lingtran on github.
- I am lingtran (https://keybase.io/lingtran) on keybase.
- I have a public key ASAYCB3_6zXHNC6RMljYJtJFHjn3MIyYA4_7ZpwrmZi6iQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Which sections were interesting?
Which sections did you totally skim?
The list of higher-order functions that are also available in Ruby.
Drawing a table in EJS Ch6 because I found their explanations confusing and so got totally lost. It was difficult to engage with the material when perplexed.
Do you think the reading was valuable?
My first lightning talk this module was titled "Seize the 'vuja de'". 'Deja vu' is about experiencing something new as if it were a familiar experience. 'Vuja de' is its inverse. And to seize the 'vuja de' gets at intentionally approaching something familiar in a brand new way. The example I used as something familiar was the emotional management of fear/anxiety/doubt. And the techniques for grappling with these familiar demons were ideas pulled from a chapter of a recently published book entitled "Originals: How Non-conformists Move the World," written by an organizational psychologist named Adam Grant. Since I gave this lightning talk during week five, which is in the middle of final projects and precedes final assessments, I wanted to talk about coping mechanisms that can enhance, rather than derail, performance under pressure.
I decided on this topic after stumbling upon Grant's [TED talk](https:/
Git commands & what they do
git stash
git stash save
if want to be explicitgit stash apply
Beware that it may potentially be restored on top of a different commit
## Models, Databases, Relationships in Rails | |
#### What is the difference between a primary key and a foreign key? Where would we find a primary key? What would it be called by default? Where would we find a foreign key? What is the naming convention for a foreign key? | |
Primary key is a unique identifier in Tables. It can exist as a foreign key in AnotherTables or other tables with which it has a relationship. "id" - default name. "table_id" in AnotherTables. | |
#### Write down one example of: | |
* a `one-to-one `relationship: (current democratic society enables) one country has one president | |
* a `one-to-many relationship': one country has many citizens | |
* a `many-to-many relationship`: (given current industrial agricultural norms...I assume...) each agricultural crop has many producers, each producer has many agricultural crops |
In preparation for the hackathon this week I have been trying to revive our in-house cryptocurrency project, AKA ClarkeCoin
4:15 - 5:15 Each Day
It is the gatekeeper of the application. It's the first response in the request/response chain. It takes information from a request, parses it and then executes to plan depending on the HTTP verb, which determines what the client gets back.
Either as instance variable or local variables within the verb block. If local variable, utilize :locals, paired with view erb file/variable.
Ex: Instance Variable