随笔分类 - misc
摘要:扫描某博客网站,nmap告诉我: OS details: Tomato 1.28 (Linux 2.4.20), Tomato firmware (Linux 2.6.22), Sony Ericsson U8i Vivaz mobile phone 移动时代也不至于拿手机当Web服务器啊。 网站不
阅读全文
摘要:百度百科【杨辉三角、刘徽、数学归纳法、排列组合】 在线运行C++ 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 1 6 15 20 15 6 1 1 7 21 35 35 21 7 1 1 8 28 56 70 56 28 8 1 1 9 36 84 126 1
阅读全文
摘要:像下图这样的蛇如何拐弯?绿点是新蛇头,红点是旧蛇尾。 搜了下,有用JavaScript写的,有用Python写的,好像都是把蛇身用一系列的点来表示。这样比我原先想的用若干根线段表示简单清晰多了,最前面加一个点,最后面删一个点即可,不用把一根线段折/拆成两根。几百个点速度也很快。当把蛇身画成一系列椭圆
阅读全文
摘要:网页里的电脑博物馆 (compumuseum.com) https://www.compumuseum.com/emularity.html?machine=wps97 退出WINDOWS回到DOS, DIR WPS 97,只有26个文件,5.7MB. WIN.BAT可再进入WINDOWS. htt
阅读全文
摘要:四大F: factor, factorial, factorization, fibonacci. 看/写parser时,时常遇到expression, term, factor之流,或更糟,E, T, F. Expression- Term, Factor, Coefficient 多项式的项、因
阅读全文
摘要:https://superuser.com/questions/305128/how-to-specify-level-of-compression-when-using-tar-zcvf $ tar cv /path/to/directory | gzip --best > file.tar.gz
阅读全文
摘要:#include <math.h> #include <iostream> using namespace std; #define fn rint // https://gcc.gnu.org/onlinedocs/cpp/Stringizing.html #define xstr(s) str(
阅读全文
摘要:Lanczos resampling - Detailed Pedia | 全部文件(25KB) Lanczos resampling is often used also for multivariate interpolation, for example to resize or rotate
阅读全文
摘要:g++ -o 1 1.cpp -lpng16 # correct g++ 1.cpp -lpng16 -o 1 # correct g++ -lpng16 1.cpp -o 1 # wrong g++ -o 1 -lpng16 1.cpp # wrong Link1 | Link2 | Link3
阅读全文
摘要:小图片: IfranView: IrfanView是免费软件但不开源。下面的程序读取small.png,用最简单的方法放大到3.14倍后输出big.png: /* https://www.nongnu.org/pngpp/ 在libpng上包了C++接口,用起来很方便。 安装与查看libpng++-
阅读全文
摘要:Argument vs. Parameter - Microsoft Style Guide | Microsoft Learn These terms are often used interchangeably. Use argument in content for a general aud
阅读全文
摘要:乐视宣布实行每周四天半工作制:每周三弹性工作半天_IT新闻_博客园 (cnblogs.com)
阅读全文
摘要:Parsing | Detailed Pedia A Guide To Parsing: Algorithms And Terminology LR Parsing - Coding Ninjas CodeStudio The Lemon LALR(1) Parser Generator (sqli
阅读全文
摘要:左上角图标—属性。布局里可增加屏幕缓冲区的高度。 编译时满屏的错误信息就不会看不到最开始的啦。:-) $ export LC_ALL=zh_CN.utf8; date 2023年 01月 05日 星期四 08:50:31 CST $ locale -a C C.UTF-8 en_US.utf8 PO
阅读全文
摘要:以Debian root用户为例。请先看如下程序: #include <stdlib.h> #include <stdio.h> int main() { printf("%d ", sizeof(int)); printf("%d ", sizeof(long)); printf("%d ", s
阅读全文
摘要:旧版 WSL 的手动安装步骤 (Microsoft Learn) 用Microsoft Store安装比自己下载AppxBundle快很多、下载的文件小(差不多是60MB vs 120MB),后者还可能断线(还不能续传)。 下面以Debian为例: 导出安装为tar文件:wsl --export d
阅读全文
摘要:不想在vscode的Explorer里看见*.o,除了File-Preference-Settings, Search settings (File.Exclude),还可以改Makefile,把*.o放在某个目录(如o)下嘛。 一堆.d文件不如一个.dep文件高档。 array.o: array.
阅读全文
摘要:https://files.cnblogs.com/files/blogs/714801/gawk-master.7z 350KB 在 GitHub - gvlx/gawk: forked from git://git.savannah.gnu.org/gawk.git 下载的源码 下载安装了min
阅读全文
摘要:· 、 。― ~ ‖ … ‘ ’ “ ” ′ ″ 〔 〕〈 〉 《 》 「 」 『 』 〖 〗 【 】 ± × ÷ ∶ ∧ ∨ ∑ ∏ ∪ ∩ ∈ ∷ √ ⊥ ∥ ∠ ⌒ ⊙ ∫ ∮ ≡ ≌ ≈ ∽ ∝ ≠ ≮ ≯ ≤ ≥ ∞ ∵ ∴ ♂ ♀ ° ℃ $ ¥ ¤ ¢ £ ‰ § № ☆ ★ ○ ●
阅读全文
摘要:function KMP(s, m, p, n) { if (n == 0 || m == 0) return; split(s, str, ""); split(p, pattern, ""); # https://www.tutorialspoint.com/awk/awk_string_fun
阅读全文