边界条件之场
66 subscribers
680 photos
4 videos
10 files
1.03K links
Do you hear the sirens sing?

main: @cvf_cha
group: @cvf_gro
forwards: @cvf_for
Download Telegram
最近几个月旁观了一些央视台的电视剧,发现非常大比例的片段都是后期配音的 🤔。口型对不上,且剪辑经常有意规避发言者正面镜头,画面上总是听的人而不是说的人……

因为原始剧本拍出来过不了离谱审核,后期花不出钱重拍只能 配音+剪辑 弥补? #china #tv
又是被 #wtf logseq 猛创的一天,它们 markdown parser 写的什么狗屎(至少不兼容 CommonMark)

我写: *A **B***
理应是: <em>A <strong>B</strong></em>
它渲染出来: <em>A B</em>**

我写: *A **B** C*
理应是: <em>A <strong>B</strong> C</em>
它渲染出来: <em>A B</em>* C*

百思不得其解,难道 logseq 用的 parser 读的是 (*A *)(*B*)**(*A *)(*B*)* C* ?????
跑通了自己的第一个前端学习项目;rust 写业务逻辑,编译到 wasm 暴露接口给 js;sveltekit 写 ui 和交互逻辑,编译到没有服务端的 spa;tauri 包装 sveltekit 编译出来的静态资源,生成桌面端可执行文件。

整个过程中体验最烂的是第一步中尝试给 wasm-pack 挂代理,以及第三步中在傻逼 windows 下编译 tauri ……
svelte 里的一点小坑跟这两个相比什么都不算 😇
👍1
前端真____混沌无序,input field 最小宽度不受控制,看了半天 inspector 找是哪条浏览器内置 css 设置了宽度,无果。上 stackoverflow 一查才知道这玩意的最小宽度不在 css 里,在 html <input> tag 的 size attribute 里……
翻出 <input> 的 reference (P1) 看了下确实有写……但没踩过这个坑谁____知道平常用 css 控制的宽度属性到了 input 上默认值要去 html 里改 😡
html+css 那么巨量的文档,加上数不清的历史遗留 can not break 的古怪特性,只能说太 awesome 了 🤮
#trash #web
边界条件之场
先是遇到了上面提及的 form reset 问题,尝试解决的过程中遇到了一连串更加让人不安的灵车行为 😨 #svelte #web
If the binding points into a component (i.e. event_type -> component prop -> binding inside component) then flip state also won't work 😕. The outer variable flipped but the variable inside the component won't.
I feel like this is partially due to some js async shenanigan?
摸鱼见闻
Message
我现在看到 pan . baidu . com 都不费心找脚本了,直接开虚拟机装它们的客户端 😇
还好现在平均下来一年都用不到一次国产网盘。
toymil
「afaik it's a licensing issue, try switching to ltsc non-iot with the kms key, launching it, and changing back」— Windows Sandbox does not work on Windows 10 IoT LTSC WTF???
才知道 IoT LTSC 2021 现在能用沙箱了! #windows

「Sandbox - Initial release (19044.1288) of Iot LTSC didn’t have sandbox but non-Iot version had. Later updates enabled it in Iot as well, so there is no difference anymore.」
-- https://massgrave.dev/windows_ltsc_links.html
边界条件之场
android 上怎么用 rsync 啊,adb push/pull 不保留时间戳很烦
刚刚摸索出了 android 和 pc 间传输大量文件比较可行的方法

1. adb pull/push ,在我的设备上能跑 35 MiB/s,但是不保留文件时间戳
2.a MTP 协议连接 pc,通过 jmtpfs 等工具挂载到文件夹
2.b rsync --size-only --times 同步时间戳

一开始我是直接挂载 mtp 然后 rsync 传输全部的,但 mtp 这个垃圾协议实在太慢了,只能跑到 1.5 MiB/s 左右。为什么都 2023 年了各方面都是狗屎的 mtp 仍然是 android 跟 pc 连接的唯一可选协议??
#tips #android #trash #mtp