search
HomeDatabaseMysql Tutorial 写出一篇好博文需要用到的工具

写出一篇好博文需要用到的工具 不经不觉写了140多篇随笔了,刚开始的时候,不会用什么工具,顶多用一下QQ截图写几个字,画几个箭头 后来慢慢的在别人的博文中看到他们的博文非常漂亮,图表,动态图象,截图非常精美 还有排版,用的CSS ,javascript控制文章的

写出一篇好博文需要用到的工具

不经不觉写了140多篇随笔了,刚开始的时候,不会用什么工具,顶多用一下QQ截图写几个字,,画几个箭头

后来慢慢的在别人的博文中看到他们的博文非常漂亮,图表,动态图象,截图非常精美

还有排版,用的CSS ,javascript控制文章的排版非常好

虽然我对CSS ,javascript,html非常不熟,只是读大学的时候用过,老师讲过,现在基本上忘记了,因为本人不是前端开发人员

既然在排版上不行,但我可以在其他方面搭救,例如截图,图表,用一些录像来讲解

 

我用的工具主要有以下几个,我会用GIF 屏幕录像工具来演示这些工具是怎麽用的

GIF 屏幕录像工具

用这个软件录像的时候需要先选择区域,你可以选择全屏或者特定区域

他会在屏幕上出现绿色的框框,你用鼠标拖动他们就可以了,拖到您认为合适的区域就可以开始录像了

然后按F2快捷键来开始录像,软件会弹出一个对话框来让您选择是否启用抖动算法,我一般选择不启用

录制完毕之后,按F3快捷键就会弹出“保存录像图片”对话框让你保存录像文件

 

输入文件名,点击保存就可以了

GIF 屏幕录像工具就介绍到这里

下载地址:

%E5%B1%8F%E5%B9%95%E5%BD%95%E5%83%8F%E5%B7%A5%E5%85%B72013-2-13.rar

 

PPT

 

引用到这个图片的文章地址:SQLSERVER中的引用计数器 执行计划 set statistics io getnext

 

WORD

 

 

引用到这个图片的文章地址:SQLSERVER的表格存储组织结构

 

snagit截图软件

破解版下载地址:

我将snagit截图快捷键设置为F6,截图的时候只需要按F6就可以了非常方便

 

引用到这个图片的文章地址:SQLSERVER用无中生有的思想来替代游标

使用特别的注释

手机拍照

引用到这个图片的文章地址:

聚集索引表插入数据和删除数据的方式是怎样的

SQLSERVER聚集索引与非聚集索引的再次研究(上)

SQLSERVER聚集索引与非聚集索引的再次研究(下)

 

 

总结

可能其他人还会用visio等等其他工具,不过上面这几个工具对我来说暂时够用了

而且word、ppt还可以继续深入研究,里面非常多的图形可以使用的,而且样式也很多

snagit截图软件也是,图形也很多

 

各位看官觉得文章对您有用的话,希望给个推荐吧o(∩_∩)o

 

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
MySQL String Types: Storage, Performance, and Best PracticesMySQL String Types: Storage, Performance, and Best PracticesMay 10, 2025 am 12:02 AM

MySQLstringtypesimpactstorageandperformanceasfollows:1)CHARisfixed-length,alwaysusingthesamestoragespace,whichcanbefasterbutlessspace-efficient.2)VARCHARisvariable-length,morespace-efficientbutpotentiallyslower.3)TEXTisforlargetext,storedoutsiderows,

Understanding MySQL String Types: VARCHAR, TEXT, CHAR, and MoreUnderstanding MySQL String Types: VARCHAR, TEXT, CHAR, and MoreMay 10, 2025 am 12:02 AM

MySQLstringtypesincludeVARCHAR,TEXT,CHAR,ENUM,andSET.1)VARCHARisversatileforvariable-lengthstringsuptoaspecifiedlimit.2)TEXTisidealforlargetextstoragewithoutadefinedlength.3)CHARisfixed-length,suitableforconsistentdatalikecodes.4)ENUMenforcesdatainte

What are the String Data Types in MySQL?What are the String Data Types in MySQL?May 10, 2025 am 12:01 AM

MySQLoffersvariousstringdatatypes:1)CHARforfixed-lengthstrings,2)VARCHARforvariable-lengthtext,3)BINARYandVARBINARYforbinarydata,4)BLOBandTEXTforlargedata,and5)ENUMandSETforcontrolledinput.Eachtypehasspecificusesandperformancecharacteristics,sochoose

How to Grant Permissions to New MySQL UsersHow to Grant Permissions to New MySQL UsersMay 09, 2025 am 12:16 AM

TograntpermissionstonewMySQLusers,followthesesteps:1)AccessMySQLasauserwithsufficientprivileges,2)CreateanewuserwiththeCREATEUSERcommand,3)UsetheGRANTcommandtospecifypermissionslikeSELECT,INSERT,UPDATE,orALLPRIVILEGESonspecificdatabasesortables,and4)

How to Add Users in MySQL: A Step-by-Step GuideHow to Add Users in MySQL: A Step-by-Step GuideMay 09, 2025 am 12:14 AM

ToaddusersinMySQLeffectivelyandsecurely,followthesesteps:1)UsetheCREATEUSERstatementtoaddanewuser,specifyingthehostandastrongpassword.2)GrantnecessaryprivilegesusingtheGRANTstatement,adheringtotheprincipleofleastprivilege.3)Implementsecuritymeasuresl

MySQL: Adding a new user with complex permissionsMySQL: Adding a new user with complex permissionsMay 09, 2025 am 12:09 AM

ToaddanewuserwithcomplexpermissionsinMySQL,followthesesteps:1)CreatetheuserwithCREATEUSER'newuser'@'localhost'IDENTIFIEDBY'password';.2)Grantreadaccesstoalltablesin'mydatabase'withGRANTSELECTONmydatabase.TO'newuser'@'localhost';.3)Grantwriteaccessto'

MySQL: String Data Types and CollationsMySQL: String Data Types and CollationsMay 09, 2025 am 12:08 AM

The string data types in MySQL include CHAR, VARCHAR, BINARY, VARBINARY, BLOB, and TEXT. The collations determine the comparison and sorting of strings. 1.CHAR is suitable for fixed-length strings, VARCHAR is suitable for variable-length strings. 2.BINARY and VARBINARY are used for binary data, and BLOB and TEXT are used for large object data. 3. Sorting rules such as utf8mb4_unicode_ci ignores upper and lower case and is suitable for user names; utf8mb4_bin is case sensitive and is suitable for fields that require precise comparison.

MySQL: What length should I use for VARCHARs?MySQL: What length should I use for VARCHARs?May 09, 2025 am 12:06 AM

The best MySQLVARCHAR column length selection should be based on data analysis, consider future growth, evaluate performance impacts, and character set requirements. 1) Analyze the data to determine typical lengths; 2) Reserve future expansion space; 3) Pay attention to the impact of large lengths on performance; 4) Consider the impact of character sets on storage. Through these steps, the efficiency and scalability of the database can be optimized.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function