今天遇到的问题:(这里只是个例子) 解决方法: npm clean cache --force 删了node_modules 和 package-lock ,然后npm install 如果再不行,看看这个modulle所需要的npm啊什么鬼的版本是否符合你电脑的版本。 不符合就升级。 这里推荐一个 ...
分类:
其他好文 时间:
2019-08-10 17:01:15
阅读次数:
321
密码学 模运算和经典密码学 a = r mod m a = q m + r 1. 余数不唯一 12 = 3 mod 9 12 = 21 mod 9 12 = 6 mod 9 {...3,12,21,30...} 2. 上面的组合就是等价类,比如模数9还存在另外8个等价类。 {...0,10,19.. ...
分类:
其他好文 时间:
2019-07-31 11:02:42
阅读次数:
102
192.168.1.30 做服务器时间 192.168.1.40 同步30 192.168.1.50 同步30 step1.在30机器上修改ntp.conf 添加: restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap 说明:根据自己的该啊 ...
分类:
系统相关 时间:
2019-07-28 14:01:17
阅读次数:
367
MySQL的安装和基本管理 一、MySQL介绍 MySQL是一个关系型数据库管理系统,由瑞典MySQL AB 公司开发,目前属于 Oracle 旗下公司。MySQL 最流行的关系型数据库管理系统,在 WEB 应用方面MySQL是最好的 RDBMS (Relational Database Manag ...
分类:
数据库 时间:
2019-07-27 09:55:39
阅读次数:
135
1. 小米文档及SDK下载 2.业务场景 3. 推送demo在实际项目中应用 3.1 判断设备表消息,调对应的(ios,android)方法 3.2 不同系统对应的推送demo 3.3 拼接要推送的消息 3.4 在项目的其他接口中调用推送方法 更多推送姿势,有待在更多的业务场景中解锁!!! ...
分类:
移动开发 时间:
2019-07-23 00:27:54
阅读次数:
348
一、什么是AngularJS ? 1、AngularJS是一组用来开发web页面的框架、模板以及数据绑定和丰富UI的组件; 2、AngularJS提供了一系列健壮的功能,以及将代码隔离成模块的方法; 3、AngularJS于2009年发布第一个版本,由Google进行维护,压缩版94k。 二、Ang ...
分类:
Web程序 时间:
2019-07-16 12:32:24
阅读次数:
122
Android 8.0 在frida中使用 -f 参数报错, Error message: Failed to spawn: unable to access process with pid 413 due to system restrictions; try `sudo sysctl kern ...
分类:
数据库 时间:
2019-07-14 19:48:54
阅读次数:
290
#include<pthread.h>linux 多线程编程: pthread_t 线程名 pthread_create(pthread * thread, const pthread_attr_t *attr,void *(*start_routine) (void *), void *arg); ...
分类:
编程语言 时间:
2019-07-12 21:22:10
阅读次数:
153
Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or ...
分类:
其他好文 时间:
2019-07-06 13:39:29
阅读次数:
114
启动数据库并把它置于open模式,直给拥有restricted session权限的用户赋予访问权。 Alter system disable restricted session; 另外,启动时,oracle会首先搜索$ORACLE_HOME/dbs/spfile$ORACLE_SID.ora,如 ...
分类:
数据库 时间:
2019-07-01 10:56:56
阅读次数:
155