Misc
- Free Network EBook
- themes- One Theme to Rule Them All
- Great load balancing explaining blog : Load Balancing
- Blame someone else for your bad code.
- Cornell Virtual Workshop
- Cornell Virtual Workshop - Vectorization 向量化
- An introduction to lockless algorithms
- Hacker News 的三種 feed
- 命令列的藝術
- Detecting Honeypots
- nmap defenses trickery
- The future of programming: Research at CHI 2023
- Monoliths are not dinosaurs
- Commit Often, Perfect Later, Publish Once: Git Best Practices
- iterm2 有內建python api plugin窗口, 也可以用 elvish 去自動化
- How to overcome "datetime.datetime not JSON serializable"?
- How to apply color on text in Markdown ->
<span style="color:blue">some *blue* text</span>.
- Using Javascript's atob to decode base64 doesn't properly decode utf-8 strings : JS 跟人家都不一樣, 很難搞 到現在我還在用 unescape() << Deprecated QQ
- Free CAPTCHA Alternative Cloudflare Turnstile is a free tool to replace CAPTCHAs
- 在github裡面的md要顯示plantuml的圖, 可以用下面的方式

, 這邊在想幫kroki多綁個API, 吃url轉base64取svg.
- A Flexible Type System for Fearless Concurrency
- The Ultimate Battle of Language Models: Lit-LLaMA vs GPT3.5 vs Bloom vs …
- ARM or x86? ISA Doesn’t Matter
- Delimiters won’t save you from prompt injection
- intel-one-mono -> Intel One Mono font repository
- Write your own email server (in Rust!)
- How to brew install specific version of Node? -> 就是有那種不管後面生死的開發方式
- Argument list too long for ls
- Tahlequah(orca) 天下的父母真的百百種
- A terminal case of Linux
- [Evolved antenna] (https://en.wikipedia.org/wiki/Evolved_antenna)
- Brainformers: Trading Simplicity for Efficiency
- git-credential-oauth -> A Git credential helper that securely authenticates to GitHub, GitLab and BitBucket using OAuth.
- AI Takes a Strong Supporting Role in Modern Chip Design, 有空看一下進一步的資訊
- neofetch : A command-line system information tool written in bash 3.2+
- joshuto : anger-like terminal file manager written in Rust
- Liquid_Armor
- Viscoelasticity - 黏彈性
- Tsiolkovsky rocket equation - 火箭方程 - 齊奧爾科夫斯基火箭方程 (英語:Tsiolkovsky rocket equation) 是俄國火箭專家康斯坦丁·齊奧爾科夫斯基(俄語:Константин Эдуардович Циолковский, 波蘭語:Konstanty Ciołkowski, 英語:Konstantin Eduardovich Tsiolkovsky)獨自推導的火箭推動原理,該原理是現代空間飛行器的基礎原理。
- Leidenfrost effect - 萊頓弗羅斯特現象 : 萊頓弗羅斯特現象,又譯作李登弗斯特作用、賴登福現象,在1732年為赫爾曼·布爾哈夫(Herman Boerhaave)首次發現,其後在1756年,德國醫生約翰·戈特洛布·萊頓弗羅斯特(Johann Gottlob Leidenfrost)作出更深入的研究,並書於《論普通水的性質》(A Tract About Some Qualities of Common Water)一文之中[1]。當液體接觸一塊遠超其沸點的物件時,液體表面會產生出一層有隔熱作用的蒸氣,令液體沸騰的速度大大減慢。萊頓弗羅斯特現象可以通過材料結構設計,比如熱裝甲,完全抑制從而達成高效液冷
- thomas-krenn Linux 圖表網站, 很優的資源
- 中國對外投資指南 另類資料ready網站
Vim
Python
PSql
- Find duplicate rows with PostgreSQL
- How do you find the row count for all your tables in Postgres
WITH tbl AS
(SELECT table_schema,
TABLE_NAME
FROM information_schema.tables
WHERE TABLE_NAME not like 'pg_%'
AND table_schema in ('public'))
SELECT table_schema,
TABLE_NAME,
(xpath('/row/c/text()', query_to_xml(format('select count(*) as c from %I.%I', table_schema, TABLE_NAME), FALSE, TRUE, '')))[1]::text::int AS rows_n
FROM tbl
ORDER BY rows_n DESC;
- PostgreSQL Query GROUP BY Year/Month - No function matches the given name?
- How to query for non-consecutive values?
- insert inserted id to another table
- SVG Images from Postgres
- PostgreSQL reconsiders its process-based model A PostgreSQL instance runs as a large set of cooperating processes, including one for each connected client. These processes communicate through a number of shared-memory regions using an elaborate library that enables the creation of complex data structures in a setting where not all processes have the same memory mapped at the same address.
PostgreSQL 怎麼遠端連線
- 找到
postgresql.conf
, 如果能連進database, 用show config_file
, brew現在的版本是 /opt/homebrew/var/postgresql@15/postgresql.conf
, 因為這兩年變動頗大, 不行就整個 find
.
- 找到後把
listen_addresses = 'localhost'
改成 listen_addresses = '*'
- 找到
pg_hba.conf
, 如果能連進database, 用SHOW hba_file;
, 不然就要用ps -ef | grep postgres
找出 -D
後面的參數.
- 加上
host all all 0.0.0.0/0 md5
Rust
- ngx-rust Rust binding for NGINX
- RustPython A Python Interpreter written in Rust (有夯🔥)
- trunk Build, bundle & ship your Rust WASM application to the web. 最近這條路整個都發展起來了 (20230627)
- webapp.rs A web application completely written in Rust.
Rust wasm in browser (with Yew)
<- REST
-> Rust app HTTP Server -- actix-web
<-> Diesel (ORM) -> PostgreSQL
Javascript
- alpinejs Alpine.js 通過很低的成本提供了與Vue 或React 這類大型框架相近的響應式和聲明式特性。你可以繼續操作DOM,並在需要的時候使用Alpine.js。可以理解為JavaScript 版本的Tailwind。備註:Alpine.js 的語法幾乎完全借用自Vue(並用Angular的語法做了些擴展)。在此由衷感謝他們對Web 世界的貢獻。
LLaMa (Large Language Model Meta AI)
- llama.cpp
- [High-Speed Inference with llama.cpp and Vicuna on CPU] (https://pub.towardsai.net/high-speed-inference-with-llama-cpp-and-vicuna-on-cpu-136d28e7887b)
LLM (large language model)
- OpenLLM An open platform for operating large language models (LLMs) in production. Fine-tune, serve, deploy, and monitor any LLMs with ease.
- [Run Very Large Language Models on Your Computer - With PyTorch and Hugging Face’s device_map] (https://pub.towardsai.net/run-very-large-language-models-on-your-computer-390dd33838bb) 2022 Dec
ML Vision
GPT
- gpt-engineer Specify what you want it to build, the AI asks for clarification, and then builds it. 有夯🔥. NeuralProphet is an easy to learn framework for interpretable time series forecasting. NeuralProphet is built on PyTorch and combines Neural Network and traditional time-series algorithms, inspired by Facebook Prophet and AR-Net.
- QLoRa Fine-Tune a Large Language Model on Your GPU, paper, repo
ML
Infra (這真的躲不掉)
- py-SMART Wrapper for smartctl (smartmontools)
在線上跳舞的那一塊
- DaProfilerDaProfiler is an OSINT tool allowing you to collect certain information about yourself in order to rectify by rgpd requests the traces you may have left on the net. DaProfiler is indeed able to recover: Addresses, Social media accounts, e-mail addresses, mobile / landline number, jobs. On a specified subject in a limited time.
python
base of course,
Side Projects
Tags Management
Introduction Blog Post
macos-tag repo
there have two python libs for macos-tag, have to verify which one is correct to macos-tag
- xattr - repo
- pyxattr
xattr based on linux command xattr
bside xattr, also have to handle plist on mac, python lib plistlib can help
IME with OpenAI
File Management
- Git Large File Storage: Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.
- 如何使用 Git LFS
Git Repo Backup
Git Service Solution
- pagure Pagure is a git-centered forge, python based using pygit2.
- Gogs Gogs is a painless self-hosted Git service (Go Lang)
- Savannah Savannah aims to be a central point for development, maintenance and distribution of official GNU software.
Git Client
- GitUp The Git interface you've been missing all your life has finally arrived.
Objective-C
based, still live and working, for MACOS, seems good, need a try 🔔
- lazygit simple terminal UI for git commands, Go lang based
- Guitar Git GUI Client by C/C++, Qt 5, similar to sourcetree, but totally open on GPL v2.
Markdown MindMap
- XState -> XState is a JavaScript and TypeScript library for creating, interpreting, and executing finite state machines and statecharts, as well as managing invocations of those machines as actors.
- XState Example
MAC Tips
mdfind:A Command-line Interface to macOS's Spotlight
Explainding Blog
python repo mdfind-wrapper
Knowledge
Database
- Conflict-free replicated data type (無衝突複製資料類型) - wiki
Math
Misc
ML
Rainbow
Implementation on github: Raibow
RL
Introduction
Knowledge
Implmentation
Others
Face Restoration
ML Tools
- mmagic-OpenMMLab Multimodal Advanced, Generative, and Intelligent Creation Toolbox. Unlock the magic 🪄: Generative-AI (AIGC), easy-to-use APIs, awsome model zoo, diffusion models, for text-to-image generation, image/video restoration/enhancement, etc.
- What Are Transformer Models and How Do They Work?
TTS
*pyttsx3
影片
- 漫長的季節: 《漫長的季節》是一部由企鵝影視出品,由辛爽執導,范偉、秦昊、陳明昊等領銜主演、李庚希、劉奕鐵、蔣奇明等特別主演的生活懸疑劇,講述了一座小城「樺林」中多個人物由於一場碎屍案而跨越近20年的故事[1]。2023年4月22日在騰訊視頻獨播。
- 暗夜情報員 - Netflix現在可以看: 《暗夜情報員》(英語:The Night Agent)是一部美國動作驚悚電視影集,尚恩·雷恩擔任主創,改編自馬修·奎克的同名小說。劇情講述一名聯邦調查局探員捲入了美國白宮內部的一場政治陰謀中。影集由蓋布瑞爾·貝索擔任主角,2023年3月23日在Netflix全球上線[1];上線的前四天成為Netflix觀看數第三高的影集,之後很快地獲得第二季的續訂
- 神鬼無間: 《神鬼無間》(英語:The Departed,中國大陸譯《無間行者》,香港譯《無間道風雲》)是美國電影導演馬丁·史柯西斯執導的2006年美國犯罪電影。本片改編自劉偉強跟麥兆輝聯合執導的2002年香港電影《無間道》。主演是李奧納多·狄卡皮歐、麥特·戴蒙、傑克·尼克遜和馬克·華伯格,配角有馬丁·辛、雷·溫斯頓、薇拉·法蜜嘉、安東尼·安德森和亞歷·鮑德溫。
- 沒問題先生 - 《沒問題先生》(英語:Yes Man,香港譯《乜都得先生》)是一部2008年美國喜劇片,由派頓·瑞德執導,金·凱瑞領銜主演。電影根據英國作家丹尼·華萊士2005年的原著《The Yes Man》改編而成。2007年10月於洛杉磯進行製作,北美2008年12月19日首映。
想買的東西
Cook