| License Name | Description | Restrictions | Permissive or Copyleft | Allows Commercial Use | Example |
|---|---|---|---|---|---|
| GNU General Public License (GPL) | Copyleft license that requires derivative works to be licensed under the GPL as well. | Must provide source code, modifications must be open source | Copyleft | Yes | Linux K |
| npm install --save express express-openid-connect |
The first post has been published: https://www.swyx.io/writing/cloud-distros
The second post has been adapted for Temporal: https://www.swyx.io/why-temporal/
these are bullet points of a blogpost on a topic i know very little about but i feel like there is something there that is happening as we speak
| // semantic-ui-form.js | |
| import React from 'react'; | |
| import PropTypes from 'prop-types'; | |
| import { Form, Input } from 'semantic-ui-react'; | |
| export default function semanticFormField ({ input, type, label, placeholder, meta: { touched, error, warning }, as: As = Input, ...props }) { | |
| function handleChange (e, { value }) { | |
| return input.onChange(value); | |
| } |
rails new <project_name> -d postgresql --skip-turbolinks --skip-spring -T
-d postgresqlsets up the project to use PostgreSQL--skip-turbolinks&--skip-springcreates a project that does not use turbolinks or spring-Tskips the creation of the test directory and use ofTest::Unit
- In the Gemfile:
(NOTE: Current and future versions of this and any other Advantage 2-related things I post will be at https://github.com/nicholasknight/adv2keyboard)
I received my Advantage 2 today. There's no full manual yet, even though keyboards are apparently arriving (hint, hint, Kinesis). The quick start guide leaves out the "power user mode", and there are some other quirks.
Update: A manual has been posted at http://www.kinesis-ergo.com/advantage2-resources/
It includes a dictionary for the key maps, but I know it leaves at least one possible key undocumented: it does not list f14, but I have successfully mapped my scrollock to f14 regardless.
It also mentions a firmware version (1.0.18) that doesn't seem to be available yet, with a new feature (status report playback speed).
The following links were used as references for this talk: SF RoR Meetup: High Performance Learning
- Dan Pink on what motivates us in Drive (and the book)
- Angela Duckworth's work on the key to success: Grit
- Shawn Anchor on the Happy Secret to Better Work
- Richard Mayer on Applying the Science of Learning
- Charles Duhigg on The Power of Habit
- Andy Puddicombe on Mindfulness
- Carol Dweck on Mindset
| class Dog # class name is a "constant" | |
| # Objects combine: | |
| # -- state (instance variables) | |
| # -- behavior (methods) | |
| def initialize | |
| # first step in the object's lifecycle | |
| # do i have any setup i actually need to do? | |
| @animals_chased = [] | |
| end |