http://learn-spacemacs-in-30-days-challenge.readthedocs.io/en/latest/day1.html https://github.com/syl20bnr/spacemacs/blob/master/doc/QUICK_START.org
M-x evil-normal-state RET
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| # curl -0 <url> | bash | |
| sudo apt-get update && / | |
| sudo apt-get -y install emacs && / | |
| git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d && / | |
| emacs |
| #http://askubuntu.com/questions/379123/can-i-zoom-out-windows-or-scale-the-whole-desktop | |
| xrandr --output LVDS1 --mode 1920x1080 --scale 2x2 --fb 3840x2160 --panning 3840x2160 | |
| # 3k | |
| # xrandr --output LVDS1 --mode 1920x1080 --scale 1.5x1.5 --fb 2880x1620 --panning 2880x1620 |
| url: https://y7kim.github.io => yoursite.com | |
| baseurl: /agency-jekyll-theme/ => / | |
| # Site settings | |
| title: Awesome Title | |
| email: [email protected] | |
| description: "Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description." | |
| # Team names, titles and social links |
| /** | |
| * STEP 1: Setup | |
| * - Open Chrome Secure Shell settings | |
| * - Open JS Console (CTRL+SHIFT+J) | |
| * - Copy and paste the following: | |
| */ | |
| var s7d_colours = { | |
| 'base03': '#002b36', | |
| 'base02': '#073642', | |
| 'base01': '#586e75', |
I hereby claim:
To claim this, I am signing this object:
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName: 'Ember Twiddle' | |
| }); |
| import Ember from 'ember'; | |
| import hbs from 'htmlbars-inline-precompile'; | |
| import { connect } from 'ember-redux'; | |
| const stateToComputed = st => { | |
| const {state} = st; | |
| const {list} = state; | |
| const listString = list.map(i=>` | |
| <div style="box-shadow: 4px 4px 8px 4px rgba(0,0,0,0.2);transition: 0.3s;width: 80%;"> | |
| <div style="padding: 20px 16px;"> |
| import Ember from 'ember'; | |
| import hbs from 'htmlbars-inline-precompile'; | |
| import { connect } from 'ember-redux'; | |
| const stateToComputed = state => { | |
| return state; | |
| }; | |
| const dispatchToActions = dispatch => { | |
| return { |