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
# 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/'), | |
) |
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
# 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] |
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
Start: | |
LDR R0, =GPIO_BASE | |
MOV R1, #0b00000100 | |
STR R1, [R0, #PORT_SIZE * PORT_E + GPIO_PORT_DOUTSET] |
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
.thumb | |
.syntax unified | |
.include "gpio_constants.s" // Register-adresser og konstanter for GPIO | |
.global GPIO_ODD_IRQHandler | |
.thumb_func | |
.text | |
.global Start |
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
.thumb | |
.syntax unified | |
.include "gpio_constants.s" | |
.text | |
.global Start | |
.global GPIO_ODD_IRQHandler | |
Start: |
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
#!/usr/bin/env python | |
print "Hello World" |
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 readMap import * | |
from heapq import * | |
class Node(object): | |
def __init__(self, x, y, walkable=None): | |
self.x = x | |
self.y = y | |
self.walkable = walkable if walkable else True |
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 scipy.misc.pilutil import imread, imsave | |
import numpy as np | |
def gamma_correction(img, correction): | |
img = np.multiply(img, 1.0/255) | |
img = np.power(img, correction) | |
return img | |
einstein = imread('TestImages/Question 4/einstein_lowcontrast.png') |
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 scipy.misc.pilutil import imread, imsave | |
import numpy as np | |
einstein = imread('infile.png') | |
final_image = np.multiply(einstein, 1.0) # Funker ikke | |
final_image = np.multiply(einstein, 1) # Funker | |
final_image = np.multiply(einstein, 1.0).astype(int) # Funker fortsatt ikke |
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
diff --git a/Makefile b/Makefile | |
index d5c09cb..bd4e4c8 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -11,7 +11,7 @@ all: $(ABAKUS).pdf $(FOND).pdf | |
test: clean all jekyll | |
-%.pdf: %.tex | |
+%.pdf: *.tex |
OlderNewer