libcamera-vid -t 0 --inline -o - | cvlc stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8554/stream1}' :demux=h264
We can't make this file beautiful and searchable because it's too large.
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
Character Kunyomi Onyomi Meanings | |
亜 つ.ぐ ア Asia, rank next, come after, -ous | |
唖 おし ア, アク mute, dumb | |
娃 うつく.しい ア, アイ, ワ beautiful | |
阿 おもね.る, くま ア, オ Africa, flatter, fawn upon, corner, nook, recess | |
哀 あわ.れ, あわ.れむ, かな.しい アイ pathetic, grief, sorrow, pathos, pity, sympathize | |
愛 いと.しい, かな.しい, め.でる, お.しむ, まな アイ love, affection, favourite | |
挨 ひら.く アイ approach, draw near, push open | |
姶 あい オウ, アイ good-looking, quiet | |
逢 あ.う, むか.える ホウ meeting, tryst, date, rendezvous |
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
// Paste the following into any p5.js sketch, and press Enter to toggle fullscreen | |
function toggleFullScreen() { | |
if (!document.fullscreenElement) { | |
document.documentElement.requestFullscreen(); | |
} else if (document.exitFullscreen) { | |
document.exitFullscreen(); | |
} | |
} |
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
.glowGlitch { | |
position: relative; | |
padding: 0 20px; | |
display: inline-block; | |
border-radius: 2px; | |
color: #000; | |
-webkit-animation: neon1 3s ease-in-out infinite alternate; | |
animation: neon1 3s ease-in-out infinite alternate; | |
-webkit-box-shadow: 0 0 23px 6px rgba(255, 213, 0, 0.52); | |
box-shadow: 0 0 23px 6px rgba(255, 213, 0, 0.52); |
The pi will fail to boot without the nofail
option. Arch linux wiki recommended options
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
--- applicationpreference.plist 2022-05-19 14:57:58.000000000 +0100 | |
+++ applicationpreferenc2.plist 2022-05-19 14:56:29.000000000 +0100 | |
@@ -3,6 +3,6 @@ | |
<plist version="1.0"> | |
<dict> | |
<key>Feature Set Locale Setting</key> | |
- <integer>256</integer> | |
+ <integer>257</integer> | |
</dict> | |
</plist> |
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
// @mngyuan: below follows a list of what i did | |
// copied definitions from Motors_Radio_Controller to top section of file | |
// copied setup() from Motors_Radio_Controller into setup() function | |
// copied loop() from Motors_Radio_Controller into loop() function | |
// changed value of CURRENT_SEN_1 and EN_PIN_1 to not clash with SD card code | |
// commented extra Serial.begin() from SD card's setup() | |
// formatted code with clang-format set to Google config | |
// | |
// notes: | |
// * the sd card code hardcodes pin 53 as your SS pin, but it varies based on |
NewerOlder