Hi Tom!
Here's what the Markdown for a book looks like on macwright.org:
---
categories:
- book
layout: book
title: 'My Year of Rest and Relaxation'
Hi Tom!
Here's what the Markdown for a book looks like on macwright.org:
---
categories:
- book
layout: book
title: 'My Year of Rest and Relaxation'
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# @Author: Ariel Torti | |
# @GitHub: github.com/maks500 | |
import argparse | |
import logging | |
import os | |
import shutil | |
import sys | |
import time |
Thoughts on habits + practices for giving/receiving feedback effectively, as well as creating systems that get better at this with time
Django channels are official way for implementing async messaging in Django.
The primary caveat when working with GraphQL subscription is that we can't serialize message before broadcasting it to Group of subscribers. Each subscriber might use different GraphQL query so we don't know how to serialize instance in advance.
See related issue
#Using https
git remote add otheruser https://github.com/otheruser/yourrepo.git
# Or - Using SSH
git remote add otheruser git@github.com:otheruser/yourrepo.git
git fetch otheruser
https://tools.ietf.org/html/draft-pantos-http-live-streaming-23 https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/StreamingMediaGuide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40008332-CH1-SW1
convert any audio to ADTS AAC audio:
ffmpeg \
-i 01-fiery-crash.mp3 \
-vn -ac 2 -acodec aac \
01-fiery-crash.aac
import newrelic.agent | |
newrelic.agent.initialize('newrelic.ini') | |
api = application = newrelic.agent.WSGIApplicationWrapper(falcon.API()) |
/** | |
* Lightweight script to detect whether the browser is running in Private mode. | |
* @returns {Promise<boolean>} | |
* | |
* Live demo: | |
* @see https://output.jsbin.com/tazuwif | |
* | |
* This snippet uses Promises. If you want to run it in old browsers, polyfill it: | |
* @see https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.min.js | |
* |