Skip to content

Instantly share code, notes, and snippets.

View sebdah's full-sized avatar
:shipit:
Trust the source

Sebastian Dahlgren sebdah

:shipit:
Trust the source
View GitHub Profile
@sebdah
sebdah / client.html
Created June 24, 2014 12:51
Tutorial: Writing your first Meteor application - Writing the HTML template
<head>
<title>Chat app</title>
</head>
<body>
<h1>Chatapp</h1>
{{> welcome }}
</body>
<template name="welcome">
@sebdah
sebdah / client.html
Last active August 29, 2015 14:02
Tutorial: Writing your first Meteor application - Implementing simple chat functions
<template name="messages">
{{#each messages}}
<strong>{{name}}:</strong> {{message}}<br>
{{/each}}
</template>
@sebdah
sebdah / client.html
Created June 24, 2014 12:53
Tutorial: Writing your first Meteor application - Sending messages
<template name="input">
<p>Message: <input type="text" id="message"></p>
</template>
@sebdah
sebdah / client.css
Created June 24, 2014 12:55
Tutorial: Writing your first Meteor application - Add user authentication
html {
padding: 10px;
font-family: Verdana, sans-serif;
}
.login-buttons-dropdown-align-right {
float: right;
}
@sebdah
sebdah / forms.py
Created June 24, 2014 13:01
Password confirmation in WTForms
class UserForm(model_form(models.User)):
""" Extend the ModelForm from MongoEngine """
password = wtf.PasswordField(
'Password',
[
wtf.validators.Length(min=2),
wtf.Required(),
wtf.EqualTo('confirm', message='Passwords must match')
])
confirm = wtf.PasswordField('Repeat password')
@sebdah
sebdah / forms.py
Created June 24, 2014 13:25
Handling unique_together errors in Django forms
class MyModelForm(ModelForm):
class Meta:
model = MyModel
fields = ('field2', 'field3', 'field4', 'field5')
def clean(self):
"""
Clean MyModel
"""
# Get the cleaned data
@sebdah
sebdah / connection.py
Last active August 29, 2015 14:03
Connect to DynamoDB Local from boto
from boto.dynamodb2.layer1 import DynamoDBConnection
connection = DynamoDBConnection(
aws_access_key_id='foo', # Dummy access key
aws_secret_access_key='bar', # Dummy secret key
host='localhost', # Host where DynamoDB Local resides
port=8000, # DynamoDB Local port (8000 is the default)
is_secure=False) # Disable secure connections
@sebdah
sebdah / threading_example.py
Last active July 18, 2024 14:35
Running a background thread in Python
import threading
import time
class ThreadingExample(object):
""" Threading example class
The run() method will be started and it will run in the background
until the application exits.
"""
@sebdah
sebdah / quicksort.py
Created August 4, 2014 07:58
Quicksort implementation in Python
""" Quicksort implementation """
def quicksort(arr):
""" Quicksort a list
:type arr: list
:param arr: List to sort
:returns: list -- Sorted list
"""
@sebdah
sebdah / fibonacci.py
Last active July 13, 2021 09:33
Fibonacci generator in Python
def fibonacci():
""" Generator yielding Fibonacci numbers
:returns: int -- Fibonacci number as an integer
"""
x, y = 0, 1
while True:
yield x
x, y = y, x + y