Skip to content

Instantly share code, notes, and snippets.

Start:
LDR R0, =GPIO_BASE
MOV R1, #0b00000100
STR R1, [R0, #PORT_SIZE * PORT_E + GPIO_PORT_DOUTSET]
@marthall
marthall / config.py
Last active December 25, 2015 18:49
LDAP-oppsett mot NTNU
# env/lib/python2.6/site-packages/django_auth_ldap/config.py
def is_member(self, ldap_user, group_dn):
"""
Returns True if the group is the user's primary group or if the user is
listed in the group's memberUid attribute.
"""
try:
user_uid = ldap_user.attrs['uid'][0]
@marthall
marthall / settings.py
Last active December 19, 2015 08:49
Hvordan definere template dirs i et Djangoprosjekt
# Utdrag fra settings.py
# Dette gjøres gjerne i toppen av filen, så man kan bruke DIRPATH overalt
import os
DIRPATH = os.path.dirname(__file__)
# Dette blir pathen til alle globale templates, eller andre templates du vil inkludere
TEMPLATE_DIRS = (
os.path.join(DIRPATH, 'templates/'),
)