board | product ID | chip | usable as controller? |
---|---|---|---|
BLE 2 Click | MIKROE-1715 | RN4020 | no |
BLE 3 Click | MIKROE-2471 | NINA-B1 | yes? |
BLE 4 Click | MIKROE-3773 | NINA-B312 | yes? |
BLE 5 Click | MIKROE-4120 | PAN1760A | NRND? |
BLE 6 Click | MIKROE-4170 | BlueNRG-M2 | yes |
BLE 7 Click | MIKROE-3872 | BGX13S22GA-V31 | yes? |
BLE 8 Click | MIKROE-3674 | ANNA-B112 | yes? |
BLE 9 Click | MIKROE-4487 | BGM220P | yes? |
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
[CmdletBinding()] | |
Param ( | |
[Parameter(Position=1,Mandatory=$true)] | |
[string] | |
$Word, | |
[Parameter(Position=2)] | |
[byte[]] | |
$FixedSalt | |
) |
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
& "C:\Program Files\qemu\qemu-system-i386.exe" ` | |
-cpu pentium3 ` | |
-m 1024 ` | |
-vga cirrus ` | |
-drive "if=ide,bus=0,unit=0,media=disk,file=w2k_de.qcow2" ` | |
-drive "if=ide,bus=1,unit=0,media=cdrom" ` | |
-device sb16 ` | |
-device "usb-ehci" ` | |
-device "usb-tablet" ` | |
-qmp "tcp:127.0.0.1:6969,server,wait=off" ` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/usr/bin/env python3 | |
import binascii | |
import io | |
import struct | |
import sys | |
from typing import NamedTuple | |
class MidiEvent(NamedTuple): | |
time: int |
You might have experienced the following: you are watching a video in your browser and audio and video both work fine, but when you pass the .m3u8
URL that you found in the page's source to a download tool, the download tool makes a veritable pig's breakfast out of it -- perhaps the video works but the audio doesn't, perhaps the audio is completely desynchronized from the video, perhaps the audio appears to interrupt the video.
The likely culprit is the encoding of each video fragment. .m3u8
is actually a playlist -- a list of individual files named fragments that should be played in sequence as if they were one big video. Normally, a fragment would start with some metadata (M
) and then carry video (V
) and audio (A
) intermingled:
MMVVVAAVVVAAVVVAA...
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
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Alphabet Converter</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<script type="text/javascript"> | |
// <![CDATA[ |
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
(kicad_sch | |
(version 20250114) | |
(generator "eeschema") | |
(generator_version "9.0") | |
(uuid "18d66037-9dd9-450e-b3ca-189463bf472c") | |
(paper "A4") | |
(lib_symbols | |
(symbol "Connector:DE15_Socket_HighDensity_MountingHoles" | |
(pin_names | |
(offset 1.016) |