View KB4012598-direct-links.txt
This file contains 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
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 |
View Makefile
This file contains 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
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 |
View ntfs_attr.sh
This file contains 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 | |
# 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/ |
View usb_vaccine.txt
This file contains 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
USB virus immunity script and hidden files revealer. | |
This repository has been moved. | |
Please see https://github.com/Explorer09/usb_vaccine | |
------------------------------------------------------------------------------- | |
zh-tw | |
USB 病毒免疫暨隱藏檔現形程式 |
View tapcpr-petition-counter.sh
This file contains 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 | |
# 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 |
View git-cache-meta.sh
This file contains 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 -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 |