Shivers
关于
友链
标签
分类
meson
yml文件 yml文件和json文件类似,是一种配置文件。但由于其语法更加简洁明了,因此也常出没在github中(.travis.yml) 语法 规则: 大小写敏感 用缩进表示层级关系 #表示注释 数据结构 对象 # conf.yml animal: pets hash: { ...
2022-04-07
工具
opengrok搭建代码阅读平台
install install java11 =====> yum search java-11 yum install java-11xxx yum install java-11-jrexxx =====> dowload opengrop.tar.gz ====> ...
2022-04-07
工具
OS原理
内存管理 编译(源程序模块)—》链接(目标模块)—》装入(装入模块) 1.链接和装入的策略,分为3种。在磁盘上,在内存中,在cpu执行时。 2.一个程序的运行,需要经过几道程序的运行。(编译器—链接器—装入内存(装入器)—内存分配(内存管理器)) 编译器:将程序员写的源程序编译为目标模块 ...
2022-04-07
cs基础
powershell
是什么 类似与linux的bash 常见问题 Q: powershell如何alias? A: 修改用户的配置文件 Set-ExecutionPolicy RemoteSigned C:\Users\Lost\Documents\WindowsPowerShell\Microsoft.Power ...
2022-04-07
工具
shell
语法 判断是否为数字 if [ "$1" -gt 0 ] 2>/dev/null;then $port = $1 else echo "Usage: $0 <port number>" exit -1 fi ...
2022-04-07
工具
c++并发编程
thread Atomic operations These components are provided for fine-grained atomic operations allowing for lockless concurrent programming. Each atomic ...
2022-04-07
c++
学习资料
服务器开发必读书籍 一、算法基础系列 数据结构基础(C语言版)》朱仲涛 译 《剑指Offer》 《编程之美》 《编程珠玑》 《CareerCup-Top 150 Questions 4th》 《[算法导论].(美国)Cormen.扫描版》 二、C/C++面试题基础系列 《程序员面试宝典》 《 ...
2022-04-07
web前端
基础技术 html css [sass] [postcss] [less] js 视频资料: [js速通] [es6 new feature 速通] ts速通 文档资料: ECMA-262 - Ecma International (ecma-international.org) Java ...
2022-02-12
web
机器学习(ML)与tensorflow
keywords: 回归算法、损失函数、优化器、简单线性回归、多元线性回归、逻辑回归 感知机、神经网络、常用激活函数、单层感知机、反向传播、多层感知机 卷积神经网络(cnn, convnet)、迁移学习、循环神经网络(rnn) TensorFlow 张量(tensor):常量、变量、占位符 运 ...
2021-08-01
AI
tmux配置与使用
concept session: a session could include mutil-windows windows: just the window panle: a window contains muti-panle install sudo apt install tmux -y ...
2021-07-30
工具
<
1
…
7
8
9
10
>