Please allow me to make the case for why I believe you should give the Stargate TV series a chance.
Why:
- consistent characters
- strong continuity
- constant world-building
- more real science than Star Trek
- zero-tolerance policy for mysticism
---=---------=--------------------------------:::::::--------::::-::::-------------------- | |
---=---------=-------------------------:-------::::::--------:::---:---------------------- | |
---=---------=----------------------------:---:::::--------::::--------------------------- | |
---=---------=---------------------------:------::---------------------------------------- | |
---=---------=---------------------------------------------------------------------------- | |
---=---------=-----------------------------+=------------------------------------------=-- | |
---=---------------------------------------====----------------------------------------=-- | |
---=--------**+----------------------------=---==-----------------------::-----:-------=-- | |
---=---------=+=====----=--==-====+==========----================++=====::-------------=-- | |
---=----------===---====+==-----::--::---------------------------*+---=+::::-----------=-- |
┌────────────────────────────┐ | |
• Overview | |
• Types | |
• Server Examples | |
• Client Examples | |
• Responses | |
• Errors & Non-Nullability | |
• Subscriptions |
References | |
─────────────────────────────────────────────────────────────────────────── | |
https://docs.celeryproject.org/en/stable/history/whatsnew-4.0.html#lowercase-setting-names | |
https://docs.celeryproject.org/en/stable/userguide/configuration.html#new-lowercase-settings | |
https://docs.celeryproject.org/en/stable/django/first-steps-with-django.html | |
https://github.com/celery/celery/blob/master/docs/conf.py#L53 # list of deprecated settings | |
─────────────────────────────────────────────────────────────────────────── | |
Names |
#!/usr/bin/env python3 | |
import argparse | |
import re | |
import os | |
import os.path | |
def frame_of( filename ): | |
return int(re.search( '_(\d+)_\d+\.png$', filename ).group(1)) |
#!/usr/bin/env python3 | |
import argparse | |
import pickle | |
import re | |
import zlib | |
def readfrom( fsafile ): | |
return pickle.loads( | |
zlib.decompress( |
┌─ Data ─────────────────────────────────────────────────────────────────────┐ | |
│ Input Dir [ ] │ | |
│ Output Dir [ ] │ | |
│ Alignments [ ] │ | |
│ Reference Video [ ] │ | |
│ Model Dir [ ] │ | |
└────────────────────────────────────────────────────────────────────────────┘ | |
┌─ Plugins ──────────────────────────────────────────────────────────────────┐ | |
│ ┌─ Color Adjustment ─────────────────────────────────────────────────────┐ │ | |
│ │ < > None <*> Avg-Color < > Color-Transfer │ │ |
ofer@borg:~/src/tmp/apollo/fullstack-tutorial/start/server$ npm install | |
npm WARN deprecated [email protected]: Please upgrade to kleur@3 or migrate to 'ansi-colors' if you prefer the old syntax. Visit <https://github.com/lukeed/kleur/releases/tag/v3.0.0\> for migration path(s). | |
npm WARN deprecated [email protected]: use String.prototype.padStart() | |
> [email protected] install /home/ofer/src/tmp/apollo/fullstack-tutorial/start/server/node_modules/sqlite3 | |
> node-pre-gyp install --fallback-to-build | |
node-pre-gyp WARN Using request for node-pre-gyp https download | |
[sqlite3] Success: "/home/ofer/src/tmp/apollo/fullstack-tutorial/start/server/node_modules/sqlite3/lib/binding/node-v72-linux-x64/node_sqlite3.node" is installed via remote |
#!/usr/bin/node | |
const Promise = require('bluebird') | |
const config = require('./config.json') | |
const knex = require('./lib/knex')(config.database).connection() | |
const mock = () => ({ user_id: Math.floor(Math.random() * 999) + 1, payload_type: 'foo', attributes: JSON.stringify({}) }) | |
const before = (t) => { |
┌──────────┐ | |
──┤ Overview ├───────────────────────────────────────────────────────────────── | |
└──────────┘ | |
$ npm install --save bluebird | |
const Promise = require('bluebird') |