Uncaught Error: You modified ShouldDisplay(dependencyCycles) twice in a single render. This was unreliable in Ember 1.x and will be removed in Ember 3.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set scrolloff=3 "space between cursor and terminal bottom | |
set nocompatible "VIM over Vi | |
set undolevels=1500 "how many times the user can undo | |
set sidescrolloff=3 "space between cursor and terminal side | |
set tabstop=2 "tab width | |
set shiftwidth=2 | |
set expandtab | |
set smarttab | |
set bs=2 " Allow backspace to back over everything in insert mode including newlines | |
set cindent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQrUV5+yB65w++xOQBi8PvsBGraPkG6/l6i5a3iHDL31M5c3sFMDHYx3SWxo0OIYxlBeY6S2VhMTURlwTDLvQO6Q4IRIPDz61LX15d+EfsMQyveYh53SHEyPsKfjzIYL3CfkUUVp1lvSlJ0IdAflm/1e2ajAVaSUNcut6PkBJ/a0JitpmQktrmx9Gz/7ERR1vC3DdYQvYdutAxYHkrOe5+7/BHM72fKbMtd/3iV3DtLYQW/jnWyfCEbTw64GOty+R7J2TLqHhJffu8ad9tX2q12mPiuOp2Em1DDc2qosBGfTUuWVGmBqzepI79ZzKt561Sf7UMQbBLDN1QIClBURRr [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdio.h" | |
#include "malloc.h" | |
int main() { | |
char *prd = (char*) malloc(32); | |
scanf("%s", prd); | |
printf("%c%c%c%c", *prd, *(prd++), *(prd++), *(prd++)); | |
return 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"*.hbs": "#400" | |
"*.js": "#040" | |
"*.rb": "#004" | |
"*.scss": "#440" | |
"**/tests/**": "#044" | |
"**/mirage/**": "#404" | |
"**/locales/**": "#444" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\x auto | |
\timing on | |
\pset null '(NULL)' | |
\set PROMPT1 '%[%033[32m%]psql:%[%033[36m%]//%n%[%033[34m%]@%[%033[36m%]%`hostname`:%>%[%033[33m%]/%/ %[%033[K%]%[%033[0m%]\n' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
data: [ | |
{ | |
src: 'http://placekitten.com/g/600/400', | |
w: 600, | |
h: 400, | |
title: 'whooa', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import DS from 'ember-data'; | |
import Ember from 'ember'; | |
export default DS.RESTAdapter.extend({ | |
// Just simple hack to bypass CORS checks | |
host: 'https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/2.7.0/ember-data.js', | |
pathForType: function(type) { | |
return ''; | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle', | |
foo: Ember.computed('model', function () { | |
return this.getWithDefault('model', 'model is undefined'); | |
}), | |
bar: Ember.computed('barProperty', function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<foo> | |
<![CDATA[ | |
<foo> | |
<![CDATA[ | |
yeah, this trick rocks! ... | |
<foo></foo> | |
]]> | |
</foo> | |
]]> |