Skip to content

Instantly share code, notes, and snippets.

View micolous's full-sized avatar
💭
I may be slow to respond.

micolous micolous

💭
I may be slow to respond.
View GitHub Profile
@micolous
micolous / preferences
Created April 3, 2014 07:03
blocking nodejs in debian
# /etc/apt/preferences
Package: nodejs
Pin: origin ""
Pin-Priority: -1
Package: nodejs-*
Pin: origin ""
Pin-Priority: -1
@micolous
micolous / XmlString.cs
Last active December 31, 2015 02:49
Fix .NET XML serialisation bugs by preventing it from passing XML 1.1-only entities in XML 1.0. This is a replacement for the use of the String class.
/// <summary>
/// Prevents .NET's XML serialiser from outputting XML 1.0-invalid entities.
///
/// Even though none of the .NET Framework supports XML 1.1, it still returns XML 1.1-only
/// entities (like &#x1B;).
///
/// This class acts as a wrapper around strings to automatically remove those unsafe escape
/// characters from the string before it is passed to the XML serialiser classes.
///
/// In order to use, simply replace instances of the "string" type in your serialised objects
@micolous
micolous / gist:6854190
Created October 6, 2013 13:38
Work around asterisk bug #18809 in Asterisk <10: No such context 'macro-stdexten' for macro 'stdexten'
[macro-stdexten]
; Wrapper for working around Bug #18809:
; https://issues.asterisk.org/jira/browse/ASTERISK-18809
exten => s,1,GoSub(stdexten,${ARG1},stdexten(${ARG2},${ARG1}))
// Test code for Adafruit GPS modules using MTK3329/MTK3339 driver
//
// This code just echos whatever is coming from the GPS unit to the
// serial monitor, handy for debugging!
//
// Tested and works great with the Adafruit Ultimate GPS module
// using MTK33x9 chipset
// ------> http://www.adafruit.com/products/746
// Pick one up today at the Adafruit electronics shop
// and help support open source hardware & software! -ada
@micolous
micolous / sentry-simplejson-dj15.txt
Created April 30, 2013 02:50
Sentry traceback on Django 1.5.1 with simplejson use instead of Python's json.
Environment:
Request Method: GET
Request URL: http://localhost:8015/sentry/myteam/
Django Version: 1.5.1
Python Version: 2.7.3
Installed Applications:
('django.contrib.auth',
@micolous
micolous / null-kwargs.py
Last active December 10, 2015 20:58
null kwargs strangeness
#!/usr/bin/env python
def some_operation(foo=0):
print ("foo is %r" % foo)
def kwargs_print(**kwargs):
print ("you gave me %r" % kwargs)
a = {}
@micolous
micolous / fizzbuzz.py
Created November 20, 2012 13:08
fizzbuzz
#!/usr/bin/env python3
# micolous' implementation of fizzbuzz ;) (python2.6, 3.3 compat)
from __future__ import print_function
# setup a table of all the possible divisors (z)
z = {5: 'buzz', 3: 'fizz'}
# iterate through possible numbers (1 - 14) and populate that table with
# the other possible divisors <15: 6, 9, 10, 12. can use "any" on the
# iterator here as every result of this is bool() == False (False, None)
// Laptop control software
#include <SoftwareSerial.h>
#include <SerialLCD.h>
//#include <NewSoftSerial.h>
#include <math.h>
const int laptopRelayPin = 7;
const int tempPin = 0;
int pcConnected = 0;
@micolous
micolous / conroy.py
Created September 5, 2012 09:18
Conroy logic generator (ca. 2010)
#!/usr/bin/python2.4
# please share your additions with me: http://micolous.id.au/contact-me
verbs = ['hate','translocate','watch','like','shake','attack','eat','engineer','wrestle','throw','evaporate','think about','discover','buy','consult','roast','boil','enjoy','critique','call','photograph','play with','contact','sing with','discuss','thrill','hack','forecast','replace guns with','issue','recieve','refuse to sponsor','conspire with','conspire against','purchase computers from','play football with','talk to','clean','spread rumours about','fine','damage','troll','vote for','lose','offer','compensate','irrigate','pave','are not','are','make forum posts about','have']
nouns = ['plumbers','bicycles','balls','corn','peas','beetroot','clocks','chairs','cameras','unicorns','children','pirates','hands','songs','trucks','senators','digital television','laptops','sausages','foghorns','telstra','barbarians','ewoks','the nbn','dr. tran','books','walkie-talkies','black stars','francis wheat','mplayer','valhalla','rel
C:\Users\michael>tracert koji.micolous.id.au
Tracing route to koji.tok0.micolous.id.au [106.187.98.32]
over a maximum of 30 hops:
1 2 ms 3 ms 2 ms 192.168.43.1
2 469 ms 589 ms 529 ms 10.5.133.19
3 * * * Request timed out.
4 520 ms 856 ms 610 ms 10.5.133.6
5 176 ms 113 ms 117 ms Bundle-Ether12.cha45.Brisbane.telstra.net [110.142.0.189]