This file has been truncated, but you can view the full file.
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
| s6-rc: info: service matter-server successfully stopped | |
| s6-rc: info: service banner: stopping | |
| s6-rc: info: service banner successfully stopped | |
| s6-rc: info: service s6rc-oneshot-runner: stopping | |
| s6-rc: info: service s6rc-oneshot-runner successfully stopped | |
| s6-rc: info: service s6rc-oneshot-runner: starting | |
| s6-rc: info: service s6rc-oneshot-runner successfully started | |
| s6-rc: info: service fix-attrs: starting | |
| s6-rc: info: service banner: starting | |
| s6-rc: info: service fix-attrs successfully started |
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 | |
| pgrep alacritty > /dev/null | |
| if [ $? -eq 0 ]; then | |
| # Check if Alacritty is currently focused | |
| xprop -id $(xprop -root 32x '\t$0' _NET_ACTIVE_WINDOW | cut -f 2) WM_CLASS | grep Alacritty > /dev/null | |
| if [ $? -eq 0 ]; then |
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
| #define TRIGGER 13 | |
| #define ECHO 12 | |
| long duration, cm; | |
| void setup() { | |
| pinMode(TRIGGER, OUTPUT); | |
| pinMode(ECHO, INPUT); | |
| Serial.begin(9600); |
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 | |
| use ReflectionClass; | |
| use InvalidArgumentException; | |
| use Input, App; | |
| use ReflectionParameter; | |
| /** | |
| * Proudly based on laracasts/Commander! | |
| */ |