Eagle233-Blog
dev-mdsuper
Categories | Tags
[Machine Learning 2021] 回归(Regression)
Categories Machine Learning 2021 | Tags
回归(Regression)机器学习:寻找函数机器学习可以概括为“寻找函数” ($f$): 语音识别:输入声音,输出文本(如 $f(\text{声音}) = \text{“How a...
[Troubleshooting] Windows 上配置 ssh-agent 实现 Git 和 ssh 免密码
Categories Troubleshooting | Tags
# 启动 agent(如果未启动) Start-Service ssh-agent # 设置开机自动启动 Set-Service -Name ssh-agent -StartupType Au...
[Troubleshooting] Git alias 记录
Categories Troubleshooting | Tags
设置自动 commit 时间戳 alias git config --global alias.cmt '!git add -A && git commit -m "$(da...
[Troubleshooting] 将 WSL2 的 SSH 端口映射到公网
Categories Troubleshooting | Tags
目标 WSL2 内 SSH 服务监听端口 22 Windows 本地端口 1145 转发到 WSL2 的 22 公网访问 Windows 公网 IP 的 1145 端口即可 SSH 登录 WSL...
[Troubleshooting] 在 WSL2 中实现代理
Categories Troubleshooting | Tags
网上一大堆花里胡哨的方式,其实只要在 Clash 中打开 TUN模式 就可以了…
[Troubleshooting] 在本地配置 CS50x 环境
Categories Troubleshooting | Tags
CS50x 提供的在线VS Code其实无需配环境即可使用。为了熟悉命令的使用,我选择在本地部署环境。但是,直接在 Windows 下安装submit50 style50 check50等工具会...
[Language] Golang 核心概念总结
Categories Language | Tags
基础 标识符可见性在Go语言中,标识符(变量、函数、类型等)的首字母大写表示它可以被其他包访问和使用(已导出),而首字母小写则表示它只能在当前包内部使用(未导出)。(private/p...
[CSAPP] Lab4 - Cache Lab Report
Categories CSAPP | Tags
csim.c实验思想:采用封装的思想,提高函数的复用性,有助于理解总体代码。 前置函数:定义在cachelab.h: /* * printSummary - This function pr...
[Algorithms] 二叉树的层序遍历
Categories Algorithms BinaryTree | Tags
来源:代码随想录 二叉树的层序遍历LeetCode 102. 二叉树的层序遍历 /** * Definition for a binary tree node. * struct Tre...
© 2025 Eagle233
Powered By Hexo & Theme mdsuper