SunBK201 最近的时间轴更新
SunBK201's repos on GitHub
HTML · 26 人关注
cli-guidelines-zh
这是一个开源指南,可以帮助您编写出更好的命令行程序,采用经典的 UNIX 哲学并对其进行改进,以适应现代生产环境的需要。
Shell · 3 人关注
OpenWrt-R4S-glibc
This repo is used to cross compile OpenWrt for NanoPi-R4S. The official default is to use musl-libc. However, the difference is that the standard C library we use is glibc, instead of musl-libc.
C · 3 人关注
TinxyR
TinxyR is a reverse proxy server help you forward http traffic from local to remote.
C · 2 人关注
csapp
csapp labs
C++ · 2 人关注
Data-Structure-lib
C · 2 人关注
Demrpc
This is a very simple toy RPC demo.
2 人关注
Dir8urp
An Open-source Path Burp Tool.
2 人关注
linux-c-learning-all-in-one
Linux-C-Learning-All-In-One
Shell · 2 人关注
MySCR
Some self-use scripts for common automation tasks.
2 人关注
Quantumult-X-Conf
This repo is a my personal config repo for Quantumult-X.
2 人关注
Spoon-Knife
This repo is for demonstration purposes only.
JavaScript · 1 人关注
ESP8266-HomeKit-Widget
Make a widget with Scriptable for ESP8266 HomeKit Sensor
Go · 1 人关注
nexttrace-enhanced
Visual route tracking tool
C · 1 人关注
openwrt
This repository is a mirror of https://git.openwrt.org/openwrt/openwrt.git It is for reference only and is not active for check-ins or for reporting issues. We will continue to accept Pull Requests here. They will be merged via staging trees then into openwrt.git. All issues should be reported at: https://bugs.openwrt.org
0 人关注
Actions-immortalWrt-UA2F
使用 GitHub Actions 云编译 带上ipid ua2f的固件
Shell · 0 人关注
Actions-OpenWrt
Actions-OpenWrt
HTML · 0 人关注
Blog
0 人关注
chinese-independent-blogs
中文独立博客列表
0 人关注
CLDIFF
0 人关注
cli-guidelines
A guide to help you write better command-line programs, taking traditional UNIX principles and updating them for the modern day.
Java · 0 人关注
diffTest
0 人关注
hit-counter
:rocket: Easy way to know how many visitors are viewing your Github, Website, Notion. :tada:
0 人关注
MyProfiles
JavaScript · 0 人关注
nobelium
A static blog build on top of Notion and NextJS, deployed on Vercel.
Jupyter Notebook · 0 人关注
PathSentinel
PathSentinel is an application firewall that focuses on HTTP path protection. It uses deep neural network to provide web application security.
0 人关注
Profiles
🌐Dial-up Internet access
JavaScript · 0 人关注
RSSHub
🍰 Everything is RSSible
0 人关注
SunBK201
hi guys !
0 人关注
the-swift-programming-language-in-chinese
中文版 Apple 官方 Swift 教程《The Swift Programming Language》
SunBK201

SunBK201

🏢  127.0.0.1
V2EX 第 544456 号会员,加入于 2021-05-04 22:30:44 +08:00
今日活跃度排名 9743
2 G 53 S 63 B
SunBK201 最近回复了
30 天前
回复了 SunBK201 创建的主题 问与答 Mac 上支持 4K 60FPS 录制的采集卡
@weak 请问具体是什么型号呢?
318 天前
回复了 inhzus 创建的主题 程序员 左耳朵耗子于周六晚突发心梗去世
R.I.P.
2022-09-17 10:07:33 +08:00
回复了 bigxianyu 创建的主题 问与答 怎样定制 youtube 的首页,只保留一个搜索栏功能 ?
Userscript
ltrace
strace
"同一时间,调用 rand()" 可能是 srand() 的精度不够高,可以提升至纳秒级别:
struct timespec seed;
clock_gettime(CLOCK_REALTIME, &seed);
srand(seed.tv_sec + seed.tv_nsec);
randnum = rand();
2022-09-11 20:16:54 +08:00
回复了 river010 创建的主题 Apple 在国内用原生邮件客户端收发各种邮件属实让人抓狂
@terencehan @Love4Taylor @luckykong
iCloud Mail 在国内的 imap 服务器应该是存在某些 Bug ,所以我们可以绕过国内云上贵州的服务器直接使用 Apple 美国的服务器,操作方法是:将 p*-imap.mail.icloud.com.cn 映射到 imap.mail.icloud.com ,p*-smtp.mail.icloud.com.cn 映射到 smtp.mail.icloud.com
2022-09-03 10:52:51 +08:00
回复了 lujiangwen 创建的主题 MacBook Pro 2017 MBP Wi-Fi 6 兼容性疑问
40Mhz 太窄了,换成 80Mhz 。
2022-08-28 12:30:26 +08:00
回复了 52coder 创建的主题 程序员 被初中生 C 语言考住了,尴了个尬
@hello2090 可能是因为这个:

int s[5]={0};
00EA17BE mov dword ptr [ebp-18h],0
00EA17C5 xor eax,eax
00EA17C7 mov dword ptr [ebp-14h],eax
00EA17CA mov dword ptr [ebp-10h],eax
00EA17CD mov dword ptr [ebp-0Ch],eax
00EA17D0 mov dword ptr [ebp-8],eax
2022-08-15 20:01:45 +08:00
回复了 kerrspace 创建的主题 程序员 萌新求教一下大佬们 C++教材
如果语法没有什么大问题,那接下来读再多的教材提升也不大,你接下来应该要多读开源项目的源码,C/C++项目各种数据结构( struct or class )相互嵌套是很正常的,你需要多读花时间适应,可以起步不要读太复杂的项目,先从简单的著名开源项目开始,主要是学习其设计思想、工程构建的思想,这点是最难的,需要花时间。可以读下这本教材: http://aosabook.org/en/index.html
2022-08-15 02:25:31 +08:00
回复了 gps32251070 创建的主题 程序员 关于编程语言内存对齐的疑问
简单来说,因为访存地址是”对齐”的( CPU 访存时会以 offset 的形式给出地址,并不是 Byte 的形式),一次访存能整读整个 offset 行, 这样一次读一个 offset 的做法可以节省 CPU 访存地址总线,当然要以非对齐的形式读也是可以实现的,可以通过增加 CPU 的地址总线实现, 不过过多的引脚会增加 CPU 的复杂度。
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3001 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 15ms · UTC 14:49 · PVG 22:49 · LAX 07:49 · JFK 10:49
Developed with CodeLauncher
♥ Do have faith in what you're doing.