Scalable CSS
Various approaches to writing efficient, scalable and maintainable CSS.
# -*- coding: utf-8 -*- | |
# Simply shows the bitcoin price in $ from mtgox.com and the total price of all the bitcoins you own. | |
# Screenshot: http://i.imgur.com/UatFwkM.png | |
# Donations --> 1HpQQds9wUFykgwKyzXp747SAb6374RjUL | |
import requests | |
import json | |
from time import sleep | |
from sys import stdout |
# -*- coding: utf-8 -*- | |
# needs socketIO_client (pip install socketIO_client) | |
# Simply shows the bitcoin price in $ from mtgox.com and the total price of all the bitcoins you own. | |
# Screenshot: http://i.imgur.com/UatFwkM.png | |
# Donations --> 1HpQQds9wUFykgwKyzXp747SAb6374RjUL | |
from sys import stdout | |
import argparse | |
import locale |
Various approaches to writing efficient, scalable and maintainable CSS.
import android | |
from sendmail import sendemail | |
from sys import stdout | |
from time import sleep | |
trapped = False | |
image_path = '/sdcard/cat.jpg' | |
counter = 0 | |
mail_tpl = ''' |
import sys | |
from gi.repository import Clutter | |
stage_size = (800, 600) | |
Clutter.init(sys.argv) | |
stage = Clutter.Stage() | |
stage.set_size(*stage_size) | |
stage.set_title('Problems...') |
import sys | |
from gi.repository import Clutter | |
stage_size = (800, 600) | |
Clutter.init(sys.argv) | |
stage = Clutter.Stage() | |
stage.set_size(*stage_size) | |
stage.set_title('Problems...') |
import sys | |
from gi.repository import Clutter | |
Clutter.init(sys.argv) | |
stage = Clutter.Stage() | |
stage.set_size(350, 200) | |
stage.set_title('Fixed Position') | |
def color(string): |
M140 S60.000000 | |
M109 T0 S210.000000 | |
T0 | |
M190 S60.000000 | |
;Sliced at: Sat 19-04-2014 17:01:35 | |
;Basic settings: Layer height: 0.1 Walls: 1 Fill: 20 | |
;Print time: #P_TIME# | |
;Filament used: #F_AMNT#m #F_WGHT#g | |
;Filament cost: #F_COST# | |
;M190 S60 ;Uncomment to add your own bed temperature line |
# from http://stackoverflow.com/a/14776693/999193 | |
import sys | |
def myexcepthook(type, value, tb): | |
import traceback | |
from pygments import highlight | |
from pygments.lexers import get_lexer_by_name | |
from pygments.formatters import TerminalFormatter |
class SerialThreadTX(SerialThread): | |
def run(self): | |
self.msggen.directdisplay('==== Started TX Thread') | |
self.tracemanager.start_trace() | |
while(True): | |
if self.timeToQuit.isSet(): | |
break | |
# The maximum TX buffer for the COM-port driver set in w32Serial.py. |