This file contains 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
/* GitHub */ | |
/* project view */ | |
/* pack columns tighter together */ | |
div.project-columns-container > div { | |
margin-right: 8px !important; | |
} | |
/* reduce card to column spacing */ |
This file contains 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 | |
# | |
#===- git-clang-format - ClangFormat Git Integration ---------*- python -*--===# | |
# | |
# The LLVM Compiler Infrastructure | |
# | |
# This file is distributed under the University of Illinois Open Source | |
# License. See LICENSE.TXT for details. | |
# | |
#===------------------------------------------------------------------------===# |
This file contains 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
/* Header */ | |
#ghx-header { | |
padding-top: 3px !important; | |
padding-bottom: 0px !important; | |
} | |
#ghx-header h2 { | |
line-height: 1 !important; | |
font-size: 12px !important; |
This file contains 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
# lldb | |
apropos -- Find a list of debugger commands related to a particular | |
word/subject. | |
b -- ('_regexp-break') Set a breakpoint using a regular expression | |
to specify the location, where <linenum> is in decimal and | |
<address> is in hex. | |
bt -- ('_regexp-bt') Show a backtrace. An optional argument is | |
accepted; if that argument is a number, it specifies the number |
This file contains 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 | |
# | |
# W. Greathouse 13-Feb-2013 | |
# S. Ludwig 26-Oct-2014 | |
# | |
# Inspired by bcm2835 source - http://www.airspayce.com/mikem/bcm2835/ | |
# | |
# Enable I2C on P1 and P5 (Rev 2 boards only) | |
# |
This file contains 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
/* | |
* smbusmodule.c - Python bindings for Linux SMBus access through i2c-dev | |
* Copyright (C) 2005-2007 Mark M. Hoffman <mhoffman@xxxxxxxxxxxxx> | |
* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation; version 2 of the License. | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains 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
# Rakefile needs ruby > 1.8, so add brew location to path | |
PATH=/usr/local/bin:$PATH | |
# setup logging | |
LOG="$PROJECT_DIR/post_archive_action.log" | |
echo '' > $LOG | |
# run post_archive rake task | |
cd "$PROJECT_DIR" | |
rake post_archive >> $LOG 2>&1 |