自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (11)
  • 收藏
  • 关注

原创 win10 hype-v命令

pushd "%~dp0"dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txtfor /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"del hyper-v.txtDism /online /enable-featu

2020-12-17 10:27:35 282

原创 Win10 批量修改文件名

运行PowerShell,输入以下脚本:$FOLDERPATH='D:\text\remane\files'$Filter='*.dbf'$newtext='_20201010.txt'$oldtext='.txt'ls $FOLDERPATH -Include $Filter -Recurse | ForEach-Object{Rename-Item $_.FullName $_.FullName.Replace($oldtext,$newtext)}

2020-10-28 16:31:47 302

原创 按经纬度范围过滤数据

function fetchData(idx) {if (idx > 19) {return;}var dataURL = “https://iclient.supermap.io/web/data/bigdata_water_10w/data_”+idx+".bin";var xhr = new XMLHttpRequest();xhr.open(‘GET’, dataURL, true);xhr.responseType = ‘arraybuffer’; xhr.onload

2020-10-13 20:05:02 792

原创 安装Jenkins

1.docker 下载 jenkins 镜像 指定版本 ,有的版本不支持很多插件的安装docker pull jenkins/jenkins2.查看jenkins 是否下载成功docker images3. 运行jenkinsmkdir /root/jenkins进入 /root:ls -nd jenkins/chown -R 1000:1000 jenkins/ docker run -itd -p 9090:8080 -p 50000:50000 --na...

2020-07-12 18:16:18 93

原创 react环境搭建

使用国内镜像安装react环境npm install -g cnpm --registry=https://registry.npm.taobao.orgnpm config set registry https://registry.npm.taobao.orgcnpm install -g create-react-app创建react例子并启动create-react-app my-appcd my-app/npm start浏览器访问地址http://localhost:

2020-07-12 18:11:15 100

原创 升级nodejs默认版本到最新版

yum info epel-releaseyum install nodejsnpm install -g nn latestwhich nodevim ~/.bash_profile〉export N_PREFIX=/usr/local #node实际安装位置〉export PATH=$N_PREFIX/bin:$PATHsource ~/.bash_profilenode -v

2020-07-12 18:04:40 2635

原创 minikube创建集群

一、安装docker1.安装需要的软件包yum install -y yum-utils device-mapper-persistent-data lvm22.配置镜像yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo3.安装dockeryum update -y && yum install -y docker-ce4.修改设置mkdi.

2020-07-12 12:20:10 429 1

翻译 【Solr in Action】eclipse+java+solrj环境下实现solr客户端数据上传

import java.io.PrintStream;import java.util.ArrayList;import java.util.Collections;import java.util.List;import org.apache.solr.client.solrj.SolrQuery;import org.apache.solr.client.solrj

2017-12-20 16:25:39 289

原创 配置Tomcat+MySQL单点登录服务器

耶鲁大学开发的单点登录(Single Sign On)系统称为CAS(Central Authentication Server)被设计成一个独立的Web应用程序(cas.war)。该资源不仅提供部署在Tomcat服务器上的cas.war包(解压缩后在webapps目录下),而且创建Mysql数据源,完成用户表中用户信息的认证。deployerConfigContext.xml中创建MySql数

2016-02-20 21:14:48 279

mysql-front

网上下载很多版本之后,比较之下超好用的版本

2021-01-11

Java-Data-Science-Cookbook 随书源代码

https://www.packtpub.com/big-data-and-business-intelligence/practical-data-science-cookbook-second-edition?utm_source=github&utm_medium=repository&utm_campaign=9781787129627 https://www.packtpub.com/big-data-and-business-intelligence/apache-spark-data-science-cookbook?utm_source=github&utm_medium=repository&utm_campaign=9781785880100 https://www.packtpub.com/big-data-and-business-intelligence/mastering-java-data-science?utm_source=github&utm_medium=repository&utm_campaign=9781782174271

2018-08-13

耶鲁大学单点CAS服务器

耶鲁大学开发的单点登录(Single Sign On)系统称为CAS(Central Authentication Server)被设计成一个独立的Web应用程序(cas.war)。该资源不仅提供部署在Tomcat服务器上的cas.war包(解压缩后在webapps目录下),而且创建Mysql数据源,完成用户表中用户信息的认证。 deployerConfigContext.xml中创建MySql数据源如下: <bean id="casDataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName"> <value>com.mysql.jdbc.Driver</value> </property> <property name="url"> <value>jdbc:mysql://localhost/test</value> </property> <property name="username"> <value>root</value> </property> <property name="password"> <value>123456</value> </property> </bean> 使用该数据源如下: <bean class="org.jasig.cas.adaptors.jdbc.QueryDatabaseAuthenticationHandler"> <property name="dataSource" ref="casDataSource" /> <property name="sql" value="select Password from member where lower(LoginID) = lower(?)" /> </bean>

2015-12-09

jQueryAPI_1.7.1_CN.chm

JQuery是继prototype之后又一个优秀的Javascript库。该资源是jQuery 1.7.1的中文版API文档,讲解Javascript库的使用方法,内容全面,阅读方便。

2015-12-09

开源phpCAS程序

开源phpCAS程序

2015-08-11

php版cas验证程序

php cas: php版cas验证程序,支持php 5.

2015-08-11

斯坦福大学的地质统计学软件S-GeMS

斯坦福大学的地质统计学软件sgems,可以通过地质统计学的相关算法概念的学习. S-GeMS is a software for 3D geostatistical modeling. It implements many of the classical geostatistics algorithms, as well as new developments made at Stanford University. See http://sgems.sourceforge.net

2014-09-29

Thinking in Java 3th Edition习题及答案

Thinking in Java 3th Edition习题及答案

2014-09-16

ASP数据库项目案例导航 源文件及多媒体演示

提供了<<ASP数据库项目案例导航>>一书的核心源程序、数据库文件,以及多媒体文件。包括以下内容:源文件:提供了本书各章源程序和相应的数据库文件。多媒体演示:提供了本书项目开发、系统创建和配置以及系统功能演示的多媒体文件;

2009-12-26

人工智能程序设计-Prolog语言

人工智能程序设计Visual Prolog教程的ppt

2008-04-13

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除