This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
不论你是用的是什么博客系统,WP也好,Typecho也罢,甚至是静态博客,就像我的博客,绕不开的是两种书写语言,一种称之为富文本,一种叫做Markdown。我的博客就是用Markdown写的。 | |
Markdown有很多好处,也有很多坏处,比如说居中,Markdown本身没有这个功能。再比如说视频,Markdown也不具有插入视频的功能。 | |
值得庆幸的是Markdown支持HTML的标签,在HTML中我们可以用`<video>`标签插入视频,在Markdown中,我们同样可以使用`<video>`标签插入视频,具体格式如下: | |
```HTML | |
<video width="320" height="240" controls> | |
<source src="movie.mp4" type="video/mp4"> | |
</video> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Caesium_boxed是一款图片压缩软件,能够轻易的将Mb级别以上的图片压缩成Kb级别,并且保留原图的清晰度,最大程度不失真。 | |
先来直观的感受一下图片压缩前后的区别 | |
压缩前: | |
![压缩前][1] | |
压缩后: | |
![已压缩][2] | |
同时,贴出压缩前后图片大小: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
转载过来备忘一下,打算下一个系统换LTSB,因为现在的Win 10主流系统很蛋疼,更新出问题太严重了。 | |
这是一个LTSB安装应用商店的应用,看萌咖大佬介绍吧: | |
#### 介绍: | |
> | |
- Windows10 LTSB(长期服务版)是目前唯一可以长期稳定使用的Win10版本. | |
- 没有烦人的小娜,没有一点也不可爱的EDGE,没有没完没了的为增加Bug而推送的更新.也没有乱七八糟的内置应用. | |
- 更不会因为一个新版本的推送而彻底瘫痪. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
平时在使用linux的时候,避免不了要使用GUI界面,服务器本身没有GUI,所以干脆用VNC吧。 | |
搭建环境:Docker环境,镜像: | |
[rastasheep/ubuntu-sshd](https://hub.docker.com/r/rastasheep/ubuntu-sshd/) | |
其中,该镜像的环境是 | |
```c# | |
ubuntu-sshd-910292714-kpnx7 4.4.0-72-generic | |
用户名、密码均为:root |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
实在是不想写这篇文章,但是太多太多小白不知道平时我们在群里说的Office 365和微软官网上卖的Office 365有什么区别,每次搞得我就很尴尬,很多人因为不了解而选择放弃,不愿意尝试……所以还是写一篇文章说一下吧。 | |
在微软官网上,Office 365分为两种,一种是面向个人用户的个人版和家庭版,一种是面向商业/企业/学校/政府的企业版(商业/教育版)。注意,个人版和家庭版目前没有听说过免费使用的,所以就不可能给你发这种账号供你使用。所以我们主要介绍的就是后者。 | |
#### Office 365是什么? | |
Office 365是一种云服务,这种服务包含着以下几个方面: | |
* Office 365在线版 | |
* Office 当前最新桌面版本(目前是Office 2016)(不一定有) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
有好多同学依然喜欢使用WPS,刚刚尝试了一下最新版的2019,感觉界面有所改进,进步也算是很大了。但是激活依然是一个大问题。 | |
激活与不激活最大的区别就是有广告和没广告。但是其实不激活也可以去广告,在配置工具的高级选项里。下面进行详细的图解。 | |
测试WPS 2016和2019通用: | |
打开配置工具的方法有两种: | |
 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
本文来自[如有乐享](https://51.ruyo.net/9976.html),但是本人在Linux上测试后发现其在`nodejs`、`npm`和`now`安装的描述中存在着一些问题。所以部分转载并做了一些补充。 | |
测试环境:Docker镜像:`rastasheep/ubuntu-sshd` | |
1. 首先是更新系统环境: | |
```Ubuntu | |
apt-get upgrade | |
apt-get update | |
apt-get install -y git |
OlderNewer