Markdown常用语法操作 标题 一个#+空格+内容:表示一级标题 两个#+空格+内容:表示二级标题 三个#+空格+内容:表示三级标题 四个#+空格+内容:表示四级标题 最多到达六级标题 字体 粗体:两个"*"号 Hello World! 斜体:一个"*”号 Hello World! 粗体和斜体: ...
分类:
其他好文 时间:
2021-01-01 12:08:20
阅读次数:
0
class HelloChina{ public static viod main(String[] args){ System.out.println("hello,world"); } } ...
分类:
编程语言 时间:
2021-01-01 12:02:08
阅读次数:
0
异步的概念 ajax 编程 异步实现的几种方式 回调函数 promise 生成器 async await 异步编程的概念 有异步编程,就有同步编程 console.log("Hello"); console.log("World"); for(let i=0;i<5;i++){ console.lo ...
分类:
Web程序 时间:
2020-12-31 12:10:41
阅读次数:
0
Markdown学习 使用typora来学习Markdown语法 标题 三级标题 四级标题 字体 Hello,World! Hello,World! Hello,World! Hello,World! Hello,World! 引用 这是一段引用的文字,做法:>加空格 分割线 图片 ![本地图片]( ...
分类:
其他好文 时间:
2020-12-31 11:43:25
阅读次数:
0
在大概了解鸿蒙系统后和学习完编译环境搭建,于是我做了一个小小的实验,利用Hi3861GPIO操作完成点灯和按键实验 先看最简单得LED灯闪烁操作 源码结构如下: Hello world.c文件内容: #include <stdio.h> #include <unistd.h> #include "o ...
分类:
其他好文 时间:
2020-12-30 11:13:42
阅读次数:
0
Node.js创建第一个应用 参考自https://www.runoob.com/nodejs/nodejs-http-server.html 一个Node.js应用的基本组成 引入required模块(必要的模块):使用require指令来载入相关的Node.js模块 创建服务器:用来监听客户端的 ...
分类:
Web程序 时间:
2020-12-30 11:12:56
阅读次数:
0
PUT test/_doc/1 { "content":"Hello World" } GET test/_analyze { "explain": true, "analyzer": "standard", "text": "Hello World" } POST test/_search { " ...
分类:
其他好文 时间:
2020-12-29 11:59:23
阅读次数:
0
<template> <section> <h1>hello world~</h1> </section> </template> <script> export default { data() { return { timer: '', value: 0 }; }, methods: { get ...
分类:
其他好文 时间:
2020-12-29 11:36:07
阅读次数:
0
curl is a a command line tool that allows to transfer data across the network. It supports lots of protocols out of the box, including HTTP, HTTPS, FT ...
分类:
Web程序 时间:
2020-12-29 11:24:49
阅读次数:
0
一段代码:<div id="elem">hello <b>world</b></div> 使用场景:作用于(读取或者替换)一段HTML代码。 div.outerHTML='<p>a new element</p>'; div.innerHTML='<p>a new element</p>'; inn ...
分类:
Web程序 时间:
2020-12-28 11:46:19
阅读次数:
0