npm创建自己的包 一、一个简单的创建 1、创建npm账号 官网:https://www.npmjs.com/ 创建账号入口:https://www.npmjs.com/signup 注意:需要进入邮箱验证 2、创建目录及初始化 $ mkdir zqh-test $ cd zqh-test zqh- ...
分类:
其他好文 时间:
2020-07-30 14:32:00
阅读次数:
65
近期项目中需要 关联 几张表再把字段转出来,在这里记录以下,我感觉网上写的都不太规范和清晰。 @Entity@SqlResultSetMapping( name="TestMapping", entities = { @EntityResult( entityClass = com.xxx.xx.d ...
分类:
编程语言 时间:
2020-07-30 01:43:19
阅读次数:
84
题目链接 线段树,求区间最大值减去区间最小值的值。 #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> using namespace std; const int N = ...
分类:
其他好文 时间:
2020-07-30 01:40:15
阅读次数:
67
如果一个应用程序想要使用系统的方法,那么就需要给这个应用程序签名,相当于授权。 一.用于设置不同的签名方式build/target/product/security目录中有四组默认签名供Android.mk在编译APK使用:1.testkey:普通APK,默认情况下使用。2.platform:该AP ...
分类:
其他好文 时间:
2020-07-29 21:59:53
阅读次数:
101
工具:VMware® Workstation 15 Pro(15.5.6 build-16341506),kali-linux-2020.2-installer-amd64.iso vm15下载链接:https://www.vmware.com/content/vmware/vmware-publi ...
分类:
其他好文 时间:
2020-07-29 19:27:41
阅读次数:
88
在根目录新建 Static.bundle 文件夹 打开android/app/build.gradle文件,新增 android { ... sourceSets { main { assets.srcDirs = ['src/main/assets', '../../Static.bundle'] ...
分类:
移动开发 时间:
2020-07-29 17:37:44
阅读次数:
93
更新包索引 apt update 安装开发工具包 apt install build-essential 查看gcc是否安装成功 gcc --version 编写hello world vim hello.c #include <stdio.h> int main() { printf("Hello ...
分类:
系统相关 时间:
2020-07-29 15:07:04
阅读次数:
61
自动化配置脚本oracle12c.sh,如下: #!/bin/sh ##gcc-4.9 ##debian-8.11,buildin glibc version is 2.19 ###################################### cat <<eof>>/etc/profile ...
分类:
数据库 时间:
2020-07-29 15:00:40
阅读次数:
75
题面 #include <bits/stdc++.h> using namespace std; template<typename temp> void read(temp &x){ x = 0; temp f = 1; char ch; while(!isdigit(ch = getchar() ...
分类:
其他好文 时间:
2020-07-28 22:35:46
阅读次数:
61
一段很有趣的代码如下: HttpUrl url = new HttpUrl.Builder() .scheme("http") .host(host) .port(port) .encodedPath(uri) .build(); 这种链式调用,可以使我们的代码看起来更加简洁易懂,这段代码最终是通过 ...
分类:
其他好文 时间:
2020-07-28 22:27:10
阅读次数:
69