ysc3839 最近的时间轴更新
ysc3839's repos on GitHub
C++ · 1279 人关注
FontMod
Simple hook tool to change Win32 program font.
C++ · 647 人关注
AudioPlaybackConnector
Bluetooth audio playback (A2DP Sink) connector for Windows 10 2004+
C++ · 138 人关注
ClashXW
This project aims to implement a program with same function as ClashX, running in Windows.
Python · 57 人关注
bilibili-api
Python · 40 人关注
FakeSSHServer
A fake ssh server written in Python. Uses Paramiko.
C++ · 21 人关注
AppXLauncher
JavaScript · 6 人关注
disqusjs-proxy
Disqus API Proxy in Node.js
C++ · 4 人关注
FileMod
JavaScript · 3 人关注
ga-pageview
1 人关注
Amazing-Windows-Apps
📗Introduce you amazing Windows apps🕶READ ONLINE 👉
JavaScript · 1 人关注
flarum-ext-usercard-uid
0 人关注
AutomataTranslator
JavaScript · 0 人关注
bootstrap
The most popular HTML, CSS, and JavaScript framework for developing responsive, mobile first projects on the web.
0 人关注
c4core
C++ utilities
0 人关注
clash
A rule-based tunnel in Go.
C++ · 0 人关注
ConEmu
Customizable Windows terminal with tabs, splits, quake-style and more
C++ · 0 人关注
CWTDGen
C++ · 0 人关注
DevToggle
JavaScript · 0 人关注
DisqusJS
:speech_balloon: Alternative Disqus - Render comments with Disqus API
0 人关注
disqusjs-proxy-example
Using Now as Disqus API Proxy
Lua · 0 人关注
docker-dst-server
Don't Starve Together dedicated server in Docker!
0 人关注
fast_float
Fast and exact implementation of the C++ from_chars functions for float and double types: 4x faster than strtod
0 人关注
genshin-schedule
🕑 Genshin farming scheduler
0 人关注
genshin-wish-export
Easily export the Genshin Impact wish record.
Pascal · 0 人关注
GitInfo
Git and SemVer Info from MSBuild, C# and VB
C++ · 0 人关注
GTA4.CHS
Grand Theft Auto IV: The Complete Edition汉化补丁
0 人关注
GTAIV
CSS · 0 人关注
hexo-theme-material
Material Design theme for hexo.
JavaScript · 0 人关注
hexo-theme-suka
🎨Modern, powerful and simple theme for Hexo.
ysc3839

ysc3839

V2EX 第 27712 号会员,加入于 2012-10-07 03:13:44 +08:00
今日活跃度排名 1442
根据 ysc3839 的设置,主题列表只有在你登录之后才可查看
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
ysc3839 最近回复了
41 分钟前
回复了 iisboy 创建的主题 小米 为什么我的 TG 始终收不到提醒通知?
开启了自启动吗?
42 分钟前
回复了 vencent 创建的主题 Mac mini mac mini 粉屏故障
没遇到,建议重装系统,还是不行的话那去 Apple Store 现场试试能否复现吧
5 小时 46 分钟前
回复了 newtonMiku 创建的主题 NGINX 关于反代的 location 中 uri 有 https 的问题
@newtonMiku 你发的配置文件里不是有用到 sub_filter 吗?这个就是字符串替换。
10 小时 44 分钟前
回复了 newtonMiku 创建的主题 NGINX 关于反代的 location 中 uri 有 https 的问题
不建议用字符串替换的方案,实际情况很复杂,总会出现一些问题的。
内网设备无代理访问的话,可以考虑用 sniproxy 。
@lujiaxing Bandizip 的广告只会在未打开压缩包的界面显示,直接打开压缩包的情况下是不会显示的。
7-Zip 许多细节不如 Bandizip ,比如没有 Bandizip 的智能解压,界面也比较难看。
我觉得没必要了解微任务,至少我自己是没了解过,目前也没影响我用 js 写代码。async function 方面,知道实际实现是类似在 await 处拆成多个代码块就差不多了。
例如以下代码:
async function fn() {
await a;
const result = await b;
console.log(result);
}
可以实现成:
function fn() {
a.then(() => {
b.then(result => {
console.log(result);
});
});
}
能看作类似回调函数的语法糖。
不过 C++ 的 coroutine 是拆成 switch case 块,而不是拆成多个回调函数,这个了解就行。
1 天前
回复了 SteveRogers 创建的主题 深圳 明天下午准备去 hk 办卡,有一起的么
@jiangzhizhou 只是举个例子,一般邀请开户啥的都会给个有效期很短的羊毛,想薅羊毛的话,不太建议在没把钱汇出去的情况下开户,除非条件限制(比如只去一次香港)。
我去中银香港开的时候也没要求地址证明,具体情况未知。
汇丰的话,地址证明是要英文地址的,所以你自己带内地的地址证明过去其实是没用的,申请开立投资户口时,汇丰也会寄一封信给你作为地址证明。所以按理来说自己没法也不需要准备地址证明,我去开也没要求提供。
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2986 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 15ms · UTC 13:18 · PVG 21:18 · LAX 06:18 · JFK 09:18
Developed with CodeLauncher
♥ Do have faith in what you're doing.