SELECT
LOWER(
CONCAT(
# 1th and 2nd block are made of 6 random bytes
HEX(RANDOM_BYTES(4)),
'-',
HEX(RANDOM_BYTES(2)),
- Compact 84 keys layout.
- Cherry MX switches.
- No backlight by default, but able to support DIY backlight.
- Polybutylene terephthalate (PBT) key caps.
- Detachable 1.5 meter USB-C cable.
- NKRO refers to N-key rollover. A keyboard with N-key rollover can register as many keys as you can press at once without "dropping" any characters. This means that no matter how fast you type, your keyboard will keep up.
- 750 grams.
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
<?php | |
// check for POST method | |
if ($_SERVER['REQUEST_METHOD'] == 'POST') { | |
// get payload data | |
$post = json_decode(file_get_contents('php://input'), true); | |
$signature = $post['signature']; | |
$data = $post['event-data']; | |
$key = "MAILGUNAPIKEY"; |
- Use
curl
to get the JSON response for the latest release - Use
grep
to find the line containing file URL - Use
cut
andtr
to extract the URL - Use
wget
to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \
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
Package: * | |
Pin: release n=bullseye-backports | |
Pin-Priority: 900 | |