Skip to content

Instantly share code, notes, and snippets.

View chr233's full-sized avatar
🎯
Focusing

Chr_ chr233

🎯
Focusing
View GitHub Profile
@chr233
chr233 / summaries_2025-08-22.json
Last active September 2, 2025 02:15
WakaTime History
[{"languages":[{"name":"C#","total_seconds":13731.577698,"digital":"3:48:51","decimal":"3.80","text":"3 hrs 48 mins","hours":3,"minutes":48,"seconds":51,"percent":74.49},{"name":"Binary","total_seconds":3228.742739,"digital":"0:53:48","decimal":"0.88","text":"53 mins","hours":0,"minutes":53,"seconds":48,"percent":17.52},{"name":"XML","total_seconds":696.389667,"digital":"0:11:36","decimal":"0.18","text":"11 mins","hours":0,"minutes":11,"seconds":36,"percent":3.78},{"name":"PowerShell","total_seconds":471.48542,"digital":"0:07:51","decimal":"0.12","text":"7 mins","hours":0,"minutes":7,"seconds":51,"percent":2.56},{"name":"JSON","total_seconds":265.079358,"digital":"0:04:25","decimal":"0.07","text":"4 mins","hours":0,"minutes":4,"seconds":25,"percent":1.44},{"name":"Svelte","total_seconds":38.641,"digital":"0:00:38","decimal":"0.00","text":"38 secs","hours":0,"minutes":0,"seconds":38,"percent":0.21},{"name":"TypeScript","total_seconds":1.6,"digital":"0:00:01","decimal":"0.00","text":"1 sec","hours":0,"minutes":
@chr233
chr233 / delete_mysterious_file.sh
Last active January 28, 2022 16:07
删除OpenWrt固件中随机出现在根目录的乱码文件
#!/bin/bash
match="^(bin|boot|dev|etc|home|init|lib|lib64|mnt|opt|overlay|proc|rom|root|run|sbin|sys|tmp|usr|var|www)$"
path="/"
for file in $(ls $path); do
if [[ $file =~ $match ]]; then
echo $file
else
if [ -f "$file" ]; then
Java........... 9h 50m .........................39.0%
Svelte......... 7h 28m .........................29.6%
C#............. 2h 52m .........................11.4%
XML............ 1h 24m ..........................5.6%
Other.......... 3h 39m .........................14.5%