(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
#!/usr/bin/ruby | |
# logs in to iTunes connect, downloads the day's report file and saves it in proper csv format. | |
# by Jeremy Seitz ~ http://fozworks.com | |
# | |
# REQUIRES Mechanize GEM: | |
# sudo gem install mechanize | |
require 'rubygems' | |
require 'mechanize' | |
require 'logger' |
class MockResponse(object): | |
def __init__(self, resp_data, code=200, msg='OK'): | |
self.resp_data = resp_data | |
self.code = code | |
self.msg = msg | |
self.headers = {'content-type': 'text/plain; charset=utf-8'} | |
def read(self): | |
return self.resp_data |
The MIT License (MIT) | |
Copyright (c) 2013 Jamar Parris | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE S |
def get_count(q): | |
count_q = q.statement.with_only_columns([func.count()]).order_by(None) | |
count = q.session.execute(count_q).scalar() | |
return count | |
q = session.query(TestModel).filter(...).order_by(...) | |
# Slow: SELECT COUNT(*) FROM (SELECT ... FROM TestModel WHERE ...) ... | |
print q.count() |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
// The MIT License (MIT) - https://gist.github.com/bcatcho/1926794b7fd6491159e7 | |
// Copyright (c) 2015 Brandon Catcho | |
using System; | |
// Place this file in any folder that is or is a descendant of a folder named "Scripts" | |
namespace CatchCo | |
{ | |
// Restrict to methods only | |
[AttributeUsage(AttributeTargets.Method)] | |
public class ExposeMethodInEditorAttribute : Attribute |
I needed a way to have my Django ElasticBeanstalk application automatically redirect HTTP requrests to HTTPS. Rick Christianson wrote a post [1] about how to do this by overwriting the wsgi.conf
file with one that was slightly modified to support the HTTP to HTTPS redirect.
Building off the shoulders of giants, I wanted to do the same, but not have to keep a copy of the config file in my local source directory. Christianson even points out in his post that if ElasticBeanstalk ever changes it's template for the wsgi.conf
file, those updates would not be overwritten and you wouldn't get their benefits. To get around that problem, I used sed
to insert the new lines into the wsgi.conf
file.
class AllowPUTAsCreateMixin(object): | |
""" | |
The following mixin class may be used in order to support PUT-as-create | |
behavior for incoming requests. | |
""" | |
def update(self, request, *args, **kwargs): | |
partial = kwargs.pop('partial', False) | |
instance = self.get_object_or_none() | |
serializer = self.get_serializer(instance, data=request.data, partial=partial) | |
serializer.is_valid(raise_exception=True) |
using UnityEngine; | |
using UnityEditor; | |
using System.Collections; | |
using System.IO; | |
public class PlatformSwitcher | |
{ | |
[MenuItem("Platform/PC, Mac and Linux Standalone")] | |
static void SwitchPlatformToDesktop() | |
{ |
/* | |
A simple little editor extension to copy and paste all components | |
Help from http://answers.unity3d.com/questions/541045/copy-all-components-from-one-character-to-another.html | |
license: WTFPL (http://www.wtfpl.net/) | |
author: aeroson | |
*/ | |
using UnityEngine; | |
using UnityEditor; |