###查看 Linux 版本 uname -a lsb_release -a cat /etc/lsb_release cat /etc/issue cat /proc/version 不同版本的命令可能不一样 ###查看 CPU 信息 lscpu cat /proc/cpuinfo 会显示出物理核 ...
分类:
系统相关 时间:
2020-10-26 10:39:44
阅读次数:
27
一、使用IntelliJ IDEA直接创建案例工程 1、打开IntelliJ IDEA,【File】-->【New】-->【Project】 2、选择【Java Project】-->【Next】 3、点击【Finish】 4、点击工程 ,新建两个文件夹:apps和libs,目录结构如下: 二、导入 ...
分类:
移动开发 时间:
2020-10-20 16:31:25
阅读次数:
34
SVG:可伸缩的矢量图形 SVG本身是基于 XML 的一种独立的数据格式,用于声明式的 2D 矢量图形。但是,它也可以嵌入到 html 文档中,这是所有主流浏览器都支持的。 让我们考虑一个例子,如何使用 SVG 绘制一个可调整大小的圆: <html style="height: 100%; widt ...
分类:
Web程序 时间:
2020-10-18 17:03:42
阅读次数:
41
查看liunx系统基本信息 lscpu cpu查看 free -h 内存查看 lsblk 硬盘查看 init 3 关闭可视化窗口 init 6 重启 reboot 重启 host name -i 查看 ip ip addr show 查看网卡 uname -r 查看内核 cat /etc/redha ...
分类:
其他好文 时间:
2020-10-18 09:48:30
阅读次数:
24
pipeline{agent{label‘Linux‘}parameters{gitParameterbranch:‘‘,branchFilter:‘.*‘,defaultValue:‘origin/master‘,description:‘代码分支‘,name:‘project‘,quickFilterEnabled:false,selectedValue:‘NONE‘,sortMode:‘NO
分类:
移动开发 时间:
2020-10-18 09:32:24
阅读次数:
36
怎么安装参见CentOS6.9安装Nexus3.19 ,接下来就是如何配置。打开我们安装后的nexus界面,用admin账号登陆,点击Server administration and configuration按钮: 点击Repository 我们可以看到nexus默认给我建好了一些仓库,其中包括 ...
分类:
其他好文 时间:
2020-10-18 09:27:43
阅读次数:
24
1、 直接创建用户 [root@linuxprobe home]# pwd/home [root@linuxprobe home]# ls a.txt linuxprobe software test.sh [root@linuxprobe home]# seq -f liujiaxin%02g 1 ...
分类:
系统相关 时间:
2020-10-14 20:41:33
阅读次数:
38
YouTube - Unity Creating 2D Magic Spells | Prototype Series Unity Open Projects (Launch Trailer) Pixel Perfect Lights and Particles in Unity! (Tutoria ...
分类:
编程语言 时间:
2020-10-08 19:45:39
阅读次数:
45
项目的属性也用了Json,大概是下面这个样子的 <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net5.0</TargetFramework> <RootNamespace>YKCore.PayCredit</R ...
分类:
Web程序 时间:
2020-09-24 21:15:09
阅读次数:
56
近日,因工作需要,将Python解析结构体bytes转换成0和1表示,为了验证结果是否和C++的一致, 需要C++写一个内存数据从低字节到高字节用0和1来表示demo。 #include <iostream> using namespace std; int main() { int a; do { ...
分类:
编程语言 时间:
2020-09-17 23:13:26
阅读次数:
40