项目开发记录 August 19, 2018

VBA创建目录、文件并写入

Words count 1.5k Reading time 1 mins.

Sub CreateFile()
‘定义变量
Dim PathG As String
Dim i As Integer
Dim str As String
Dim str_path As String
Dim FSO...

Read article

项目开发记录 August 19, 2018

VBA创建目录、文件并写入

Words count 1.5k Reading time 1 mins.

Sub CreateFile()
‘定义变量
Dim PathG As String
Dim i As Integer
Dim str As String
Dim str_path As String
Dim FSO As Object
‘定义路径
PathG = “D:\VBAtest\software”

‘如果路径后面有 “"
‘类似于 “D:\VBAtest\software"
‘需要将后面的斜杠处理掉

If Right(PathG, 1) = “" Then
str = Left...

Read article

前端技术 August 19, 2018

vildForm表单校验

Words count 14k Reading time 13 mins.

<!-- 页面结构 -->
<div class="ue-container" id="sandbox-container">
    <!-- 验证信息nowrap -->
    <form class="form-horizontal" id="saveForm" name="saveForm" onsubmit="return false">...
Read article

LINUX August 19, 2018

vim程序编辑器-练习

Words count 3.6k Reading time 3 mins.

1. 在 /tmp 这个目录下建立一个名为 vitest 目录;

mkdir -p /tmp/vitest
//-p意思是如果父目录不存在,自动创建

2. 进入 vitest 目录;

cd /tmp/vitest

3. 将 man.config 复制到本目录底下;

用文件传输工具

4. 使用 vi 开启本目录下的 man.config 这个文件;

vi man.config

5. 在 vi 中设定一下行号;

:set nu

6. 移动到第 58 行,向右移动 40 个字符,请问你看到双引号内是什么...

Read article

LINUX August 19, 2018

虚拟机修改ip

Words count 331 Reading time 1 mins.

执行命令如下:

vi /etc/sysconfig/network-scripts/ifcfg-eth0

修改内容如下:

DEVICE=eth2
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=none
IPADDR=192.168.188.3
PREFIX=24
GATEWAY=192.168.188.254
DNS1=10.100.1.12

执行保存退出

service network restart
Read article

VUE August 19, 2018

vue+cordova构建安卓应用

Words count 3.9k Reading time 4 mins.

java、安卓sdk(安装Android Studio)、Node.js、cordova。

安装 cordova

npm install -g cordova

在自己的源码目录下运行命令行,创建cordova项目。创建名字为shoppingmall的项目

cordova create shoppingmall com.inspur.shoppingmall shoppingmall

执行完成后,切换到项目里

cd shoppingmall

给App添加目标平台,这里我们添加android平台...

Read article

VUE August 19, 2018

Vue知识点记录

Words count 7.9k Reading time 7 mins.

1.安装vue-resource

cnpm安装依赖

cnpm install vue-resource

安装完成后在项目中全局引入

修改main.js文件

import VueResource from 'vue-resource'
Vue.use(VueResource);

vue-resource使用

// 传统写法
this.$http.get('/someUrl', [options]).then(function(response){    
    // 响应成...
Read article

LINUX August 19, 2018

yum 的安装与卸载以及相关源配置

Words count 3.9k Reading time 4 mins.

系统版本

[root@localhost ~]# uname -r
3.10.0-514.el7.x86_64
  1. 查看yum组件
[root@localhost ~]# rpm -qa yum
yum-3.4.3-150.el7.centos.noarch
  1. 卸载和yum有关的所有组件
rpm -qa | grep yum | xargs rpm -e --nodeps
  1. 再次查看
[root@localhost ~]#  rpm -qa yum

没有相关信息说明卸载成功。

1....

Read article

机器学习 August 19, 2018

2-2 测试算法

Words count 27k Reading time 24 mins.

import numpy as np
import matplotlib.pyplot as plt
from sklearn import datasets
iris = datasets.load_iris()
X = iris.data
y = iris.target
X.shape
(150, 4)
y.shape
(150,)
y.reshape(1,-1)
array([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
Read article

项目开发记录 August 19, 2018

秒杀系统的实现之DAO层

Words count 25k Reading time 23 mins.

mvn archetype:generate -DgroupId=org.seckill -DartifactId=seckill -DarchetypeArtifactId=maven-archetype-webapp

修改servlet版本未3.1

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance...
Read article

HADOOP August 19, 2018

hadoop FileSystem Shell

Words count 19k Reading time 17 mins.

http://hadoop.apache.org/docs/r2.7.4/hadoop-project-dist/hadoop-common/FileSystemShell.html

文件系统(FS)shell包括各种类似shell的命令,可直接与Hadoop分布式文件系统(HDFS)以及Hadoop支持的其他文件系统(如本地FS,HFTP FS,S3 FS等)进行交互。FS shell 是通过以下方式调用的:

bin / hadoop fs <args>

appendToFile...

Read article
Load more
0%