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
| [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] | |
| [ 0.000000] Linux version 6.2.7-1-ARCH-ARM (alarm@deck) (gcc (GCC) 16.1.1 20260430, GNU ld (GNU Binutils) 2.46.0) #1 SMP PREEMPT Tue Jun 23 17:44:29 UTC 2026 | |
| [ 0.000000] Machine model: Clockworkpi A06 | |
| [ 0.000000] efi: UEFI not found. | |
| [ 0.000000] Zone ranges: | |
| [ 0.000000] DMA [mem 0x0000000000200000-0x00000000f7ffffff] | |
| [ 0.000000] DMA32 empty | |
| [ 0.000000] Normal empty | |
| [ 0.000000] Movable zone start for each node | |
| [ 0.000000] Early memory node ranges |
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 argparse | |
| import serial | |
| from pynput.mouse import Controller | |
| import time | |
| def main(): | |
| parser = argparse.ArgumentParser(description="Arduino → Mouse proxy") | |
| parser.add_argument("-d", "--device", required=True, | |
| help="Serial device, e.g. /dev/ttyUSB0") |
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
| import serial | |
| from pynput.mouse import Controller | |
| import time | |
| # 配置串口 | |
| SERIAL_PORT = '/dev/ttyUSB0' | |
| mouse = Controller() | |
| remX = 0.0 | |
| remY = 0.0 |
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
| ##virtual box only | |
| VBoxClient-all & | |
| export GTK_IM_MODULE=fcitx | |
| export QT_IM_MODULE=fcitx | |
| export XMODIFIERS=@im=fcitx | |
| export LC_CTYPE=en_US.UTF-8 |
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 | |
| rsync -avPHSX /var/lib/docker/ /data/lib/docker/ |
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
| #include "comPro.h" | |
| #include <stdio.h> | |
| #include <string.h> | |
| int main(int argc,char* argv[]) | |
| { | |
| int icdev,st,number; | |
| char szVer[128]; | |
| int iNode = 0; | |
| char szNode[128]; |
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
| #include "comPro.h" | |
| #include <stdio.h> | |
| #include <string.h> | |
| int main(int argc,char* argv[]) | |
| { | |
| int icdev,st,number; | |
| char szVer[128]; | |
| int iNode = 0; | |
| char szNode[128]; |
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
| int ledPin=PA8; | |
| HardwareTimer timer(1); | |
| void setup() { | |
| // put your setup code here, to run once: | |
| pinMode(ledPin,OUTPUT); | |
| digitalWrite(ledPin,LOW); | |
| pinMode(ledPin,PWM); |
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/pulseaudio -nF | |
| .fail | |
| load-module module-device-restore | |
| load-module module-stream-restore | |
| load-module module-card-restore | |
| load-module module-augment-properties | |
| load-module module-switch-on-port-available | |
| .ifexists module-switch-on-connect.so | |
| load-module module-switch-on-connect |
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
| # | |
| # Automatically generated file; DO NOT EDIT. | |
| # Linux/arm64 5.10.112 Kernel Configuration | |
| # | |
| CONFIG_CC_VERSION_TEXT="real-aarch64-linux-android-gcc (GCC) 4.9.x 20150123 (prerelease)" | |
| CONFIG_CC_IS_GCC=y | |
| CONFIG_GCC_VERSION=40900 | |
| CONFIG_LD_VERSION=227000000 | |
| CONFIG_CLANG_VERSION=0 | |
| CONFIG_LLD_VERSION=0 |
NewerOlder