I hereby claim:
- I am gnclmorais on github.
- I am gnclmorais (https://keybase.io/gnclmorais) on keybase.
- I have a public key ASCSdjucny8qcjDql7Lcw91lxP6wl4E07jCdw1jIEG7hYgo
To claim this, I am signing this object:
import Controller from '@ember/controller'; | |
import { tracked } from '@glimmer/tracking'; | |
export default class ApplicationController extends Controller { | |
@tracked isChecked = false; | |
@tracked isIndeterminate = false; | |
cycle = () => { | |
if (this.isChecked) { | |
this.isChecked = false; |
import Component from '@glimmer/component'; | |
import { action } from '@ember/object'; | |
export default class extends Component { | |
@action | |
selectProduct({ id, checked }) { | |
console.log({ id, checked }); | |
} | |
} |
I hereby claim:
To claim this, I am signing this object:
Repository of awesomeness for Ruby and Ruby on Rails resources
function* flatten(matrix) { | |
for (var i = 0; i < matrix.length; i += 1) { | |
let column = matrix[i]; | |
if (!Array.isArray(column)) yield column; | |
for (var j = 0; j < column.length; j += 1) { | |
yield column[j]; | |
} | |
} |
.code-review::after { | |
/** Make the pseudo-element visible: */ | |
content: ''; | |
/** Replicate the font style the <td> element is using: */ | |
font-size: 12px; | |
font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; | |
/** Replicate the left padding the <td> element has: */ | |
margin-left: 10px; | |
/** Setup actual positioning of the element: */ | |
position: absolute; |
Examples here use the default settings, see the VidStab readme on GitHub for more advanced instructions.
brew install ffmpeg --with-libvidstab
(based on this pastebin i've found via Google, markdownified and adjusted to work with the official Yosemite release)
Yosemite's first developer preview was released right after Monday's WWDC opening keynote. For the general public, an open beta will be available to download later this summer. However, for those who want a sneak peek at the new hotness, there is a way to safely install it without risking your machine, using the free and powerful VirtualBox application from Oracle.
(LEGAL DISCLAIMER: This guide aims to explain how to create a virtual machine on a regularly purchased Apple computer, running a genuine Mac OS X operating system, for testing purposes only.)
Character | macOS (UK) | Unicode | Alt Code | HTML (Name) | HTML (Number) |
---|---|---|---|---|---|
Upper case Ç | ⌥ + ⇧ + c | U+00C7 | Alt 0199 | Ç | Ç |
Lower case ç | ⌥ + c | U+00E7 | Alt 0231 | ç | ç |
On Linux, you can use Ctrl + Shift + u followed by the code in hex/unicode (you only need to hold down Ctrl and Shift while typing the code).
/** | |
* bind | |
* Takes a function and returns a new one that will always have a particular context. | |
* If arguments are given, curry will happen: http://ejohn.org/blog/partial-functions-in-javascript/ | |
* | |
* @param {Function} fn Function whose context will be changed | |
* @param {Object} [ctx=this] the obejct to which the context will be set | |
* @param {Mixed} [args...] Arguments to be passed to the resulting function | |
* @returns {Function} | |
*/ |