主页

Linux&termux使用相关

Introduction ​ 本篇笔记用于记录Linux相关指令及相关应用… Termux与Android互相访问文件方式 termux访问android termux-setup-storage anroid访问termux ​ 使用mt管理器,左侧边栏,添加本地存储 SSH连接Termux ssh ip -p 8022 #termux使用的是8022端口 注:vmware虚拟机网络使用桥接模式后,在同一局域网下,也能与termux进行ssh连接

阅读更多

Java基础学习

前言 ​ 这篇博客用于Java基础学习,每次更新笔记时需记录当前更新时间.. 笔记区 数据类型拓展 整数拓展 //整数拓展(进制) int i= 10;//10进制 int i2 = 010;//8进制 int i3 = 0x10;//16进制 int i4 = 0b10;//2进制 System.out.println(i+" "+i2+" "+i3+" "+i4);//10 8 16 2 浮点数拓展 float特点:有限 离散 舍入误差 大约 接近但不等于* ...

阅读更多

Git&Github相关指令

修改git用户 git config --global user.email "MonkiFantasy@outlook.com" git config --global user.name "MonkiFantasy" 个人向查看git log方式 git log --all --graph --decorate --oneline git checkout 用法 根据哈希码查看详细信息 git checkout cc30c4b 切换分支 git checkout master github 解决push相关问题(玄学) git config --global --unset http.proxy git config --global ...

阅读更多

Missing-Semester

Missing-Semester 视频+笔记 第1讲 - 课程概览与 shell cd - #与上一路径切换 which 程序名 #查看运行的程序路径 < > #输入输出重定向 pa a| pb b #管道左边程序输出作为右边程序输入 tail -n5 文件名 #文件尾5行 head -n5 文件名 #文件头5行 grep 字符串 文件名 #查找文件中所有字符串 第2讲 - Shell 工具和脚本 a=b #变量定义 echo $a #结果为b !! #代表上一条命令 $? #查看错误代码 \#! shebang #当前脚本运行环境 bash脚本中 $0为脚本文件$1-n为脚本参数名 $#为参数数量 $$为进程id(...

阅读更多

Markdown语法学习

标题 #+标题名字(几级标题就用几个#) 字体 Hello world 粗体,文字两边各两个* hello world 斜体,文字两边各一个* Hello world 斜体加粗,文字两边各三个* Hello world 下划线,文字两边各两个~ 上下标 方法1(符号): 下标 :θ~1~ 上标 :θ^2^ 方法2(HTML标签): 下标 :θ<sub>1</sub> 上标 :θ<sup>2</sup> 方法3(公式块): 下标 :θ_1 ,上标 :θ^2 引用 ’>’+’space’ ,摘抄别人文章使用 分割线 使用’—‘or’***‘(如上or下两条分割线所示) 图片 ...

阅读更多

Welcome

If you see this page, that means you have setup your site. enjoy! :ghost: :ghost: :ghost: You may want to config the site or writing a post next. Please feel free to create an issue or send me email if you have any questions.

阅读更多