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
; Christian Hotz-Behofsits 2012 | |
; Simple AVRASM Test - take all values from the Stack, add them and print to PORTA | |
.NOLIST | |
.INCLUDE "m1280def.inc" | |
.LIST | |
.section .text | |
.org 0x0000 |
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
; Christian Hotz-Behofsits 2012 | |
; logical functions in asm (atmega 1280) | |
; | |
; 1st PA4: (PA1 and PA2) or PA3 | |
; 2nd PA5: (PA1 or not PA2) and PA3 | |
; 3rd PA6: PA1 xor PA2 | |
; 3rd PA7: PA1 == PA2 | |
.NOLIST | |
.INCLUDE "m1280def.inc" |
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
; Christian Hotz-Behofsits 2012 | |
; i/o example in asm (atmega 1280) | |
; set leds on button event | |
.NOLIST | |
.INCLUDE "m1280def.inc" | |
.LIST | |
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
menge(menge > x) = 0; |
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
Show hidden characters
{ | |
"cmd": ["javac", "$file_name"], | |
"cmd": ["java", "$file_base_name"], | |
"working_dir": "${project_path:${folder}}", | |
"selector": "source.java" | |
} |
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
Run the following in the terminal. | |
git clone git://github.com/illuminate/app.git && cd app && composer update | |
This will download Illuminate (the name of the component set that makes up Laravel 4) into a directory called 'app' and run composer to get all the dependancies. | |
Of course, it's still heavily in development so it's clearly not finished but you can poke around and see how it works. Enjoy! |
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
exec gnome-settings-daemon | |
exec --no-startup-id nitrogen --restore | |
exec --no-startup-id nm-applet | |
# keyring daemon | |
exec /usr/bin/gnome-keyring-daemon --start --components=gpg | |
exec /usr/bin/gnome-keyring-daemon --start --components=secrets | |
exec /usr/bin/gnome-keyring-daemon --start --components=ssh | |
exec /usr/bin/gnome-keyring-daemon --start --components=pkcs11 |
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
#google chrome | |
#assign [class="^Google-chrome$"] 1 | |
#for_window [class="^Google-chrome$"] border none | |
#set $w1 1: web | |
##set $w2 2: editor | |
# some gnome helpers | |
exec /usr/lib/gnome-settings-daemon/gnome-settings-daemon | |
exec /usr/lib/gnome-settings-daemon/gnome-fallback-mount-helper |
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
from protorpc import remote | |
from google.appengine.ext import ndb | |
import endpoints | |
from endpoints_proto_datastore.ndb import EndpointsModel | |
from endpoints_proto_datastore.ndb import EndpointsAliasProperty | |
from google.appengine.ext import db | |
from google.appengine.api import users | |
import datetime | |
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.getbro.api</groupId> | |
<artifactId>backend</artifactId> | |
<packaging>war</packaging> | |
<version>3</version> | |
<name>backend</name> | |
<url>http://maven.apache.org</url> | |
<properties> |
OlderNewer