Skip to content

Instantly share code, notes, and snippets.

@jayd3e
jayd3e / gist:3fc81e74291a1375406e
Created August 28, 2014 18:55
SCSS Code Standard
  • All variable declarations at the top
  • Partials
  • each block goes from @extends(), @includes, space, properties, space, child blocks. All properties are alphabetized.
.partial {
    @include border-radius(3px);
    @include cursor-hover();
    
 background-color: #FFF;
disable_scroll: function() {
/* if scrolling is even possible */
if ($(document).height() > $(window).height()) {
var scrollTop = (this.html_el.scrollTop()) ? this.html_el.scrollTop() : this.body_el.scrollTop(); // Works for Chrome, Firefox, IE...
if (scrollTop < 0) { scrollTop = 0; }
$('html').addClass('is-unscrollable').css('top', -scrollTop);
}
},
},
/*
* Tracking
*/
track_download: function() {
mixpanel.track('shit happened', {
'name': 'buzzsaw',
'context': this.options.context
old_courses = [
(1, "Physics 101"),
(2, "Physics 101")
]
# step1
check for course_joins, posts, files on each one
# step2
3 possible outcomes:
{
"color_scheme": "Packages/User/Twilight (SL).tmTheme",
"detect_indentation": false,
"tab_size": 4,
"theme": "Soda Dark.sublime-theme",
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true,
"word_wrap": "false"
}
(Pdb) bt
/opt/webapp/clusterflunk/lib/python2.7/site-packages/waitress/task.py(74)handler_thread()
-> task.service()
/opt/webapp/clusterflunk/lib/python2.7/site-packages/waitress/channel.py(332)service()
-> task.service()
/opt/webapp/clusterflunk/lib/python2.7/site-packages/waitress/task.py(173)service()
-> self.execute()
/opt/webapp/clusterflunk/lib/python2.7/site-packages/waitress/task.py(388)execute()
-> app_iter = self.channel.server.application(env, start_response)
/opt/webapp/clusterflunk/lib/python2.7/site-packages/paste/gzipper.py(38)__call__()
def setUp(self):
self.request = Request.blank('/')
self.config = testing.setUp(request=self.request,
settings=settings)
self.request.registry = self.config.registry
# call the main test app configuration
self.main(self.config, settings)
def setUp(self):
environ = {}
self.request = Request(environ)
self.config = testing.setUp(request=self.request,
settings=settings)
# call the main test app configuration
self.main(self.config, settings)
<?php
$suits = array('C', 'D', 'H', 'S');
$cards = array(2, 3, 4, 5, 6, 7, 8, 9, 10, 'J', 'Q', 'K','A');
$deck = array();
foreach ($suits as $suit) {
foreach ($cards as $card) {
array_push($deck, $suit . $card);
}
}
var universities = [
{
'name': 'University of Iowa'
},
{
'name': 'University of Ohio'
}
];
_.each(universities, function(university, i) {