Skip to content

Commit 8df5507

Browse files
committed
[docs update]图片地址更换
1 parent ea72739 commit 8df5507

File tree

5 files changed

+10
-48
lines changed

5 files changed

+10
-48
lines changed

README.en.md

+7-45
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
1-
## 👏 MAJOR UPDATE!!! Serious!
2-
3-
Read in other languages: [Mandarin](https://github.com/Snailclimb/JavaGuide/blob/main/README.md)
4-
- JavaGuide Read online version(New Version,Recommended👍:https://javaguide.cn/
5-
- JavaGuide Online reading version (old version, some links are no longer accessible): https://snailclimb.gitee.io/javaguide/#/
6-
- [JavaGuide Interview Blitz Edition] PDF Version Download (https://mp.weixin.qq.com/s?__biz=Mzg2OTA0Njk0OA==&mid=100029614&idx=1&sn=62993c5cf10265cb7018db7f1ec67250&chksm=4ea1fb6579d67273499b7243641d4ef372decd08047bfbb6dfb5843ef81c7ccba209086cf345#rd)
7-
8-
<a href="https://t.1yb.co/GXLF"><img src="https://img-blog.csdnimg.cn/2f61f3e2d1f2427da977340919e41616.png" style="margin: 0 auto;width:850px" /></a>
9-
10-
11-
> 1. **Introduction**: For an introduction to the JavaGuide, see: [Some notes on the JavaGuide](https://www.yuque.com/snailclimb/dr6cvl/mr44yt)
12-
> 2. **Contribution Guide** : You are welcome to participate in [the maintenance of JavaGuide](https://github.com/Snailclimb/JavaGuide/issues/1235), it's a very rewarding thing to do.
13-
> 3. **PDF Version** : [JavaGuide Interview Blitz Edition PDF Version](https://mp.weixin.qq.com/s?__biz=Mzg2OTA0Njk0OA==&mid=100029614&idx=1&sn=62993c5cf10265cb7018db7f1ec67250&chksm=4ea1fb6579d67273499b7243641d4ef372decd08047bfbb6dfb5843ef81c7ccba209086cf345#rd)
14-
> 4. **Illustrated Computer Fundamentals** : [Illustrated Computer Fundamentals PDF Download](https://mp.weixin.qq.com/s?__biz=Mzg2OTA0Njk0OA==&mid=100021725&idx=1&sn=2db9664ca25363139a81691043e9fd8f&chksm=4ea19a1679d61300d8990f7e43bfc7f476577a81b712cf0f9c6f6552a8b219bc081efddb5c54#rd)
15-
> 5. **Planet of Knowledge** : Resume guide/Java learning/Interview guide/Interview booklet. You are welcome to join [My Knowledge Planet](https://www.yuque.com/docs/share/8a30ffb5-83f3-40f9-baf9-38de68b906dc)
16-
> 6. **Interview Special Edition** : For those who are preparing for the interview, you can consider the interview special edition: [Java Interview Advanced Guide].(https://www.yuque.com/docs/share/f37fc804-bfe6-4b0d-b373-9c462188fec7) (Very high quality, built specifically for interviews, free for planet users)
17-
> 7. **Reprint Instructions**: All the following articles are my (Guide) original if not stated at the beginning of the text, reproduced at the beginning of the text to indicate the source, if found malicious plagiarism / transport, will use legal weapons to defend their rights. Let's maintain a good technical creation environment together! ⛽️
18-
191
<p style="text-align:center">
202
<a href="https://github.com/Snailclimb/JavaGuide" target="_blank">
213
<img src="https://img-blog.csdnimg.cn/img_convert/1c00413c65d1995993bf2b0daf7b4f03.png#pic_center" width=""/>
@@ -33,13 +15,12 @@ Read in other languages: [Mandarin](https://github.com/Snailclimb/JavaGuide/blob
3315
<tr>
3416
<td style="text-align:center" valign="middle">
3517
<a href="https://sourl.cn/e7ee87">
36-
<img src="./media/sponsor/xingqiu.png" style="margin: 0 auto;width:850px" /></a>
18+
<img src="https://guide-blog-images.oss-cn-shenzhen.aliyuncs.com/xingqiu/xingqiu.png" style="margin: 0 auto;width:850px" /></a>
3719
</td>
3820
</tr>
3921
</tbody>
4022
</table>
4123

42-
4324
## Java
4425

4526
### Basis
@@ -163,31 +144,12 @@ In addition,[GeeksforGeeks]( https://www.geeksforgeeks.org/fundamentals-of-alg
163144

164145
**Important knowledge points:**
165146

166-
1. <div style="text-align:center">
167-
<p>
168-
<a href="https://github.com/Snailclimb/JavaGuide" target="_blank">
169-
<img src="https://img-blog.csdnimg.cn/img_convert/1c00413c65d1995993bf2b0daf7b4f03.png#pic_center" width="" />
170-
</a>
171-
</p>
172-
<p>
173-
<a href="https://javaguide.cn/"><img src="https://img.shields.io/badge/阅读-read-brightgreen.svg" alt="阅读" /></a>
174-
<img src="https://img.shields.io/github/stars/Snailclimb/JavaGuide" alt="stars" />
175-
<img src="https://img.shields.io/github/forks/Snailclimb/JavaGuide" alt="forks" />
176-
<img src="https://img.shields.io/github/issues/Snailclimb/JavaGuide" alt="issues" />
177-
</p>
178-
<p>
179-
<a href="https://www.yuque.com/docs/share/f37fc804-bfe6-4b0d-b373-9c462188fec7">
180-
<img src="../media/sponsor/xingqiu.png" style="margin: 0 auto; width: 850px;" />
181-
</a>
182-
</p>
183-
</div>
184-
185-
2. [Transaction isolation level (graphic detail)](docs/database/mysql/transaction-isolation-level.md)
186-
3. [MySQL's Three Major Logs (binlog, redo log and undo log) Explained](docs/database/mysql/mysql-logs.md)
187-
4. [InnoDB storage engine implementation of MVCC](docs/database/mysql/innodb-implementation-of-mvcc.md)
188-
5. [How does a SQL statement get executed in MySQL?](docs/database/mysql/how-sql-executed-in-mysql.md)
189-
6. [Character set details: Why is it not recommended to use utf8 in MySQL?](docs/database/字符集.md)
190-
7. [A little thought on how to store time in the database](docs/database/mysql/some-thoughts-on-database-storage-time.md)
147+
1. [Transaction isolation level (graphic detail)](docs/database/mysql/transaction-isolation-level.md)
148+
2. [MySQL's Three Major Logs (binlog, redo log and undo log) Explained](docs/database/mysql/mysql-logs.md)
149+
3. [InnoDB storage engine implementation of MVCC](docs/database/mysql/innodb-implementation-of-mvcc.md)
150+
4. [How does a SQL statement get executed in MySQL?](docs/database/mysql/how-sql-executed-in-mysql.md)
151+
5. [Character set details: Why is it not recommended to use utf8 in MySQL?](docs/database/字符集.md)
152+
6. [A little thought on how to store time in the database](docs/database/mysql/some-thoughts-on-database-storage-time.md)
191153

192154
### Redis
193155

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div align="center">
44
<p>
55
<a href="https://www.yuque.com/docs/share/8a30ffb5-83f3-40f9-baf9-38de68b906dc">
6-
<img src="./media/sponsor/xingqiu.png" style="margin: 0 auto; width: 850px;" />
6+
<img src="https://guide-blog-images.oss-cn-shenzhen.aliyuncs.com/xingqiu/xingqiu.png" style="margin: 0 auto; width: 850px;" />
77
</a>
88
</p>
99
<p>

docs/books/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ category: 计算机书籍
55

66
精选优质计算机书籍,希望能够帮助到你。
77

8-
欢迎大家在项目 [issues 区](https://github.com/CodingDocs/awesome-cs/issues) 或者当前页面的评论区推荐自己认可的 Java 开源项目,让我们共同维护一个优质的 Java 开源项目精选集
8+
开源的目的是为了大家能一起完善,如果你觉得内容有任何需要完善/补充的地方,欢迎大家在项目 [issues 区](https://github.com/CodingDocs/awesome-cs/issues) 推荐自己认可的技术书籍,让我们共同维护一个优质的技术书籍精选集
99

1010
- Github 地址:[https://github.com/CodingDocs/awesome-cs](https://github.com/CodingDocs/awesome-cs)
1111
- Gitee 地址:[https://gitee.com/SnailClimb/awesome-cs](https://gitee.com/SnailClimb/awesome-cs)

docs/home.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: JavaGuide(Java学习&&面试指南)
66
<div style="text-align:center">
77
<p>
88
<a href="https://www.yuque.com/docs/share/8a30ffb5-83f3-40f9-baf9-38de68b906dc">
9-
<img src="../media/sponsor/xingqiu.png" style="margin: 0 auto; width: 850px;" />
9+
<img src="https://guide-blog-images.oss-cn-shenzhen.aliyuncs.com/xingqiu/xingqiu.png" style="margin: 0 auto; width: 850px;" />
1010
</a>
1111
</p>
1212
</div>

media/sponsor/xingqiu.png

-26.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)