[BRIEF DESCRIPTION OF THE SLACK AND ITS PURPOSE]
The current admins are:
- [NAMES]
from __future__ import unicode_literals | |
from django.db import models | |
from django.db.models.fields.related_descriptors import ForwardManyToOneDescriptor # noqa | |
class RelationNotLoaded(Exception): | |
pass | |
# Create empty branch. | |
git checkout --orphan review | |
git rm -rf . | |
git commit --allow-empty -m "Create empty branch" | |
git push --set-upstream origin review | |
# Create `project` branch from `master` current state. | |
git checkout -b project | |
git merge master --allow-unrelated-histories | |
git push --set-upstream origin project |
''' | |
This script brings up the entire stack of Docker containers, removing the current ones. | |
Docker compose was tried for this task and it wasn't customisable enough. | |
Docker cloud was tried (with stack files) and was buggy (failed to launch, no logs returned). | |
Docker machine was tried, but it can't connect to existing servers only ones it created. | |
Rancher was too heavy weight for the task, as the containers are lightweight in DigitalOcean. | |
Kubernetes would've been too heavy weight for DigitalOcean. | |
It was written in Powershell and worked. But then converting it to Bash was too much effort. | |
Powershell for Linux is too much effort to install without a debian package (and none standard) |
import android | |
from android.app import AlertDialog | |
from android.graphics import Color | |
from android.graphics.drawable import ColorDrawable | |
from android.os import AsyncTask | |
from android.os import Looper | |
from android.os import Handler | |
from android.util import TypedValue | |
from android.view import View | |
from android.view import MenuItem |
import django | |
DEBUG, ROOT_URLCONF, DATABASES, SECRET_KEY = 1, 'pico', {'default': {}}, 'p' | |
urlpatterns = [django.conf.urls.url(r'^(?P<name>\w+)?$', lambda request, | |
name: django.http.HttpResponse('hello %s!' % (name or 'world')))] |
Submission date | ||
---|---|---|
2015-11-30 16:26:16.606661+00:00 | ||
2015-11-30 16:28:55.057075+00:00 | ||
2015-11-30 16:33:19.810559+00:00 | ||
2015-11-30 19:03:28.456260+00:00 | ||
2015-12-01 01:27:36.614022+00:00 | ||
2015-12-01 13:34:26.732966+00:00 | ||
2015-12-01 16:11:32.344703+00:00 | ||
2015-12-01 18:47:16.003879+00:00 | ||
2015-12-02 09:42:07.314961+00:00 |
##Date and Time
=TIMEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " ")) + DATEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " "))
##Date
=DATEVALUE(SUBSTITUTE("{{OccurredAt}}"," at ", " "))
##Time
# Install QEMU OSX port with ARM support | |
sudo port install qemu +target_arm | |
export QEMU=$(which qemu-system-arm) | |
# Dowload kernel and export location | |
curl -OL \ | |
https://github.com/dhruvvyas90/qemu-rpi-kernel/blob/master/kernel-qemu-4.1.7-jessie | |
export RPI_KERNEL=./kernel-qemu-4.1.7-jessie | |
# Download filesystem and export location |