首页 > 2019年07月19日 > 全部分享
Squares of a Sorted Array
Given an array of integers A sorted in non-decreasing order, return an array of the squares of each number, also in sorted non-decreasing order. Examp ...
分类:其他   时间:2019-07-19 14:10:01    收藏:0  评论:0  赞:0  阅读:55
error: src refspec test does not match any.
我在本地创建了新分支test并提交到github上 错误信息如下: 错误的原因是远程并没有test分支,我们需要将在本地创建分支的信息推送到github上 可以到github看一下 ...
分类:其他   时间:2019-07-19 14:09:37    收藏:0  评论:0  赞:0  阅读:507
Sqlserver 分页
String sql = "select * from(SELECT [id] ,[name],[price] ,[addDate],[state],[picture],ROW_NUMBER() over(order by id desc) row FROM [Product]) t where t... ...
分类:数据库技术   时间:2019-07-19 14:09:16    收藏:0  评论:0  赞:0  阅读:75
二维线段树模板,建树,维护最大最小值
``` include using namespace std; const int N=805; define son(x) (rt 4 2+x) define ll long long struct node{ int mn; int mx; void reset(){ mx=INT_MIN; ...
分类:其他   时间:2019-07-19 14:08:48    收藏:0  评论:0  赞:0  阅读:76
Prometheus+Grafana搭建监控系统
基本概念 Prometheus 时间序列化数据库,我的理解就是将数据打上标签,以时间维度存储。后面有机会在深入研究。 Grafana Prometheus中存储的数据,通过Grafana很优美的展现出来。 好就讲这么多,多了我也不懂。。 软件安装 Prometheus 官网下载(https://pr ...
分类:其他   时间:2019-07-19 14:08:22    收藏:0  评论:0  赞:0  阅读:75
轻松玩转httpget和httppost
废话不多少说,直接上代码 ...
分类:Web开发   时间:2019-07-19 14:07:31    收藏:0  评论:0  赞:0  阅读:76
slack Interface operation
1. create a new app https://api.slack.com/apps?new_app=1 2. Add a Bot User You can bundle a bot user with your app to interact with users in a more co ...
分类:其他   时间:2019-07-19 14:07:02    收藏:0  评论:0  赞:0  阅读:95
rsync同步本地和服务器之间的文件
同步本地文件到服务器 rsync -zvrtopg --progress --delete test -e 'ssh -p 6665' yueyao@172.16.0.99:/media/sdb/user/yueyao/ 同步服务器到本地 rsync -zvrtopg --progress -e '... ...
分类:其他   时间:2019-07-19 14:05:49    收藏:0  评论:0  赞:0  阅读:207
AutoHotkey纯命令获取Chrome等浏览器的当前网址
网上大部分都是模拟手工操作(激活地址栏并复制)的方式获取,从论坛里找到了纯命令的方式,并已转成AutoHotkey v2版本。 是通过浏览器的class类来获取的,相信用AutoHotkey的人对此不陌生 来源:https://www.autohotkey.com/boards/viewtopic. ...
分类:其他   时间:2019-07-19 14:05:09    收藏:0  评论:0  赞:0  阅读:286
Expertly Guided 700-651 Exam Cram with a High Passing Rate
Tired of doing the same job? Get your hands on 700-651 exam It is the nature of the human being that he/she will get tired of doing the same task over ...
分类:其他   时间:2019-07-19 14:04:46    收藏:0  评论:0  赞:0  阅读:64
vue+webpack4 脚手架搭建
参考文章: 1: 从零开始配置 webpack4 + vue2.x (一) 2: 从零开始的 webpack4 + vue2.x ...
分类:Web开发   时间:2019-07-19 14:04:24    收藏:0  评论:0  赞:0  阅读:282
试除法判定质数
#include #include using namespace std; int n; bool prim(int x){ if(x>n; for(int i=0,a;i>a; if(prim(a))cout<<"Yes"<<endl; else cout<<"No"<<endl; } retu... ...
分类:其他   时间:2019-07-19 14:04:03    收藏:0  评论:0  赞:0  阅读:112
Latest 500-240 Exam Cram - Best Way To Pass The 500 240 Questions
Tired of doing the same job? Get your hands on 500-240 exam It is the nature of the human being that he/she will get tired of doing the same task over ...
分类:其他   时间:2019-07-19 14:03:31    收藏:0  评论:0  赞:0  阅读:65
与众不同的数
与众不同的数 Problem Description Hnfnu希望从一个巨大的数字群(大概有100,000,000个数据)中找一个数字,这个数字群有个特点:除了Hnfnu要找的数字之外,其余的数字都出现了偶数次。 Input n个整数 Output 输出那个与众不同的数 Sample Input ...
分类:其他   时间:2019-07-19 14:03:12    收藏:0  评论:0  赞:0  阅读:88
梦想MxWeb3D协同设计平台 2019.07.19更新
SDK开发包下载地址: http://www.mxcad.net:2080/Mx3DServer1.0(20190719)TryVersion.exe 在线演示网址: http://www.mxdraw.com:3000/ 1. 添加三维中的点、向量、单位向量的接口 2. 添加轴、坐标系的接口 3. ...
分类:Web开发   时间:2019-07-19 14:02:47    收藏:0  评论:0  赞:0  阅读:111
编译器的优化
编译器使用的优化技巧 a、1. 变量优化 b、加法的优化 变量+变量 = lea reg32,[变量+变量] 变量+变量 = add eax,xx 变量+常量 = add 变量+常量 变量+1 = inc 变量 b、减法的优化 变量-变量 = lea reg32,[变量-变量] 变量-变量 = su ...
分类:其他   时间:2019-07-19 14:02:13    收藏:0  评论:0  赞:0  阅读:112
Mac(PC)连接虚拟机MySQL失败
解决: 首先登陆虚拟机的MySQL 可以看到,默认的mysql只允许本机访问 将host设置为通配符模式%,Host设置为"%"便可远程访问了,然后执行flush privileges使更改的配置立即生效 ...
分类:数据库技术   时间:2019-07-19 14:01:16    收藏:0  评论:0  赞:0  阅读:154
jenkins"控制台输出"乱码问题解决
今天在搭建Jenkins环境时,安装完Tomcat、Jenkins、创建项目进行构建后,在查看控制台输出时,结果中文全部显示乱码。然后呢,就是漫长的解决历程,最终呢,解决乱码问题的时间终于超过了环境搭建的时间,为了后来的同学少因为“某搜索引擎”的等等问题,现在整理下我的解决历程。 (1)进入到Tom ...
分类:其他   时间:2019-07-19 14:00:54    收藏:0  评论:0  赞:0  阅读:69
MySQL关闭缓慢
Pre环境有个MySQL不能进行数据写入操作,关闭实例也非常慢,最后error报错。 最后发现是磁盘不能进行写操作。 touch /data/testtouch: cannot touch ‘/data/test’: Read-only file system 对/data分区进行重新挂载操作后能正 ...
分类:数据库技术   时间:2019-07-19 14:00:32    收藏:0  评论:0  赞:0  阅读:86
常用的语句
//判断一个长的字符串中是否包含某一个短的字符串 if (str1.indexOf(str2) != -1) { return true;//存在 }else { return false; } /** * 消息模板关键字替换 * @param template 消息内容 * @param map ... ...
分类:其他   时间:2019-07-19 14:00:07    收藏:0  评论:0  赞:0  阅读:61
891条   上一页 1 ... 22 23 24 25 26 ... 45 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!