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
// | |
// CRC8.m | |
// | |
// Created by Chris Desch on 2/6/12. | |
// Translation from http://avrhelp.mcselec.com/index.html?crc8.htm | |
- (int)crc8Checksum:(NSString*)dataFrame{ | |
char j; | |
int crc8 = 0; |
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
// Create plot and increase size for | |
CPTScatterPlot *dataSourceLinePlot = [[CPTScatterPlot alloc] init]; | |
dataSourceLinePlot.plotSpace = plotSpace; | |
dataSourceLinePlot.identifier = colorName; | |
dataSourceLinePlot.plotSymbolMarginForHitDetection = 10.0f; |
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
//Deprecating an Item with a define | |
#define DEPRECATED __attribute__ ((deprecated)) |
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
NSDate *currDate = [NSDate date]; //Current Date | |
NSDateFormatter *df = [[NSDateFormatter alloc] init]; | |
//Day | |
[df setDateFormat:@"dd"]; | |
NSString* myDayString = [NSString stringWithFormat:@"%@", [df stringFromDate:currDate]]; | |
//Month | |
[df setDateFormat:@"MM"]; //MM will give you numeric "03", MMM will give you "Mar" | |
NSString* myMonthString = [NSString stringWithFormat:@"%@", [df stringFromDate:currDate]]; |
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
cjs-MacBook-Pro:github cj$ cat cjs-MacBook-Pro:github cj$ brew install homebrew-alt/avr/avr-libc.rb | |
cat: cjs-MacBook-Pro:github: No such file or directory | |
cat: cj$: No such file or directory | |
cat: brew: No such file or directory | |
cat: install: No such file or directory | |
require 'formula' | |
def relative(name) | |
return name if name.kind_of? Formula | |
File.join(File.split(__FILE__)[0], name) + '.rb' |
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
/************************************************************************* | |
Title: Interrupt UART library with receive/transmit circular buffers | |
Author: Peter Fleury <[email protected]> http://jump.to/fleury | |
File: $Id: uart.c,v 1.6.2.2 2009/11/29 08:56:12 Peter Exp $ | |
Software: AVR-GCC 4.1, AVR Libc 1.4.6 or higher | |
Hardware: any AVR with built-in UART, | |
License: GNU General Public License | |
DESCRIPTION: | |
An interrupt is generated when the UART has finished transmitting or |
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
#include <avr/io.h> | |
#include <avr/interrupt.h> | |
#define F_CPU 8000000UL | |
#include <util/delay.h> | |
#include <stdlib.h> | |
#include "ds18b20.h" |
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
$().ready(function(){ | |
// Instant Search | |
$('#q').keyup(function(){ | |
$('.search_item').each(function(){ | |
var re = new RegExp($('#q').val(), 'i') | |
if($(this).children('.search_text')[0].innerHTML.match(re)){ | |
$(this).show(); | |
}else{ | |
$(this).hide(); | |
}; |
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
from django.db import models | |
from django.contrib.auth import User | |
from mycompany.models import Client | |
from userprofiles.models import Profile | |
class External(Profile): | |
#External-specific models | |
client = models.ForeignKey(Client) | |
def __unicode__(self): |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>protocols</key> | |
<array> | |
<string>scp</string> | |
</array> | |
<key>styles</key> | |
<array> |
OlderNewer