I hereby claim:
- I am tdfischer on github.
- I am tdfischer (https://keybase.io/tdfischer) on keybase.
- I have a public key ASBXJyjMumgYRcu4WIlZ9B8phZbimC4vaMBxFocZn1IIFAo
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html> | |
<style type="text/css"> | |
body { | |
font-family: sans-serif; | |
} | |
</style> | |
<body> | |
<h1>East Bay for Everyone</h1> | |
<p>The housing organization starter pack</p> |
[[source]] | |
name = "pypi" | |
url = "https://pypi.org/simple" | |
verify_ssl = true | |
[dev-packages] | |
[packages] | |
stripe = "*" | |
pytz = "*" |
import requests | |
import json | |
import pytz | |
import random | |
from datetime import datetime | |
LGL_URL = 'https://noisebridgehackerspace.littlegreenlight.com/integrations/990fe4c4-5817-4cd3-b563-b77df3390138/listener' | |
data = { | |
'first_name': 'Test', |
diff --git a/assets/js/components/OrganizerDashboard.js b/assets/js/components/OrganizerDashboard.js | |
index 6b018aa..f3caca0 100644 | |
--- a/assets/js/components/OrganizerDashboard.js | |
+++ b/assets/js/components/OrganizerDashboard.js | |
@@ -8,10 +8,13 @@ import Divider from '@material-ui/core/Divider' | |
import { getCurrentUser } from '../selectors/auth' | |
const People = new Model('people') | |
+const TurfMembership = new Model('turf_memberships') | |
from django.utils import timezone | |
from django.core.management.base import BaseCommand | |
from django.db.models import Count | |
from crm.models import Turf | |
from django.core.mail import EmailMessage | |
from django.template import loader | |
class Command(BaseCommand): | |
def handle(self, *args, **options): | |
email_template = loader.get_template('new-neighbors-notification.eml') |
I hereby claim:
To claim this, I am signing this object:
[22:40:48] <tdfischer> hi so I want to put my frumpy hat on and say that yes ##computer is interested in technical problems to a limited degree compared to the support group therapy problem that we are primarily focused about | |
[22:41:04] <tdfischer> but the group therapy is *the* big thing we're all about | |
[22:41:30] <tdfischer> I think its totally acceptible for someone to ask about a technical problem and get an answer every once in a while | |
[22:42:17] <tdfischer> but I don't think it can be a trend as long as we like the primary group therapy focus | |
[22:42:45] <tdfischer> correspondingly, I /do not/ think it is okay for randos to come in and ask tech problems and get answers without contributing to the group therapy concept | |
[22:43:47] <tdfischer> I think a perfectly legitimate thing would be for someone to come in and say, for example, "How can I teach this technical concept to a coworker" | |
[22:44:03] <tdfischer> which blurs the line but I think thats the kind of "technical" problem I'm interested in addressing |
...** SANDSTORM SUPERVISOR: Starting up grain. | |
sandstorm/supervisor.c++:1136: warning: ip_tables kernel module not loaded; cannot set up transparent network forwarding. | |
Traceback (most recent call last): | |
File "/usr/lib64/python2.7/site.py", line 556, in <module> | |
main() | |
File "/usr/lib64/python2.7/site.py", line 538, in main | |
known_paths = addusersitepackages(known_paths) | |
File "/usr/lib64/python2.7/site.py", line 266, in addusersitepackages | |
user_site = getusersitepackages() | |
File "/usr/lib64/python2.7/site.py", line 241, in getusersitepackages |
FROM ansible/centos7-ansible:stable | |
MAINTAINER Team Caminus <team@camin.us> | |
ADD . | |
RUN ansible-playbook playbooks/www-config.yml |
bluebird.promisifyAll(SomeType.prototype); | |
var foo = new SomeType(); | |
foo.doFooAsync().then(function(r) { | |
//SOME COMPUTERING | |
foo.doMoreAsync().then(function(r) { |