1 server, 2 clients
Install Wireguard on all machines.
1 server, 2 clients
Install Wireguard on all machines.
Slides and code examples from my "Pythons Sinister Secrets" presentation.
The slide deck can be downloaded here.
Hmm... I don't see any docs for 4.0 on https://webpack.js.org. I guess I'll just wing it.
All I need to do is npm i -D webpack@next
, right?
+ [email protected]
Tuning Intel Skylake and beyond for optimal performance and feature level support on Linux:
Note that on Skylake, Kabylake (and the now cancelled "Broxton") SKUs, functionality such as power saving, GPU scheduling and HDMI audio have been moved onto binary-only firmware, and as such, the GuC and the HuC blobs must be loaded at run-time to access this functionality.
Enabling GuC and HuC on Skylake and above requires a few extra parameters be passed to the kernel before boot.
Instructions provided for both Fedora and Ubuntu (including Debian):
Note that the firmware for these GPUs is often packaged by your distributor, and as such, you can confirm the firmware blob's availability by running:
# import config. | |
# You can change the default config with `make cnf="config_special.env" build` | |
cnf ?= config.env | |
include $(cnf) | |
export $(shell sed 's/=.*//' $(cnf)) | |
# import deploy config | |
# You can change the default deploy config with `make cnf="deploy_special.env" release` | |
dpl ?= deploy.env | |
include $(dpl) |
For me to watch: | |
==== | |
Great speakers + interesting topics | |
---- | |
- How I built a power debugger out of the standard library and things I found on the internet | |
https://www.youtube.com/watch?v=g8kF9tuYZ6s | |
- Glyph - Shipping Software To Users With Python - PyCon 2016 | |
https://www.youtube.com/watch?v=5BqAeN-F9Qs | |
- Andrew Godwin - Reinventing Django for the Real-Time Web - PyCon 2016 | |
https://www.youtube.com/watch?v=2sEPipctTxw |
CloudFlare is an awesome reverse cache proxy and CDN that provides DNS, free HTTPS (TLS) support, best-in-class performance settings (gzip, SDCH, HTTP/2, sane Cache-Control
and E-Tag
headers, etc.), minification, etc.
#!/usr/bin/env python | |
# | |
# This is free and unencumbered software released into the public domain. | |
# | |
# Anyone is free to copy, modify, publish, use, compile, sell, or | |
# distribute this software, either in source code form or as a compiled | |
# binary, for any purpose, commercial or non-commercial, and by any | |
# means. | |
# | |
from __future__ import print_function |