Skip to content

Commit

Permalink
feat:更新笔记
Browse files Browse the repository at this point in the history
  • Loading branch information
moxi624 committed Dec 8, 2021
1 parent db707e1 commit 0151391
Show file tree
Hide file tree
Showing 47 changed files with 392 additions and 307 deletions.
7 changes: 6 additions & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@

[**陌溪**](https://gitee.com/moxi159753/LearningNotes/raw/master/doc/images/qq/添加陌溪.png) 是一个从三本院校一路摸滚翻爬上来的程序员。目前就职于字节跳动的Data广告部门,是字节跳动全线产品的商业变现研发团队。这两天创建了一个 **微信公众号【[陌溪教你学编程](https://gitee.com/moxi159753/LearningNotes/raw/master/doc/images/qq/公众号2.jpg)**,未来将会在公众号上持续性的输出很多原创小知识以及学习资源,欢迎各位小伙伴关注我,和我一起共同学习,同时我也希望各位小伙伴能够给 **LearningNotes** 项目多多 **Star** 支持,您的**点赞**就是我维护的动力!


🔗友情链接:我的好友阿秀前段时间收集了超过1000本计算机经典书籍的PDF,包括C++、Java、Python、操作系统、计算机网络、数据库等方面的书籍都有收录,基本上你能听过的都在里面了。这是他的仓库 [CS-Books](https://github.com/forthespada/CS-Books),大家可以去看看,以后看书不花钱不是梦了哈哈,欢迎Star⭐

## 投蘑菇一票

码云开源项目评选开始啦,小伙伴们快动动手指,给陌溪的开源博客项目(搜索:MoguBlog )投上自己宝贵的一票~,陌溪在这里感谢大家啦。投票地址:https://www.oschina.net/project/top_cn_2021?fr=zx1205

![给蘑菇投票](./doc/images/qq/mogu.png)

## 项目介绍

个人学习笔记,主要来源于B站上视频的学习,同时会记录平时一些学习和项目中遇到的问题,同步更新在 [蘑菇博客](http://www.moguit.cn),如果对我的博客网站感兴趣的话,欢迎关注我的 [蘑菇博客源码](https://gitee.com/moxi159753/mogu_blog_v2),如果笔记对您有帮助的话,欢迎star支持,谢谢~
Expand Down
Binary file added doc/images/qq/mogu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@


它是一款基于文字界面的邮件客户端,非常小巧,但功能强大,可以用它来读写,回复保存和删除你的邮件,能在linux 命令行模式下收发邮件附件。

> 官网:http://www.mutt.org
安装邮件发送命令

```bash
yum -y install sendmail
# 需要安装sendmail并开启防火墙的25端口,如果你需要收邮件110端口也要开
yum -y install mutt

# 寻找 Muttrc 所在目录
find / -name Muttrc

# 拷贝到root下
cp /etc/Muttrc /root/.muttrc
```



发送邮件

```bash
mutt [email protected] -s "mogu_blog备份脚本" -a mogu_blog_business.sql
```





```bash
# 安装git
yum install git

# 创建一个README文件
echo "# MoguSQLBak" >> README.md

# 将全部信息添加到暂存区
git add *

#关联远程仓库
git remote add origin https://[email protected]/moxi624/MoguSQLBak.git

# 设置用户信息
git config --global user.email "[email protected]"
git config --global user.name "moxi624"

# 提交
git commit -m "first commit"

# push到远程层库
git push -u origin main
```

此时,即可看到我们的备份脚本已经成功被成功上传上来了

![image-20211201092929686](images/image-20211201092929686.png)





https://my.oschina.net/u/4005872/blog/3035997
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
大家好,我是**陌溪**

去年通过校招**提前批**成功上岸字节跳动,现在将我在准备面试的学习笔记都开源出来了,在 **Gitee** 上已经有 **4.3K****Star**。并且在未来也会不断的持续更新。

**Gitee** 开源地址:https://gitee.com/moxi159753/LearningNotes (建议 **Star** 收藏)

![image-20211125223705599](images/image-20211125223705599.png)

陌溪出身三本院校,也深知只有通过自己的不断努力才有机会上岸。在为了准备大厂校招面试,我准备了一年的时间,把学习的知识点都整理成了这份**学习笔记**,现在我把它制作成了 **PDF****免费分享给学弟和学妹们!**

![image-20211125224340581](images/image-20211125224340581.png)

有很多小伙伴顺利进入了 **BAT** 大厂,来找陌溪报喜。同时,在蘑菇群里还有**两位学弟**进入字节,一起做同事。

- [双非本科,折戟成沙铁未销,九面字节终上岸!](https://mp.weixin.qq.com/s/mE8AjQdQP8cgsWPVUbLBHA)
- [恭喜这位学弟!民办二本九面字节终上岸](https://mp.weixin.qq.com/s/mE8AjQdQP8cgsWPVUbLBHA)

笔记主要涵盖:**Java****MySQL****Redis****Spring****SpringCloud**,计算机网络,操作系统,数据结构,以及整理的**大厂面试题**。同时会记录平时一些学习和项目中遇到的问题。

**下载方式**:我把自己的原创笔记放在了自己的公众号上,大家可以扫码回复:**PDF** ,即可获得下载链接!

![img](https://gitee.com/moxi159753/LearningNotes/raw/master/doc/images/qq/%E8%8E%B7%E5%8F%96PDF.jpg)

希望我的笔记能够帮助每一位想要进入大厂的小伙伴们,同时也希望各位学弟和学妹们,不要因为自己的出生不好就放弃了自己。

**愿一份付出都有收获,也希望每一个人的努力都能被看到!**

最后,在简单的展示一下,**PDF** 笔记里有哪些内容吧

**JVM学习**

![image-20211125230242826](images/image-20211125230242826.png)

**大厂面试突击**

![image-20211125230106518](images/image-20211125230106518.png)

**大厂面试宝典**

![image-20211125230325346](images/image-20211125230325346.png)

**微服务学习**

![image-20211125230424222](images/image-20211125230424222.png)

还有更多的笔记内容,就不列举出来了

**下载方式**:我把自己的原创笔记放在了自己的公众号上,大家可以扫码回复:**PDF** ,即可获得下载链接!

![img](https://gitee.com/moxi159753/LearningNotes/raw/master/doc/images/qq/%E8%8E%B7%E5%8F%96PDF.jpg)

最后,希望在各位学弟学妹们,能够收获让自己满意的 **Offer**
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 60 additions & 0 deletions 公众号/59_蘑菇社区更新记录/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
大家好,我是**陌溪**

首先,非常感谢群里小伙伴 [@钉钉](https://gitee.com/it00021hot/)[@遇见](https://gitee.com/zjq_6688),参与到蘑菇社区的填砖加瓦的工作中。

本次主要讲一下,目前社区版更新的一些功能

## 2021.12.03更新

- 网站支持 **emoji** 表情
- 解决门户创建博客时,出现无法审核的问题
- 门户页面增加全局异常处理,防止跳转到 **500** 错误页面、后端异常信息处理,当 **code** 不为 **500** 时提示**message** 信息
- 首页查询:新增通过审核的标识过滤
- 管理员下架稿件时,发送用户邮件通知
- 审核之后发送邮件,支持批量审核时合并发送邮件
- 门户个人中心,文章管理:新增发布/下架按钮、用户编辑博客信息提示完善
- 编辑博客新增是否允许发布选项,作为后续自动发布条件(类似草稿箱功能)
- 操作更新信息后 刷新加载当前表格数据

- 后台管理修改用户文章时将作者替换成了当前操作人
- 前端用户修改文章时更新审核标识为未审核(修改后重审、审核不通过后修审)
- fix:解决管理员侧,更新Github和Gitee为空值的情况
- feat:门户用户支持切换编辑器;默认为markdown编辑器
- feat:修复获取问答时存在的问题;解决个人中心页无法查看保存按钮的问题;
- 抽离后台管理博客的上下架逻辑,作为单独权限功能
- 完善文章审批功能

## 2021.11.29更新

- fix:解决门户用户投稿无审核直接发布文章的BUG
- feat:完成管理员权限附身功能。管理员可以选择某个用户进行附身,管理员后台进行文章发布的时候,将以该用户的名义进行投稿发布。
- feat:增加个人中心换肤功能
- feat:新增签到功能;新增积分玩法;通过发布文章、问答、评论和签到获取积分。(以后可以探索积分的更多用处)
- feat:文章投稿增加标识,普通用户需要审核,管理员和博主可以直接通过审核;
- fix:解决问答跳转出现的问题

## 2021.11.2更新

- fix:解决评论存在的问题,增加问答邮件通知
- fix:解决博客上传错误,不关闭loading的情况
- feat:回复层级支持自定义限制,目前设置为6层,防止出现楼中楼的情况。
- feat:重构评论组件、将评论列表和评论框进行组合,方便后面的集成。
- feat:重构归档页面:将分类、标签和归档页面进行汇总
- feat:门户投稿编辑,增加误操作提示功能,防止用户写文的过程中退出
- feat:图片选择器直接直接上传图片;搜索结果调整为15个;解决文章阅读数显示存在的问题
- fix:创建用户时候,增加同步锁,防止出现并发创建多个用户的问题
- css:优化首页布局,适配移动端
- feat: 用户端文章投稿和提问答,增加次数限制。默认为一天5次,可以在后台系统参数配置。
- refactor:重构敏感词功能,将敏感词存储在Redis中

## 2021.9.18更新

- feat:优化博客编辑功能,调整问答高亮
- feat: 更新搜索模式,支持SQL搜索,ES搜索,Solr搜索一键切换
- feat: 文章详情增加专题侧边栏,可支持手动开启和关闭
- feat:新增公众号加载校验的功能,增加操作日志
- fix:修复CDN加载缓慢的问题
- feat: 完善首页个人中心加载更多的功能
- feat:门户用户图片上传增加限制
- fix: 解决通知详情页出现的问题

Loading

0 comments on commit 0151391

Please sign in to comment.