This file contains 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
<section id="quotes"> | |
<div class="quote"> | |
<p class="text">You guys go on without me! <br/> I'm going to go… <br/> look for more stuff to steal!</p> | |
<p class="attrib">Bender<br/>Futurama</p> | |
</div> | |
<div class="quote"> | |
<p class="text">And I'd do it again! <br/> And perhaps a third time! <br/> But that would be it.</p> | |
<p class="attrib">Bender<br/>Futurama</p> | |
</div> | |
</section> |
This file contains 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"?> | |
<settings> | |
<console change_refresh="10" refresh="100" rows="25" columns="80" buffer_rows="500" buffer_columns="0" shell="C:\Program Files (x86)\Git\bin\sh.exe --login -i" init_dir="C:\Users\blevay" start_hidden="0" save_size="0" background_text_opacity="255"> | |
<colors> | |
<color id="0" r="26" g="26" b="26"/> | |
<color id="1" r="38" g="139" b="210"/> | |
<color id="2" r="53" g="164" b="56"/> | |
<color id="3" r="42" g="161" b="152"/> | |
<color id="4" r="223" g="45" b="45"/> | |
<color id="5" r="211" g="54" b="130"/> |
This file contains 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
\[\e]0;\u@\h: \w\a\]--- ${debian_chroot:+($debian_chroot)}\[\033[01;34m\]\w $(git_prompt_info)\n\[\033[00m\]\! \[\033[01;32m\]\u\[\033[00m\]@\[\033[01;32m\]\h\[\033[00m\]\$ |
This file contains 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
Show hidden characters
{ | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_with_fields": true, | |
"bold_folder_labels": false, | |
"caret_style": "phase", | |
"color_scheme": "Packages/User/Twilight (SL).tmTheme", | |
"ensure_newline_at_eof_on_save": true, | |
"font_face": "Anonymous Pro", | |
"font_size": 10, | |
"ignored_packages": |
This file contains 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
alfred://theme/searchForegroundColor=rgba(219,219,219,1.00)&resultSubtextFontSize=1&searchSelectionForegroundColor=rgba(255,255,255,1.00)&separatorColor=rgba(69,69,69,0.40)&resultSelectedBackgroundColor=rgba(104,127,168,1.00)&shortcutColor=rgba(166,166,166,1.00)&scrollbarColor=rgba(191,191,191,0.40)&imageStyle=8&resultSubtextFont=Helvetica&background=rgba(81,81,81,1.00)&shortcutFontSize=2&searchFontSize=4&resultSubtextColor=rgba(168,168,168,1.00)&searchBackgroundColor=rgba(81,81,81,1.00)&name=Twilight&resultTextFontSize=2&resultSelectedSubtextColor=rgba(217,217,217,1.00)&shortcutSelectedColor=rgba(255,255,255,1.00)&widthSize=3&border=rgba(81,81,81,1.00)&resultTextFont=Helvetica&resultTextColor=rgba(221,221,221,1.00)&cornerRoundness=0&searchFont=Helvetica&searchPaddingSize=3&credits=Bryan%20Levay&searchSelectionBackgroundColor=rgba(102,122,140,1.00)&resultSelectedTextColor=rgba(255,255,248,1.00)&resultPaddingSize=1&shortcutFont=Helvetica |
This file contains 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.Component.extend({ | |
}); |
This file contains 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.Component.extend({ | |
myThing: 'some thing', | |
init() { | |
this._super(...arguments); | |
this.set('myThing', 'it\'s a thing!') | |
} | |
}); |
This file contains 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', | |
init() { | |
this._super(...arguments); | |
const store = this.get('store'); | |
window.thingz = this.thingz = []; |
This file contains 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', | |
init() { | |
const myThingy = Ember.RSVP.defer(); | |
myThingy.reject(); | |
myThingy.promise.catch((message) => { | |
console.log('catch: ' + message); |
This file contains 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.Component.extend({ | |
}); |
OlderNewer