Skip to content

Instantly share code, notes, and snippets.

View thousand's full-sized avatar
🎛️
Twiddlin'

Bryan Levay thousand

🎛️
Twiddlin'
View GitHub Profile
@thousand
thousand / index.html
Created March 30, 2013 02:34
Plugin to do bubbly text slides,
<section id="quotes">
<div class="quote">
<p class="text">You guys go on without me! <br/> I'm going to go&hellip; <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>
@thousand
thousand / console.xml
Last active December 26, 2015 13:19
ConsoleZ configs, inherited from @kevinarcher
<?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"/>
\[\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\]\$
{
"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":
@thousand
thousand / gist:47e94b0f74d7ab5afda9
Created November 12, 2014 01:35
alfred appearance url
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
@thousand
thousand / components.component-the-first.js
Last active August 17, 2016 01:27
indeterminate component
import Ember from 'ember';
export default Ember.Component.extend({
});
import Ember from 'ember';
export default Ember.Component.extend({
myThing: 'some thing',
init() {
this._super(...arguments);
this.set('myThing', 'it\'s a thing!')
}
});
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 = [];
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);
@thousand
thousand / components.wrapper-component.js
Created September 6, 2017 17:38
Templateless Component
import Ember from 'ember';
export default Ember.Component.extend({
});