这里收藏工作中用到的下载地址,也为了防止做重复的搜索工作,同时分享给大家。
more
java相关
api
https://docs.oracle.com/javase/8/docs/api/index.html
javase
http://www.oracle.com/technetwork/java/javase/downloads/index.html
server-jre8
http://www.oracle.com/technetwork/java/javase/downloads/server-jre8-downloads-2133154.html
linux wget下载
java8 wget --no-check
继续阅读 »
POI读取Excel内容
1、在Fedora中配置Steam安装时需要的相关源
```
运行如下命令
$ su -c 'dnf install http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm'
```
继续阅读 »
在Fedora中安装Steam
1、在Fedora中配置Steam安装时需要的相关源
```
运行如下命令
$ su -c 'dnf install http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm'
```
继续阅读 »
安装说明
系统环境:Linux Centos6.3_64
软件:nginx1.7.7
下载地址:http://nginx.org/en/download.html
源码安装
//首先下载nginx源文件
wget -c http://nginx.org/download/nginx-1.7.7.tar.gz
//确保系统安装了g++、gcc、openssl-devel、pcre-devel和zlib-devel软件
yum install gcc-c++
yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel
//首先解压缩
tar -zxv
继续阅读 »
Splunk的安装及配置
Splunk 是一个运行于多平台环境下的日志分析软件和系统故障诊断工具。
Splunk 可以支持任何服务器产生的日志,其对日志进行处理的方式是进行高效索引之后让管理员可以对日志中出现的各种情况进行搜索,并且通过非常好的图形化的方式展现出来。
简单介绍下安装及配置流程
1.下载
上splunk官网,选择Free Download,选择对应的操作系统版本,点击开始下载。 其实不能直接下啊,得先注册账户啊,和Jdk下载一样。
老老实实注册吧。注册完毕,登陆,继续Free Download,终于可以了。
发现其实不用注册都行,前提是你知道下载地址。这里给个splunk-6.2.1-245427-Linux-
继续阅读 »
We flap, and we laugh.
Click to download the game for Mac!
继续阅读 »
People love dealing with well-structured data. It costs much less efforts than working with disorganized raw texts.
In economic and financial research, we typically download data from open-access websites or authentication-required databases. These sources may provide data in multiple formats. For example, almost all
继续阅读 »
1.下载源码
wget http://download.redis.io/releases/redis-2.8.19.tar.gz
2.解压
tar -zxf redis-2.8.19.tar.gz
3.make
make
4.install
sudo make install
5.服务配置
wget https://github.com/ijonas/dotfiles/raw/master/etc/init.d/redis-server
wget https://github.com/ijonas/dotfiles/raw/master/etc/redis.conf
sudo mv redis-ser
继续阅读 »
content
{:toc}
本文将介绍如何使用 JavaScript 创建文件,并自动/手动将文件下载。这在导出原始数据时会比较方便。
先上代码
js
/**
* 创建并下载文件
* @param {String} fileName 文件名
* @param {String} content 文件内容
*/
function createAndDownloadFile(fileName, content) {
var aTag = document.createElement('a');
var blob = new Blob([content]);
aTag.download = fil
继续阅读 »
It is quite easy to get started with R. The very first step is to download R from the official website , and install it.
继续阅读 »