Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| searchText: null, | |
| searchResults: function() { | |
| var searchText = this.get('searchText'); | |
| if (!searchText) { return; } | |
| return this.store.find('post', {name: searchText}); |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| var AWS = require('aws-sdk'), | |
| fs = require('fs'); | |
| // For dev purposes only | |
| AWS.config.update({ accessKeyId: '...', secretAccessKey: '...' }); | |
| // Read in the file, convert it to base64, store to S3 | |
| fs.readFile('del.txt', function (err, data) { | |
| if (err) { throw err; } |
| # | |
| # PostgreSQL writes two optional commands to the database schema | |
| # file, called db/structure.sql, that can only be run as a root | |
| # database user. These are not needed actually, so comment them | |
| # out automatically | |
| # | |
| # CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; | |
| # COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; | |
| # | |
| namespace :db do |