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
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 / Log output
Last active August 29, 2015 14:08
Dynamic DynamoDB 1.19.0 debug
2014-11-06 20:00:57,050 - dynamic-dynamodb - DEBUG - dryrun - Authenticating to SNS using credentials in configuration file
2014-11-06 20:00:57,051 - dynamic-dynamodb - DEBUG - dryrun - Connected to SNS in eu-west-1
2014-11-06 20:00:57,052 - dynamic-dynamodb - DEBUG - dryrun - Authenticating to DynamoDB using credentials in configuration file
2014-11-06 20:00:57,053 - dynamic-dynamodb - DEBUG - dryrun - Connected to DynamoDB in eu-west-1
2014-11-06 20:00:57,088 - dynamic-dynamodb - DEBUG - dryrun - Authenticating to CloudWatch using credentials in configuration file
2014-11-06 20:00:57,090 - dynamic-dynamodb - DEBUG - dryrun - Connected to CloudWatch in eu-west-1
2014-11-06 20:00:57,319 - dynamic-dynamodb - DEBUG - dryrun - Table prod-displays-20141105 did not match with config key ^prod-displays-20141106$
2014-11-06 20:00:57,319 - dynamic-dynamodb - DEBUG - dryrun - Table prod-displays-20141106 match with config key ^prod-displays-20141106$
2014-11-06 20:00:57,319 - dynamic-dynamodb - DEBUG - dryrun - Table
{
"AWSTemplateFormatVersion":"2010-09-09",
"Description":"This is a sample CloudFormation template for deploying Dynamic DynamoDB. This package will be installed from the Python Package Index repository. For more information, see http://dynamic-dynamodb.readthedocs.org.",
"Parameters":{
"S3Bucket":{
"Type":"String",
"Default":"s3://bucket-name/folder-path-if-applicable/",
"Description":"Remove this default value and enter your pre-created S3 Bucket url upto folder name. (Please include the trailing /. Example: https://s3.amazonaws.com/my-bucket/ should be input as s3://my-bucket/). It will be used for storing a copy of Dynamic DynamoDB configuration file."
},
"S3BucketRegion":{
@sebdah
sebdah / test.html
Created May 25, 2015 19:27
Example PHP GET of JSON resource
<html>
<head>
<title>PHP JSON test</title>
</head>
<body>
<h1>PHP JSON test</h1>
<?php
$json_data = file_get_contents("http://192.168.1.6:9090/users/4d3e75b3-3b84-4f6b-983d-30635ce06585");
$data = json_decode($json_data, true);
@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
"""