Markdown学习 标题 三级标题 字体 hello world hello world hello world hello world 引用 引用一段话 分割线 图片 超链接 点击跳转到百度 列表 a b c 1 2 3 表格 姓名性别生日 张三 男 20001.1 代码 public ...
分类:
其他好文 时间:
2021-01-05 11:38:49
阅读次数:
0
#include <string.h> #include <stdarg.h> #include <stdio.h> #include <limits.h> #include <stdio.h> #define CONFIG_DIR "/etc/usbs/" int main() { FILE *f ...
分类:
其他好文 时间:
2021-01-05 11:25:23
阅读次数:
0
体验一下Flutter。 import 'package:flutter/material.dart'; void main() => runApp(new HelloWorldApp()); class HelloWorldApp extends StatelessWidget { @overri ...
分类:
其他好文 时间:
2021-01-05 11:16:44
阅读次数:
0
Android逆向分析Hello World,使用 改之理,通过简单学习 smail 和 改之理的基本使用,可以完成逆向实战的Hello World。本次逆向的项目无壳无.SO,分析起来较为容易,适合入门。下面我们来讲述如何实现。 首先我们需要准备一个 Apk文件,此Apk需要是未加壳的。 此Apk ...
分类:
移动开发 时间:
2021-01-05 10:55:36
阅读次数:
0
1: any 和 unknown类型的区别 any可以避开类型检查, 比如 let notSure: any = 'XXXXX'; notSure.Hello(); unknown在使用时必须进行类型断言: let x: unknown = 'xxxxxx'; console.log((x as s ...
分类:
其他好文 时间:
2021-01-05 10:50:47
阅读次数:
0
MarkDown学习 标题 #号+空格+文字,1~6个#号代表1~6级标题 字体 HELLO WORLD 粗体:两边都+两个* HELLO WORLD 斜体:两边都+一个* HELLO WORLD 斜体加粗:两边都+三个* HELLO WORLD 横线:两边都+两个~~ 引用 好好学习天天向上 大于 ...
分类:
其他好文 时间:
2021-01-05 10:43:09
阅读次数:
0
shm.h 1 #ifndef __SHM_H 2 #define __SHM_H 3 4 #include <stdio.h> 5 6 #include <sys/ipc.h> 7 #include <sys/shm.h> 8 9 #define SHM_KEY ((key_t)0x2020123 ...
分类:
其他好文 时间:
2021-01-05 10:37:14
阅读次数:
0
Linux中的脚本文件一般都是以.sh结尾的。sh 是Unix 标准默认的shell脚本语言。创建一个hello.sh 文件,输入以下脚本。 #!/bin/bash # remark echo hello 使用 chmod +x hello.sh 添加脚本权限。 使用以下任一方式执行脚本,建议使用第 ...
分类:
系统相关 时间:
2021-01-04 11:08:40
阅读次数:
0
概述 Overview 什么是Spring Boot? Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run". 这是来自S ...
分类:
编程语言 时间:
2021-01-04 10:29:55
阅读次数:
0
如果一个命令需要长时间在服务器上运行,那么很多时候会用到nohup命令,这时即便远程登录ssh中断了与服务器的联系,那么在服务器上运行的命令也不会因此而被迫停止。通常情况下,nohup与&连用,&的意思是将该命令放在后台执行。如下:nohupexample.sh&将exmaple.sh通过&放在服务器后台运行,nohup确保了即便当前ssh远程连接中断,exampl
分类:
系统相关 时间:
2021-01-02 11:44:21
阅读次数:
0