This document assumes Go version 1.0.3.
- Go to downloads and select image
- Use
sudo lsblk -p
to list all mounted devices, and select your SD - Use
sudo umount /dev/your-SD-device
- Use
sudo dd if=image.img of=/dev/your-SD-device status=progress
to install image on SD
More details you can find in documentation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import resource | |
from functools import wraps | |
def mem_it(func): | |
@wraps(func) | |
def wrapper(*args, **kwargs): | |
print( | |
'Pre-memory usage: {} (mb)'.format( | |
resource.getrusage(resource.RUSAGE_SELF).ru_maxrss / 1024 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
docker-registry: | |
container_name: docker-registry | |
image: registry:2 | |
ports: | |
- 5000:5000 | |
restart: always | |
volumes: |
I hereby claim:
- I am dmmeteo on github.
- I am dmmeteo (https://keybase.io/dmmeteo) on keybase.
- I have a public key whose fingerprint is BD70 163E B7C2 2D0E 4D24 6D43 FD24 D397 6A4B 37B7
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Hammerspoon configuration to switch keyboard languages with shortcuts | |
-- Table to keep track of the last modifiers and if another key was pressed | |
local lastModifiers = {} | |
local otherKeyPressed = false | |
-- Function to handle single taps on modifier keys | |
local function singleTapHandler(event) | |
local newModifiers = event:getFlags() | |
local keyCode = event:getKeyCode() |
This repository is trending on Github since some days now. Watch it, we will add many updates in the future. Thank you for your support.
Check the website.
A collection of anything from basics to advanced recommended methods and usages with Django REST Framework for creating browsable and awesome web API's. This could also serve as a quick reference guide.
Here is DRF's official documentation in case you need everything in detail.
Summarized from the official docs:
- Web browsable API
- Serialization that supports ORM and non-ORM data sources.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Single Responsibility Principle | |
“…You had one job” — Loki to Skurge in Thor: Ragnarok | |
A class should have only one job. | |
If a class has more than one responsibility, it becomes coupled. | |
A change to one responsibility results to modification of the other responsibility. | |
""" | |
class Animal: | |
def __init__(self, name: str): |
OlderNewer