腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
腾讯云架构师技术同盟
文章/答案/技术大牛
搜索
搜索
关闭
发布
首页
学习
活动
专区
工具
TVP
腾讯云架构师技术同盟
返回腾讯云官网
szhshp 的第四边境中转站
专栏成员
举报
140
文章
98517
阅读量
25
订阅数
订阅专栏
申请加入专栏
全部文章(140)
编程算法(39)
https(27)
网络安全(26)
javascript(22)
linux(16)
http(15)
node.js(14)
github(14)
html(13)
git(13)
ide(12)
react(11)
sql(11)
api(11)
网站建设(9)
npm(8)
android(7)
windows(7)
java(6)
eslint(6)
redux(6)
typescript(5)
网站(5)
开源(5)
python(4)
bash(4)
ajax(4)
数据库(4)
命令行工具(4)
shell(4)
markdown(4)
rust(4)
c++(3)
css(3)
jquery(3)
json(3)
access(3)
ubuntu(3)
mapreduce(3)
文件存储(3)
yarn(3)
缓存(3)
其他(2)
php(2)
ruby(2)
bootstrap(2)
ecmascript(2)
bash 指令(2)
apt-get(2)
游戏(2)
sql server(2)
面向对象编程(2)
数据分析(2)
腾讯云开发者社区(2)
sdk(2)
excel(2)
c#(1)
go(1)
lua(1)
actionscript(1)
.net(1)
jsp(1)
asp.net(1)
vue.js(1)
xml(1)
打包(1)
搜索引擎(1)
容器镜像服务(1)
spring(1)
访问管理(1)
云数据库 MongoDB(1)
SSL 证书(1)
数据加密服务(1)
腾讯云ide(1)
腾讯git代码托管(工蜂)(1)
腾讯云测试服务(1)
mongodb(1)
图像处理(1)
渲染(1)
sass(1)
webpack(1)
容器(1)
serverless(1)
存储(1)
压力测试(1)
html5(1)
ssh(1)
正则表达式(1)
cdn(1)
tcp/ip(1)
powershell(1)
element ui(1)
flutter(1)
action(1)
add(1)
binary(1)
button(1)
clone(1)
csv(1)
data(1)
datatable(1)
date(1)
debug(1)
dom(1)
exe(1)
export(1)
h2(1)
join(1)
key(1)
list(1)
middleware(1)
mp3(1)
null(1)
report(1)
server(1)
state(1)
string(1)
sum(1)
title(1)
变量(1)
部署(1)
代理(1)
分页(1)
快捷键(1)
搜索文章
搜索
搜索
关闭
《Rust Programming Language》- EX - Cheatsheet
编程算法
Structs Classic Structs struct ColorClassicStruct { red: i32, green: i32, blue: i32, } let green = ColorClassicStruct { red: 0, green: 255, blue: 0, }; assert_eq!(green.red, 0); assert_eq!(green.green, 255); assert_eq!(green.blu
szhshp
2023-03-09
332
0
《Rust Programming Language》- 05 - Packages, Crates And Modules
编程算法
git
c++
A crate is the smallest amount of code that the Rust compiler considers at a time.
szhshp
2023-01-05
272
0
Rust - 04 - Enums and Pattern Matching
编程算法
rust
And you can put data directly to the enum values:
szhshp
2023-01-05
253
0
Rust - 03 - Structs and Methods
rust
Rust doesn’t allow us to mark only certain fields as mutable. You can only mark whole struct as mutable or immutable.
szhshp
2023-01-05
310
0
Rust - 02 - Ownership
rust
编程算法
access
When your code calls a function, the values passed into the function (including, potentially, pointers to data on the heap) and the function’s local variables get pushed onto the stack. When the function is over, those values get popped off the stack.
szhshp
2023-01-05
240
0
Rust - 01 - Getting Started
rust
For same variable name, the former is shadowed by the latter
szhshp
2023-01-05
279
0
两小时 Docker 速成 - Getting Started
命令行工具
npm
容器
容器镜像服务
镜像是一个 UnionFS (联合文件系统): 实际上是一种分层的, 高性能的, 轻量级的文件系统, 它支持对文件系统的修改作为一次提交来一层层叠加
szhshp
2022-11-02
699
0
VSC x VIM - 反正多学几个快捷键没有坏处
编程算法
ide
当年研究过一段时间 VIM, 因为操作不熟练没有用作主力 IDE, 而是单纯在 CLI 里面用于轻度编辑
szhshp
2022-10-31
1.4K
0
VSC x VIM - 反正多学几个快捷键没有坏处
编程算法
ide
如上配置之后可以通过 <space><space>w{char} 快速跳转到包含特定字母的字符的开头
szhshp
2022-10-31
1.3K
0
《The Joy of Javascript》- 1 - Object/Function
linux
javascript
java
面向对象编程
腾讯云开发者社区
早先在 Github 看到人提起这本书, 我简单翻了一下目录, 发现有一些内容还挺有意思, 里面有很多近几年的新方法, 正好补充一些之前开发未涉及的部分.
szhshp
2022-09-21
220
0
《The Joy of Javascript》- 2 - Functor/Monad
javascript
actionscript
实现 FP 需要保证一些函数的输入和输出规范化. 以方便 compose 进行链式调用.
szhshp
2022-09-21
291
0
《The Joy of Javascript》- 3 - ADT(Algebraic Data Type)
spring
linux
最后在方法里面进行判断, 判断放在外部, 最终返回一个 Validation 类型:
szhshp
2022-09-21
383
0
《The Joy of Javascript》- 4 - Meta Programming
api
编程算法
javascript
网络安全
c++
使用相同的值重新定义 symbol 将会得到两个完全不同的示例 Symbol('a') !== Symbol('a')
szhshp
2022-09-21
205
0
《The Joy of Javascript》- 5 - Data
编程算法
javascript
node.js
java
linux
需要注意的是 for await……of 需要一个对象拥有一个 function-valued symbol property Symbol.asyncIterator, 因此可以如此设计一个对象用于 for await……of
szhshp
2022-09-21
680
0
Workbox-Getting Started
缓存
javascript
cdn
然后新建一个文件 service-worker.js , 你们可以写上一个最简单的 registerRoute 方法:
szhshp
2022-09-21
662
0
NextJS x Typescript - Integration & Troubleshooting
api
c++
github
windows
git
GitHub pages is a hosting provider for static pages. You can't host APIs on it. If you really want to host on GitHub pages you'll want to use https://github.com/zeit/next.js#static-html-export and not use API routes.
szhshp
2022-09-21
467
0
NVM Windows Portable Installation
node.js
https
网络安全
github
windows
将 release 的 noinstall version 的链接 copy 上去: https://github.com/coreybutler/nvm-windows/releases/download/1.1.7/nvm-noinstall.zip
szhshp
2022-09-21
472
0
吉祥航空随心飞刷票工具循环查票工具
https
网络安全
javascript
yarn
api
这个就是我花 1h 随手写的小工具, 追求快速达到功能而不会考虑任何的扩展性, 健壮性及专业性
szhshp
2022-09-21
1.1K
1
GraphQL: File Upload & Troubleshooting
https
网络安全
http
javascript
github
Due to different dependencies, this may cause some error, see Troubleshooting below
szhshp
2022-09-21
397
0
Getting Started: Ionic + Capacitor + React + Typescript + Android
android
https
网络安全
typescript
javascript
Click File--Sync Project With Gradle Files
szhshp
2022-09-21
546
0
点击加载更多
社区活动
Python精品学习库
代码在线跑,知识轻松学
立即查看
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
立即体验
技术创作特训营·精选知识专栏
往期视频·干货材料·成员作品 最新动态
立即查看
领券
问题归档
专栏文章
快讯文章归档
关键词归档
开发者手册归档
开发者手册 Section 归档