win vscode中搭建c/c++环境

vscode目前是宇宙第一编辑器

April 19, 2022

gcc&gdb使用

gdb -tui 可真是秀到我了

April 10, 2022

HTML入门笔记(暂鸽中)

HTML 课程:mozilla HTML文档剖析(anotomy) <!DOCTYPE html><!--最短有效的文档声明--> <html> <head><!--容器container,不会外显,内容包括你想在搜索结果中出现的关键字和页面描述,CSS样式,字符集声明等--> <meta charset="utf-8"><!--metadata(元数据)表示无法由其他 HTML 元相关元素(如 <base>、<link>、<script>、<style>或<title>)表示的元数据。字符集属性将文档的字符集设置为 UTF-8--> <title>标题</title><!--出现在标签tab页、或作为书签bookmarked的标题--> </head> <body> <!--展示在页面的所有内容:文图、视频、图像、游戏、可播放的音轨等--> <p>段落</p> </body> </html> 主要语言 primary language 全局设置 <html lang="en-US"> 局部设置 <p>Japanese example: <span lang="ja">ご飯が熱い。</span>.</p> 标准来自: ISO 639-1 更多查看: Language tags in HTML and XML. <head> 里有啥 <title> 标题 <title>My test page</title> <title>用于搜索结果、标签页描述和默认书签名 <meta> 元数据 字符编码 <meta charset="utf-8"> 作者和描述 <meta name="specifies the type of meta element it is; what type of information it contains....

March 23, 2022

HTML英文笔记(暂鸽中)

The web coures is mozilla. HTML anotomy <!DOCTYPE html><!--the shortest string of characters that counts as a valid doctype.--> <html> <head><!--container This includes keywords and a page description that would appear in search results, CSS to style content, character set declarations, and more.--> <meta charset="utf-8"><!--<meta charset="utf-8">: The <meta> element. This element represents metadata that cannot be represented by other HTML meta-related elements, like <base>, <link>, <script>, <style> or <title>. --> <title>My test page</title><!...

March 23, 2022