### NOTE: if performing these steps from e.g. USB, you will
### need to boot from an EFI-enabled live image and
### then load the efivarfs kernel module in order to
### make changes to EFI variables with efibootmgr
# root shell
sudo -s
# load EFI kernel module
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
| """ | |
| Train a neural network to implement the discrete Fourier transform | |
| """ | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| from tensorflow.keras.layers import Dense | |
| from tensorflow.keras.models import Sequential | |
| N = 32 | |
| batch = 10000 |
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
| #!/bin/bash | |
| ### your registry must have the following environment var set | |
| # REGISTRY_STORAGE_DELETE_ENABLED=true | |
| ### replace YOUR_SERVER with corect info | |
| REGISTRY_URL=https://YOUR_SERVER:5000 | |
| ### host registry volume folder | |
| REGISTRY_ROOT=/registry | |
| ### container to execute garbage-collect | |
| CONTAINER_NAME=services_registry.1 |
This tutorial will turn your Raspberry PI into a simple Bluetooth audio receiver, which plays music through connected speakers. It's like a regular car audio system, but it can be used anywhere and it's a good value.
Audio source (i.e. smartphone)
|
v
((( Wireless Bluetooth Channel )))
|
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
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: phd | |
| # Required-Start: $remote_fs $syslog | |
| # Required-Stop: $remote_fs $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: phabricator | |
| # Description: manages phd | |
| ### END INIT INFO |