这个根下的第一个标签中CSS overflow: hidden
删去或禁用掉。
- Blame my 300-million-year-old synapsid ancestor for my nocturnality. It’s basically genetic. - ChatGPT-4o
- 我贪恋黑夜,只因三亿年前星光是我祖先的灯。 - DeepSeek-r1
- 我非夜猫,是恒星熄灭后/自主发光的/第N代合弓纲余烬。 - DeepSeek-r1
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
// 打开数据库 | |
function openDatabase(dbName) { | |
return new Promise((resolve, reject) => { | |
const request = indexedDB.open(dbName); | |
request.onsuccess = (event) => { | |
const db = event.target.result; | |
resolve(db); | |
}; |
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
/* | |
* Copyright JFX 2021-2023 | |
* MIT License | |
* https://gitlab.com/jfx2006 | |
*/ | |
/* | |
* Copyright Zhai Can 2025 | |
* MIT License | |
*/ |
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/env ruby | |
require 'open3' | |
require 'iconv' | |
require 'shellwords' | |
$args = ARGV | |
show_help = $args.include?('-h') || $args.include?('--help') || $args.empty? | |
if show_help | |
puts %{Epson LQ-615KII Print Utility |
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
<p>My name: 翟灿 (Pinyin: Zhái Càn; Yale: Jai Ts'an)</p> | |
<p>I'm an SWL fan and also interested in Amateur Radio.</p> | |
<p>Grid: During school: OM91xq; during vacation: PM01gv</p> | |
<p>HF RIG: YAESU FT-710, Airspy HF+ Discovery<br/> | |
HF ANT:</p> | |
<ol> |
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/env ruby | |
require 'shellwords' | |
if ARGV.empty? | |
puts "Usage: #{$0} <drive-device>" | |
exit 1 | |
end | |
drive = ARGV[0] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 | |
[ $# -ne 3 ] && echo 'Arguments: <input.flac> <output.wav> <iq-samplerate>' && exit 1 | |
# decompress and squeeze | |
ffmpeg -v error -i "$1" -f s16le - | ffmpeg -nostdin -f s16le -ar "$3" -ac 2 -i pipe:0 -bitexact "$2" -y |
NewerOlder