Skip to content

Instantly share code, notes, and snippets.

@sorl
sorl / watchrsync
Created July 1, 2016 13:23
rsync files from osx to docker host
#!/bin/bash
fswatch -r "$1" -0 | while read -d "" file
do
rsync -a "$1" "$2"
echo "$file synced"
done
# This is an auto-generated Django model module.
# You'll have to do the following manually to clean this up:
# * Rearrange models' order
# * Make sure each model has one field with primary_key=True
# * Make sure each ForeignKey has `on_delete` set to the desired behavior.
# * Remove `managed = False` lines if you wish to allow Django to create, modify, and delete the table
# Feel free to rename the models, but don't rename db_table values or field names.
from __future__ import unicode_literals
from django.db import models
{
"title": "the title",
"description": "the description",
"images": ["data:image/jpeg;base64,...", "data:image/png;base64,..."],
"price": 100
}
@sorl
sorl / view.py
Last active January 20, 2016 08:42
from django.http import HttpResponse
class ApiResource:
@classmethod
def dispatch(cls, request, *args, **kwargs):
if args or 'object_id' in kwargs:
if request.method == 'GET':
return cls.read(request, *args, **kwargs)
elif request.method == 'PUT':
execute pathogen#infect()
if has('gui_running')
let s:uname = system("uname -s")
if s:uname == "Darwin\n"
set guifont=consolas:h15
let g:latex_view_general_viewer = '/Applications/Skim.app/Contents/MacOS/Skim'
else
set guifont=Consolas\ 13
endif
@sorl
sorl / cbv.py
Last active October 3, 2015 18:25
Django CBV
import re
from django.http import HttpResponse
from django.shortcuts import render
from functools import wraps
uncamel_patterns = (
re.compile('(.)([A-Z][a-z]+)'),
re.compile('([a-z0-9])([A-Z])'),
)
@sorl
sorl / assets.js
Last active December 27, 2015 13:29
var assets = require('./assets.json')
, path = require('path')
var baseDir = __dirname
var Component = function(opts) {
var self = this
self.name = opts.name
self.src = path.join(baseDir, opts.src)
@sorl
sorl / synthumbs
Created October 5, 2012 11:53
Synology thumbnail generation
#include <iostream>
#include <string>
#include <libgen.h>
#include <Magick++.h>
using namespace std;
using namespace Magick;
string out( string fn, string sz ) {
@sorl
sorl / gist:982576
Created May 20, 2011 08:44 — forked from jesperp/gist:980369
Upp! API version 1
#coding=utf-8
__test__ = {
"api_v1": """
Upp! API version 1
==================
Testing the functionality of Upp! API
>>> from django.utils import simplejson as json
>>> from django.test.client import Client
@sorl
sorl / gist:979651
Created May 18, 2011 21:49
Upp! API version 1
#coding=utf-8
__test__ = {
"api_v1": """
Upp! API version 1
==================
Testing the functionality of Upp! API
>>> from django.utils import simplejson as json
>>> from django.test.client import Client