Cannot find current proxy: Set 'exposeProxy' property on Advised to 'true' to make it available, and ensure that AopContext.currentProxy() is invoked ...
分类:
其他好文 时间:
2020-11-18 12:32:47
阅读次数:
7
Cesium 的各种定位方法汇总,只列出项目中经常使用的,如果不够灵活,可直接调用Cesium官方API,也很方便。
Cesium的定位从效果上包含两种:直接定位、飞行定位。在方法封装上,本狗姑且将直接定位分类为zoomTo系列,飞行定位分类flyTo。
定位的对象上包括:坐标点、矩形范围、en... ...
分类:
其他好文 时间:
2020-11-16 14:05:32
阅读次数:
52
dt.Columns.Add("EffectiveDate", typeof(DateTime)); DateTime? effectivedate=null; if (lastRow["Effective_x0020_Date"] != DBNull.Value) { effectivedate ...
分类:
数据库 时间:
2020-11-12 13:57:50
阅读次数:
12
使用vim auto_backup_mysql.sh 在里面输入 #auto backup mysql db #by authors dxw 2017 #dufine backup path BAK_DIR=/data/backup/`date +%Y%m%d` MYSQLDB=syuee MYSQ ...
分类:
数据库 时间:
2020-11-06 02:20:23
阅读次数:
28
zabbix推荐使用nginx服务器,性能较高。为了满足安全访问,现在需要配置https,主要是对nginx的ssl模块进行配置,还要生成zabbix-server对应的证书文件之前已经安装过zabbix5.0,选择的配置环境如下:详细的安装方法见官方文档:https://www.zabbix.com/download?zabbix=5.0&os_distribution=centos&a
分类:
Web程序 时间:
2020-11-01 21:41:34
阅读次数:
33
1、编写脚本,支持让用户自主选择,使用mysqldump还是xtraback全量备份。 #!/bin/bash. /etc/init.d/functionsusername=rootpassname=123456PS3="Please input a number[1|2]: "mysqldumpd ...
分类:
其他好文 时间:
2020-10-29 10:32:04
阅读次数:
26
json JSON(JavaScript Object Notation,JS对象标记)是一种轻重量级的数据交换。它是基于ECMAScript(w3c制定的js规范)的 一个子集,采用完全独立于编程语言的文本格式来存储和表示数据。简洁和清晰的层次结构使得JSON成为理想的数据交换语言。 易于人阅读和 ...
分类:
Web程序 时间:
2020-10-29 09:44:28
阅读次数:
31
简介 类似c++map code /* * @Author: your name * @Date: 2020-10-27 21:15:06 * @LastEditTime: 2020-10-27 21:19:36 * @LastEditors: Please set LastEditors * @D ...
分类:
编程语言 时间:
2020-10-29 09:22:51
阅读次数:
21
算是入门pwn的第一道题吧 先拖进ida查看 F5查看伪代码: int __cdecl main(int argc, const char **argv, const char **envp) { char s; // [rsp+1h] [rbp-Fh] puts("please input"); ...
分类:
其他好文 时间:
2020-10-24 10:22:33
阅读次数:
21
SPA单页面应用已经遍地开花,熟知的三大框架,Angular、Vue和React,其中Angular与React均可集成至ASP.NET Core,且提供了相关了中间件。但是Vue没有: As far as I’m aware, we don’t have plans to introduce Vu ...