BIOS: EC-ARB20A-1.15-T01
Proxmox VE: 7.3-1
#!/bin/bash | |
# 将 mp3 文件中的繁体字转换为简体字 | |
# 依赖:opencc mid3v2 | |
# 用法:hant2hans.sh [-d dir] [-f file] | |
set -e | |
function get_by_id() { | |
mid3v2 -l "$1" | grep "$2" | cut -d= -f2 | sed 's/^[ \t]*//' |
BIOS: EC-ARB20A-1.15-T01
Proxmox VE: 7.3-1
A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
Name | Stars | Last Commit | Description |
---|---|---|---|
three.js | ![GitHub |
By default when Nginx starts receiving a response from a FastCGI backend (such as PHP-FPM) it will buffer the response in memory before delivering it to the client. Any response larger than the set buffer size is saved to a temporary file on disk.
This process is outlined at the Nginx ngx_http_fastcgi_module page manual page.
# Idempotent way to build a /etc/hosts file with Ansible using your Ansible hosts inventory for a source. | |
# Will include all hosts the playbook is run on. | |
# Inspired from http://xmeblog.blogspot.com/2013/06/ansible-dynamicaly-update-etchosts.html | |
- name: "Build hosts file" | |
lineinfile: dest=/etc/hosts regexp='.*{{ item }}$' line="{{ hostvars[item].ansible_default_ipv4.address }} {{item}}" state=present | |
when: hostvars[item].ansible_default_ipv4.address is defined | |
with_items: groups['all'] |