This file contains hidden or 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
#!/usr/bin/env python3 | |
import os | |
import sys | |
import re | |
BIN_NAME = "fix_namespace_alias_qualifiers.py" | |
def print_help(): | |
print("Supply path to *.cs as only argument") |
This file contains hidden or 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
const int redPin = 11; | |
const int greenPin = 10; | |
const int bluePin = 9; | |
// limit to 254 obviously | |
const int maxBrightness = 250; | |
// minimum 1 obviously | |
const int minBrightness = 1; |
This file contains hidden or 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
#!/usr/bin/env python | |
__version__ = '0.2' | |
__releasedate__ = '2009-12-23' | |
__author__ = 'Ryan McGreal <ryan@quandyfactory.com>' | |
__homepage__ = 'http://quandyfactory.com/insult' | |
__repository__ = 'http://gist.github.com/258915' | |
__copyright__ = 'Copyright (C) 2009 by Ryan McGreal. Licenced under GPL version 2. http://www.gnu.org/licenses/gpl-2.0.html' | |
def generate_insult(): |