上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 34 下一页
摘要: C语言中宏展开的手册 https://gcc.gnu.org/onlinedocs/cpp/Macros.html#Macros 阅读全文
posted @ 2022-07-21 12:49 yinhuachen 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 阅读《别像弱智一样提问》笔记 你真的准备好了吗?(NOTE:该图基本已经总结了提问的套路,以后就按这张图来吧)(NOTE:这些图貌似因为某些众所周知的原因,需要一些特殊手段才能看见) 感谢群友 for you 提供 避免 xy-problem 参考地址: http://xyproblem.info/ 阅读全文
posted @ 2022-07-13 19:18 yinhuachen 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 下次要报告bug时请先参考以下链接 https://www.chiark.greenend.org.uk/~sgtatham/bugs-cn.html 阅读全文
posted @ 2022-07-13 19:09 yinhuachen 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 一种推荐的提问方式如下: 我在xxx的时候遇到了xxx的错误. 这个错误可以通过以下步骤重现: (描述具体的现象) 1. 我的系统版本是xxx, 相关的工具版本是xxx 2. 我做了xxx (必要的时候贴个图) 3. 然后xxx (必要的时候贴个图) ... 为了排查这个错误, 我进行了以下尝试: 阅读全文
posted @ 2022-07-13 15:21 yinhuachen 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 1. 查看v2rayN是否开启代理,不开启代理时,虚拟机无法通过宿主机的代理访问网络 阅读全文
posted @ 2022-07-02 10:48 yinhuachen 阅读(32) 评论(0) 推荐(0) 编辑
摘要: https://alvinalexander.com/scala/mill-build-tool/step-1-hello-world/ 阅读全文
posted @ 2022-04-23 17:40 yinhuachen 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 1. 第一个模块 1 // Chisel Code: Declare a new module definition 2 class Passthrough extends Module { 3 val io = IO(new Bundle { 4 val in = Input(UInt(4.W)) 阅读全文
posted @ 2022-04-22 12:29 yinhuachen 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 安装sbt的方法 https://blog.csdn.net/I_LYF7/article/details/121526201 一、scala代码基本语法和概念 1. var : 声明变量 val : 声明常量 var numberOfKittens = 6 // Int 类型val kittens 阅读全文
posted @ 2022-04-22 12:21 yinhuachen 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 1. 在命令前面加@:不打印命令本身,只打印命令的output 2. $^: 所有的依赖文件 $@: 目标文件 $<: 第一个依赖文件 3. $(abspath _names) 该函数主要用于将_names中的各路径转换成绝对路径,并将转换后的结果返回。 4. find [dir_name] exp 阅读全文
posted @ 2022-04-19 15:20 yinhuachen 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 1 class Solution { 2 public: 3 4 /* 5 * 利用DFA解决leetcode 10.正则表达式 问题 6 * 7 * 步骤: 8 * 1. 将正则字符串视为后序遍历表达式,利用栈和运算符优先级转换为 9 * 中序遍历表达式,即逆波兰表达式。 10 * 2. 使用中序 阅读全文
posted @ 2022-04-19 09:01 yinhuachen 阅读(97) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 34 下一页