leaflet有个绘图插件Leaflet.draw,但是我不想要它的控件,只想用它的绘制功能,控件我自己提供,当时不知道如何使用,就自己写了个绘制点线面圆和椭圆的工具,代码如下: /// <reference path="define.js" /> /// <reference path="icon ...
分类:
其他好文 时间:
2020-08-01 12:37:40
阅读次数:
90
由于工作需求,有些电脑小问题远程就可以解决的,可能解决问题只需要1分钟,去用户现场的时间需要10分钟,不能白白的浪费宝贵的时间,Time is Money!所以就编写了一个dos批处理程序来开启VNC远程服务,只需将这个文件包用局域网聊天工具发送给客户,用户执行下这个目录中的批处理程序VNC远程服务 ...
分类:
其他好文 时间:
2020-07-29 15:37:31
阅读次数:
115
Oracle-APEX组件失效问题 1. 问题现象 在Oracle11.2.0.4版本中发现APEX组件失效 set lines 168 pages 99 col comp_name for a32 select comp_name, version, status, schema from dba ...
分类:
数据库 时间:
2020-07-27 15:42:28
阅读次数:
93
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6756 CSDN食用链接:https://blog.csdn.net/qq_43906000/article/details/107590312 Problem Description Given an ...
分类:
其他好文 时间:
2020-07-26 15:58:23
阅读次数:
139
gitlab服务器搭建--腾讯云: [root@VM_0_5_centos ~]#rz [root@VM_0_5_centos ~]#yum install gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm [root@VM_0_5_centos ~]#vi /etc/git ...
分类:
其他好文 时间:
2020-07-23 15:57:58
阅读次数:
102
#python去重脚本 # -*- coding:utf-8 -*- #! python2 import shutil a=0 readDir = "old.txt" #old writeDir = "new.txt" #new lines_seen = set() outfile = open(w ...
分类:
其他好文 时间:
2020-07-07 19:52:23
阅读次数:
94
wc用来统计一个文件的字数 行数 字节数 格式:wc [optation] 文件名 -c --byte 只显示字节数 -l --lines 只显示行数 -w --words 只显示字数 -m --chars 只显示字符数(注意字符数和字节数是不一定相等的) 默认显示:行数 空格分割后的字符串数 字节 ...
分类:
其他好文 时间:
2020-07-05 00:59:40
阅读次数:
97
pip install openpyxl 写文件 from openpyxl import Workbook wb = Workbook() # grab the active worksheet ws = wb.active # or # ws = wb.create_sheet("Sheet1" ...
分类:
其他好文 时间:
2020-07-03 01:07:20
阅读次数:
87
'''文件读取'''# python通过内置open()方法打开文件,若文件存在,则打开并进行读取操作,# 否则创建文件,相关参数有w, w+, a, a+if "hello.txt" is True: # 文件打开时,指定编码方式 file = open("hell.txt",'r',encodi ...
分类:
编程语言 时间:
2020-07-01 09:38:08
阅读次数:
95
import java.io.BufferedReader; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStreamReader; import java.nio.file.File ...
分类:
编程语言 时间:
2020-07-01 09:15:20
阅读次数:
77