使用JSOUP写了个一小工具来扫描给定的字符集来查看尚未注册的域名。 1.支持设定字符集,默认26的字母。 2.支持设置前缀和后缀 3.支持设置输出结果文件 4.支持设置线程数 5.支持设置扫描频率和等待时间 6.支持设置域。(.com, .net .....) 对于一次26字母的全扫描,如果为4个字母的域名,即近(26×26×26×26=456976)默认需要大约40几分钟扫描完。后期看看能否有改 ...
阅读全文https://spring.io/tools Spring Tools 4 is the next generation of Spring tooling for your favorite coding environment. Largely rebuilt from scratch, it provides world-class support for developing Spring-based enterprise applications, whether you ...
阅读全文JAVA8的java.util.function包 https://www.cnblogs.com/linzhanfly/p/9686941.html java.util.function.Function的用法 https://www.jianshu.com/p/3c27dfd647f1 https://blog.csdn.net/huo065000/article/details/78964382 java8双冒号用法: https://www.jians ...
阅读全文dd --help 常用dd来创建大文件,如dd if=/dev/zero of=/mybigfile bs=128M count=0 seek=24 参数: 1. if=文件名:输入文件名,缺省为标准输入。即指定源文件。< if=input file > 2. of=文件名:输出文件名,缺省为标准输出。即指定目的文件。< of=output file > 3. ibs=bytes:一次读入bytes个字节,即指定一个块大小为by ...
阅读全文//生成补丁 svn diff > patchname.patch //打补丁 patch -p0 < /patches/20170309.patch //查找打补丁过程中的失败文件 find . -name '*.rej' //取消打补丁 patch -p0 -RE < /patches/20170309.patch 进一步阅读: http://stackoverflow.com/ques ...
阅读全文mac下搭建LAMP环境: http://jingyan.baidu.com/article/0aa22375b553a488cc0d64b5.html 本文是在参考上面链接的基础上做的纪录。 mysql installation in Mac 安装mysql的流程主要还是参考mysql官网上的文档,主要分三步:安装前准备,安装,安装后的设定。 DMG installer: mysql 5.6.34 安装完后需要重置mysql user& ...
阅读全文Introducing Web Services Oracle Web Service可以分为两类: Weblogic(Java EE) Web Service (see "Securing and Administering WebLogic Web Services") Oracle Infrastucture Web Service —SOA, ADF, and WebCenter services (see &qu ...
阅读全文最近C盘被挤满了log或临时文件,一点恐怖。有谁可以帮忙解释下一般windows目录下的temp文件夹里一般会存放哪些程序? 我所知道的有: windows升级打补丁的时候会有一堆cab文件存放在这,有时候不知道为什么没有被删? 会有“C:\Windows\Temp\hsperfdata_xxxxx"这样一个文件夹,xxxxxx可能是机器名或者用户名。里面存放一些数字文件,也打不开。如2024,等,网上查询说是Java产生的临时文件,这些数 ...
阅读全文ECMAScript 定义类或对象有很多方法,W3SCHOOL总结了6中方法供学习: 工厂方式 原始的方式 因为对象的属性可以在对象创建后动态定义,所有许多开发者都在 JavaScript 最初引入时编写类似下面的代码: var oCar = new Object; oCar.color = "blue"; oCar.doors = 4; oCar.mpg = 25; oCar.showColor = function() ...
阅读全文Continuous forms 现在进行时态由动词 be 和行为动词的 ing 形式共同构成。常与现在进行时连用的时间状语包括: now, at the moment, today, this week, this year 等。 现在进行时用于描述正在发生的行为或动作。 例如: Steven is sleeping, so be quiet. (史蒂夫在睡觉呢,安静点儿!) ...
阅读全文SPL - Standard PHP Library 标准PHP类库 spl_ 标准PHP类库的函数 ob_ output buffering 函数系列, 参考Output Control Functions ...
阅读全文由这个错误来解释java class file内部结构。 java.lang.UnsupportedClassVersionError: HelloWorld : Unsupported major.minor version 51.0 at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClassCond(Unknown Source) 这 ...
阅读全文Mysql Server挂掉了,重启总是失败,异常提示: Starting MySQL.The server quit without updating PID file (/[FAILED]l/mysql/data/VM_1232.pid). 查看日志文件后发现有这么一段[ERROR]。 [ERROR]InnoDB: Cannot allocate memory for the buffer pool. 先不说这段ERROR,这段error只是说明了为什么mys ...
阅读全文Sun Jan 04 2015 11:04:08 Like a needle in a haystack['heɪstæk].大海捞针 Needless to say, 当然,不用说;不必说 ...
阅读全文Q:现需要对企业内部协同软件做选型,目前有三款软件入围:钉钉、飞书、企业微信。请帮书写一份调研提纲和决策报告. A: 调研提纲: 功能比较:对比钉钉、飞书、企业微信的主要功能,包括但不限于聊天、日历、任务管理、文件共享、视频会议等。 安全性比较:对比三款软件的安全性能,包括但不限于加密方式、数据存储、数据备份与恢复等。 用户体验比较:对比三款软件的用户界面设计、使用体验等。 成本比较:对比三款软件的定价方案、可扩展性等。 可行性评估:结合企业实际情况,分析各软件在企 ...
阅读全文The Oracle Fusion Middleware Family (See supported system configurations for all Oracle Fusion Middleware products) Cloud Application Foundation Coherence Data Grid Tuxedo &n ...
阅读全文Credential Store Framework (CSF) is used in OWSM to manage the secure credentials. 下面是创建CSF Key的步骤: 1.首先需要这些信息 Weblogic Domain Name Identity Domain Name User Name Password 在Fusion Applications control (EM) 中选择Weblogic Domain Nam ...
阅读全文Spring Boot为Spring MVC 提供了 auto-configuration. The auto-configuration adds the following features on top of Spring’s defaults: Inclusion of ContentNegotiatingViewResolver and BeanNameViewResolver beans. Support fo ...
阅读全文完整的导航解析流程 导航被触发。 在失活的组件里调用 beforeRouteLeave 守卫。 调用全局的 beforeEach 守卫。 在重用的组件里调用 beforeRouteUpdate 守卫(2.2+)。 在路由配置里调用 beforeEnter。 解析异步路由组件。 在被激活的组件里调用 beforeRouteEnter。 调用全局的 beforeReso ...
阅读全文在学习AndroidStudio创建projects时,创建完成一个project后又创建一个新的project时,发现这个错误 “android.support.v7.app.AppCompatActivity” cannot be resolved,很是奇怪,刚才好好的,为什么现在这个AppCompatActivity找不到不认识了呢,检查了SDK没有问题。 错误如图: 查阅了stackoverflow,发现解决办法: File->Inval ...
阅读全文