Thoughts on habits + practices for giving/receiving feedback effectively, as well as creating systems that get better at this with time
- Company Blogs
- Sandya Sankarram
- Michael Lynch
""" | |
This file is based on https://github.com/foresmac/django-binaryuuidfield/tree/initial-setup | |
""" | |
import uuid | |
from django import forms | |
from django.core import exceptions | |
from django.db import models | |
from django.utils.translation import ugettext_lazy as _ |
#!/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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import asyncio | |
async def init_socket (loop): | |
reader, writer = await asyncio.open_connection('127.0.0.1', 3000, loop=loop) | |
return reader, writer |
#Using https
git remote add otheruser https://github.com/otheruser/yourrepo.git
# Or - Using SSH
git remote add otheruser [email protected]: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