Skip to content

Instantly share code, notes, and snippets.

View j1z0's full-sized avatar

Jeremy Johnson j1z0

View GitHub Profile
@nejdetckenobi
nejdetckenobi / file_upload.py
Created January 16, 2018 09:11
flask file upload via streaming
#!/usr/bin/env python
from __future__ import print_function
import os
import tempfile
import time
import flask
import psutil
@alexeygolev
alexeygolev / controllersSpec.js
Created August 14, 2012 01:47
angular.js jasmine test spec for controller defined inside a module
'use strict';
/* jasmine specs for controllers go here */
describe('PhoneCat controllers', function() {
describe('PhoneListCtrl', function() {
beforeEach(module('phonesCat.controllers'));