資料來源:全國法規資料庫
修正前的最後版本為 民國 107 年 11 月 21 日
資料來源:立法院議事暨公報資訊網
| /** @file utf9.c | |
| UTF-9 (RFC 4042) conversion functions. | |
| These functions implement UTF-9, a transformation format in an April | |
| Fools' RFC document, RFC 4042. | |
| Copyright 2025 Kang-Che Sung <explorer09 @ gmail.com> | |
| MIT License (MIT/Expat) |
資料來源:全國法規資料庫
修正前的最後版本為 民國 107 年 11 月 21 日
資料來源:立法院議事暨公報資訊網
| /** @file octant_bits_to_unicode.c | |
| Unicode "Block Octants" (U+1CD00 - U+1CDE5) bits to code point / UTF-8 | |
| function | |
| Copyright 2024 Kang-Che Sung <explorer09 @ gmail.com> | |
| MIT License (MIT/Expat) | |
| Permission is hereby granted, free of charge, to any person obtaining a | |
| copy of this software and associated documentation files (the |
| Security Update for Windows XP SP3 (KB4012598) | |
| http://download.windowsupdate.com/d/csa/csa/secu/2017/02/windowsxp-kb4012598-x86-custom-ara_ec0e5c3d7d1433686c5d59a144d25f99d2e42945.exe | |
| http://download.windowsupdate.com/d/csa/csa/secu/2017/02/windowsxp-kb4012598-x86-custom-chs_dca9b5adddad778cfd4b7349ff54b51677f36775.exe | |
| http://download.windowsupdate.com/d/csa/csa/secu/2017/02/windowsxp-kb4012598-x86-custom-cht_a84b778a7caa21af282f93ea0cdada0f7abb7d6a.exe | |
| http://download.windowsupdate.com/d/csa/csa/secu/2017/02/windowsxp-kb4012598-x86-custom-csy_0d3b05e28c9b74e02f8880d510236e2ca946136f.exe | |
| http://download.windowsupdate.com/d/csa/csa/secu/2017/02/windowsxp-kb4012598-x86-custom-dan_2923c2e1c5af998fccbefdf943dd21541290970a.exe | |
| http://download.windowsupdate.com/d/csa/csa/secu/2017/02/windowsxp-kb4012598-x86-custom-deu_c1e81e14c283f2adbbdce9c1de348b4295b6a45c.exe | |
| http://download.windowsupdate.com/d/csa/csa/secu/2017/02/windowsxp-kb4012598-x86-custom-ell_c7096e83ecfbb487569f986f50ec9cd7bf1b6476.exe | |
| http://download.wi |
| CC = gcc -std=gnu99 | |
| LIBS = -lm | |
| .PHONY: all check clean | |
| all: htop-bar1 htop-bar2 htop-bar3 htop-bar4 | |
| htop-bar1: htop-bar1.c | |
| htop-bar2: htop-bar2.c |
| #!/bin/sh | |
| # ntfs_attr.sh - Display or change attributes on an NTFS filesystem | |
| # Tools required: | |
| # getfattr(1) and setfattr(1) | |
| # http://savannah.nongnu.org/projects/attr/ | |
| # (In Debian/Ubuntu: sudo apt-get install attr) | |
| # ntfs-3g (pre-installed in most Linux distros) | |
| # http://www.tuxera.com/community/ntfs-3g-download/ |
| USB virus immunity script and hidden files revealer. | |
| This repository has been moved. | |
| Please see https://github.com/Explorer09/usb_vaccine | |
| ------------------------------------------------------------------------------- | |
| zh-tw | |
| USB 病毒免疫暨隱藏檔現形程式 |
| #!/bin/bash | |
| # watch -n 600 "( ./tapcpr-petition-counter.sh | tee -a log.txt )" | |
| # $1 Destination file name | |
| # $2 URL | |
| download_file () { | |
| if wget -q -O ${1} ${2}; then | |
| echo "${1} downloaded." >&2 | |
| else |
| #!/bin/sh -e | |
| #git-cache-meta -- simple file meta data caching and applying. | |
| #Simpler than etckeeper, metastore, setgitperms, etc. | |
| #from http://www.kerneltrap.org/mailarchive/git/2009/1/9/4654694 | |
| #modified by n1k | |
| # - save all files metadata not only from other users | |
| # - save numeric uid and gid | |
| # 2012-03-05 - added filetime, andris9 |