PaperCube(日常版)
14 subscribers
100 photos
6 videos
9 files
132 links
新鲜出炉的自用 Windows 崩溃报告 抢 先 看 !
友链:
VisualDust (Daily Version): https://t.me/VisualDusts
Download Telegram
You can use %WT_SETTINGS_DIR% environment variable in Windows Terminal profiles. This was mentioned in an update but haven't shown in any official documentations. It can be very useful combined with the use of .portable marker file to achieve a similar effect like .bashrc, when you want to make Windows Terminal fully portable.

P.S. I saw many using Enigma Virtual Box to create portable apps. I haven't tried but it looks promising
This media is not supported in the widget
VIEW IN TELEGRAM
Forwarded from BennyThink's Blog (Benny小可爱)
Forwarded from 𝓡𝓲𝔁
使用CDN要帶上哈希校驗
<script src="https://example.com/example-framework.js"
integrity="sha384-Li9vy3DqF8tnTXuiaAJuML3ky+er10rcgNR/VqsVpcw+ThHmYcwiB1pbOxEbzJr7"
crossorigin="anonymous"></script>
https://www.iso.org/standard/83626.html
C++ 23 居然还没走到出版阶段
关于 C++ Concepts 两个我觉得很重要的用法/定义但是 cppreference 中(似乎)没有提到的地方
source: C++ 20 Final Draft (N4860)
https://martin.ankerl.com/2022/08/27/hashmap-bench-01/
https://github.com/martinus/unordered_dense/blob/main/include/ankerl/unordered_dense.h
真的好快,爱了!
(<= 8 bytes 的 key, std::unordered_map 开了 O2 比 java.util.HashMap 还慢,我真的受不了了)
我除了调库我还能干点啥😢
速报:
GitHub 挂了,一挂一大片
View Status
收到了 Google ”查找我的设备“网络的推送
前情提要:https://www.ithome.com/0/760/665.htm
https://blog.google/products/android/android-find-my-device/
https://answers.microsoft.com/en-us/windowsclient/forum/all/windows-11-taskbar-icons-disappear-after-switching/0855b949-5ac9-4698-bf71-a1c78f08600d
Windows 这个 taskbar icon 消失的问题我真的有点 PTSD 了,离开了不到一年最终还是回到了 Explorer Patcher 的怀抱。。。
Forwarded from BennyThink's Blog (Benny小可爱)
提高警惕,供应链攻击就在你我身边:可能的 logrus 供应链攻击

用Go的话一般会用 logrus 记录日志,那么

import (
log "github.com/siruspen/logrus"
)

func foo() {
log.Warningf("bar")
}



你看出来问题了吗?这里引入的并

不是官方的 logrus


我真的看了好几秒才知道哪个是真的,哪个是假的

github.com/siruspen/logrus
github.com/sirupsen/logrus

来源: https://v2ex.com/t/1072079