- Wielowymiarowość (Multi-faceted): Wektor musi przechwytywać ortogonalne aspekty połączenia – nie tylko opóźnienie, ale jego rozkład, charakterystykę częstotliwościową, niezawodność i kontekst systemowy.
- Interpretowalność (Interpretable): Każdy wymiar musi mieć jasne znaczenie fizyczne lub statystyczne, aby klastry wektorów i anomalie były zrozumiałe dla człowieka.
- Normalizacja (Normalizable): Wartości muszą być możliwe do znormalizowania (np. przez skalowanie min-max lub standaryzację Z-score), aby algorytm odległości (jak L2 w HNSW) działał poprawnie.
- Rozszerzalność (Extensible): Schemat powinien pozwalać na przyszłe dodawanie wymiarów bez unieważniania całej koncepcji.
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 | |
| # Check if exactly one argument is provided | |
| if [ "$#" -ne 1 ]; then | |
| echo "Error: Invalid number of arguments." >&2 | |
| echo "Usage: $0 <path_to_git_directory>" >&2 | |
| echo "Example: $0 ./my-project" >&2 | |
| exit 1 | |
| fi |
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
| On client: | |
| 1. | |
| add: | |
| nameserver 8.8.8.8 | |
| nameserver 1.1.1.1 | |
| to /etc/resolv.conf | |
| 2. |
[email protected]:~$ sudo dd bs=1m if=/Users/jamesmead/Downloads/2015-02-16-raspbian-wheezy.img of=/dev/disk2
pi@raspberrypi ~ $ sudo raspi-config
# Choose option 1 to "Expand Filesystem" - Ensures that all of the SD card storage is available to the OS
# Choose Finish & reboot
pi@raspberrypi ~ $ sudo apt-get update
Notes about the Yaesu FC-30 tuner connected to the FT-891 radio. I have not been able to find any information online at all about the propriatry protocol used, so I’m compiling this from my observations.
The ultimate goal of this project is to connect an Icom AH-4 tuner to Yaesu radios.
Data shown is hex. Data in [brackets] are from tuner. Data without brackets are from radio.
Seems tuning is done in three steps:
A Pen by Zachary Skalko on CodePen.
A Pen by Zachary Skalko on CodePen.
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
| function getSupportedMimeTypes(media, types, codecs) { | |
| const isSupported = MediaRecorder.isTypeSupported; | |
| const supported = []; | |
| types.forEach((type) => { | |
| const mimeType = `${media}/${type}`; | |
| codecs.forEach((codec) => [ | |
| `${mimeType};codecs=${codec}`, | |
| `${mimeType};codecs:${codec}`, | |
| `${mimeType};codecs=${codec.toUpperCase()}`, | |
| `${mimeType};codecs:${codec.toUpperCase()}` |
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
| [Basic] | |
| LBP=41 | |
| LC=25 | |
| ALC0=1 | |
| ALC1=52 | |
| ALC2=58 | |
| ALC3=64 | |
| ALC4=70 | |
| ALC5=76 | |
| ALC6=82 |
NewerOlder