- Install Thunderbird
- Configure Thunderbird http://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html
- Tools -> Account Settings -> Account Actions -> Add Other Account -> Newsgroup Account
- Add info
- Newsgroup Server: news.gmane.org
- Manage newsgroup subscriptions: gmane.comp.version-control
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
# | |
# Makefile for msp430 | |
# | |
# 'make' builds everything | |
# 'make clean' deletes everything except source files and Makefile | |
# You need to set TARGET, MCU and SOURCES for your project. | |
# TARGET is the name of the executable file to be produced | |
# $(TARGET).elf $(TARGET).hex and $(TARGET).txt nad $(TARGET).map are all generated. | |
# The TXT file is used for BSL loading, the ELF can be used for JTAG use | |
# |
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
bcdedit -set loadoptions DISABLE_INTEGRITY_CHECKS | |
bcdedit -set TESTSIGNING ON | |
bcdedit /deletevalue loadoptions | |
bcdedit -set TESTSIGNING OFF |
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
# download 3ware 9650SE-2LP vib from http://kb.lsi.com/KnowledgebaseArticle15753.aspx#vmware | |
# ftp://tsupport:[email protected]/private/3Ware/kbarticledrivers/scsi-3w-9xxx-3.26.08.036-1OEM.500.0.0.406165.x86_64.vib | |
# Upload the vib to the datastore on the ESXi host | |
# Put the ESXi host into maintenance mode | |
# Enable ssh on the ESXi host from within vSphere Client | |
# ssh to the ESXi host and run: |
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
#!/bin/sh | |
# files go into /private/tftpboot/ | |
sudo launchctl load -F /System/Library/LaunchDaemons/tftp.plist | |
sudo launchctl start com.apple.tftpd |
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
#!/bin/sh | |
# Recursively add a .gitignore file to all directories | |
# in the working directory which are empty and don't | |
# start with a dot. Helpful for tracking empty dirs | |
# in a git repository. | |
for i in $(find . -type d -regex ``./[^.].*'' -empty); do touch $i"/.gitignore"; done; |
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/expect | |
set total 10 | |
proc progress {cur tot} { | |
# if you don't want to redraw all the time, uncomment and change ferquency | |
#if {$cur % ($tot/300)} { return } | |
# set to total width of progress bar | |
set total 74 |
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
# using DigiEL 5.2 Rev B | |
# del_toolchain comes with python 2.5.1 (http://www.python.org/download/releases/2.5.1/) cross-compile patch, and builds for host and target..."that was easy!" | |
export STEELYARD_TOOLCHAIN="$HOME/src/steelyard_toolchain" | |
cd $STEELYARD_TOOLCHAIN/del_toolchain/packages/python/ | |
make | |
make install |
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
#!/bin/sh | |
if [ `whoami` != root ]; then | |
echo Please run this script as root or using sudo | |
exit | |
fi | |
port selfupdate | |
port upgrade outdated | |
port upgrade sqlite3 |
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
<VirtualHost *:80> | |
ServerName ups.cdwilson.us | |
ServerAdmin [email protected] | |
DocumentRoot /usr/lib/cgi-bin/apcupsd/ | |
<Directory /usr/lib/cgi-bin/apcupsd/> | |
Options FollowSymLinks ExecCGI | |
AddHandler cgi-script cgi | |
DirectoryIndex multimon.cgi | |
</Directory> |