Refer to: Learn Cpp
直接上代码
三个文件源码如下:
add.h:
1 |
|
Refer to: Learn Cpp
add.h:
1 | #ifndef ADD_H |
迁移首要原因必然是 Wordpress 的普及性更加广,Typecho 的确是很轻量级,是个不错的博客程序。
迁移其实说白了就是数据库的迁移,再简单点就是文章的迁移,包括文章标题、文章作者、文章内容、文章创建时间、文章修改时间等,差不多这几样是最重要的,标签的话我没有迁移,因为我的标签不算多。
CSS 动画指的是 CSS3 的新特性 animation
, @keyframes
和 transition
。
如果发现动画不起作用注意加上浏览器前缀。
Descktop:
Mobile:
1 | SELECT Persons.LastName, Persons.FirstName, Orders.OrderNo FROM Persons, Orders WHERE Persons.Id_P = Orders.Id_P |
等同于
1 | SELECT Persons.LastName, Persons.FirstName, Orders.OrderNo FROM Persons INNER JOIN Orders ON Persons.Id_P = Orders.Id_P ORDER BY Persons.LastName |
在 <meta>
标签中插入 noindex
元标记可以完全阻止 Google 对该页面的索引,也就是该页面不会出现在 Google 的搜索结果中。
相对大部分搜索引擎的做法:
1 | <meta name="robots" content="noindex"> |
只相对 Google 的做法:
1 | <meta name="googlebot" content="noindex"> |
转换渐进式图片:
1 | convert -interlace Plane -quality 90 source.jpg destination.jpg |
画布调整:
1 | convert -resize 50%x50% source.jpg destination.jpg |
格式转换:
1 | convert source.jpg destination.png |
背景透明:
1 | convert -resize 50% -background transparent source.png destination.png |
→更多功能。
参考 DigitalOcean
For Debian/Ubuntu:
1 | sudo apt-get install rsync |
For Redhat/Fedora:
1 | sudo yum install rsync |
参考 DigitalOcean
备份数据库:
1 | mysqldump -u [username] -p --opt [database name] > [database name].sql |
迁移数据库数据到新数据库,你得先创建这个新数据库:
1 | mysql -u [username] -p [new database name] < /path/to/[new database name].sql |
明天还要上课先睡觉,明天再写过程。
之所以把这个标签写出来是因为看到学校那些网页还到处都在应用,我只能说,学校那些老顽固真是误人子弟。
MDN 已经不推荐使用
Non-standard This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.