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
<% entry = @featured_entries.first %> | |
<article class="entry style-grid style-hero hero-sm-largest type-post col-sm-12 col-md-6 colheight-sm-1 colheight-md-2 colheight-lg-2 colheight-xl-2"> | |
<div class="ribbon ribbon-pulled ribbon-small ribbon-highlight"> | |
<%= link_to entry.category.try(:name), entry.category %> | |
</div> | |
<header class="entry-header"> | |
<h3 class="entry-title"><%= link_to entry.title, entry %></h3> |
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
#ActiveAdmin User | |
ActiveAdmin.register User do | |
index do | |
column :email | |
column :alias | |
column :current_sign_in_at | |
column :last_sign_in_at | |
column :sign_in_count | |
default_actions | |
end |
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> |
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
$().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
#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
/************************************************************************* | |
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
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
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]]; |