首页 > 2018年07月13日 > 全部分享
Get小技能:Windows桌面远程控制。
体验Windows系统自带的远程连接功能
分类:Windows开发   时间:2018-07-13 22:47:18    收藏:0  评论:0  赞:0  阅读:245
nat表的应用
一:iptablesfilter表小案例vi/usr/local/sbin/iptables.sh#!/bin/bashipt="/usr/sbin/iptables"$ipt-F$ipt-PINPUTDROP$ipt-POUTPUTACCEPT$ipt-PFORWARDACCEPT$ipt-AINPUT-mstate--stateRELATED,ESTABLISHED-jAC
分类:其他   时间:2018-07-13 22:47:08    收藏:0  评论:0  赞:0  阅读:188
[转]what’s the difference between @Component ,@Repository & @Service annotations in Spring
原文地址:https://www.cnblogs.com/softidea/p/6070314.html @Component is equivalent to @Service, @Controller , @Repository = {@Component + some more special ...
分类:编程语言   时间:2018-07-13 22:46:06    收藏:0  评论:0  赞:0  阅读:178
对于无线不循环小数随机性辩述
今天,听有的人说pie这个数字的随机性,说在pie中一定存在这某位人的生日编码。首先,阐述个人简介,本人蒟蒻,只是看到一些感兴趣的问题进行辩论,如其中有学术问题,请各位julao及时指出:); 首先先模拟无限不循环小数,即使他是无限的且不循环,但随机性会使此类问题的概率不为100%例如:现在小明的生 ...
分类:其他   时间:2018-07-13 22:45:51    收藏:0  评论:0  赞:0  阅读:160
centos7配置本地源
本地yum源 一、挂载镜像,将本地光盘挂载到指定文件夹 [root@localhost ~]# mkdir /opt/mount[root@localhost ~]# mount /dev/sr0 /opt/mount/ 二、备份 其他配置源[root@localhost]# cd /etc/yum ...
分类:其他   时间:2018-07-13 22:45:34    收藏:0  评论:0  赞:0  阅读:222
使用不同的方法计算TF-IDF值
这篇文章主要介绍了计算TF-IDF的不同方法实现,主要有三种方法: 用gensim库来计算tfidf值 用sklearn库来计算tfidf值 用python手动实现tfidf的计算 ...
分类:其他   时间:2018-07-13 22:45:20    收藏:0  评论:0  赞:0  阅读:282
安装配置Hadoop
安装配置Hadoop 1. 下载Hadoop包 2. 解压Hadoop包 3. 配置Hadoop的环境变量 4. 配置Hadoop的配置文件core site.xml和hdfs site.xml core site.xml文件 hdfs site.xml 5. 创建/Hadoop/tmp /Hado ...
分类:其他   时间:2018-07-13 22:44:48    收藏:0  评论:0  赞:0  阅读:119
通过JAVA对HDFS进行操作&管理插件
建立连接,导包 如果不用maven,解压hadoop安装包,share==>hadoop==>common==>lib 里面的全部复制粘贴过去, share==>hadoop==>hdfs==>lib 里面的全部复制粘贴过去。 如果用maven,在maven repository中搜索hadoop, ...
分类:编程语言   时间:2018-07-13 22:44:29    收藏:0  评论:0  赞:0  阅读:189
『流畅的Python』第9章_对象
一、Python风格 以一个二元素向量对象为例 此时这个对象支持大部分python操作, (3.0, 4.0)<1.41421, 0.78540> 但是一个重要的方法还是没能实现,__hash__,这关乎到对象是否可以被存入字典进行高速读取的属性,实际上可以hash对象需要三个条件: 也就是我们指定 ...
分类:编程语言   时间:2018-07-13 22:44:14    收藏:0  评论:0  赞:0  阅读:143
PowerPC-Link Command File解析
https://mp.weixin.qq.com/s/CATWma2mv5IPYGtKZLuGDA 以Code Warrior 11生成的flash版本(FLASH.lcf)为例 一. 参考资料 安装完Code Warrior IDE之后,有一个自带的pdf帮助文件,叫做MCU_Power-Arch ...
分类:其他   时间:2018-07-13 22:43:58    收藏:0  评论:0  赞:0  阅读:227
在Azure中搭建Ghost博客并绑定自定义域名和HTTPS
1. 绪论 之前一直使用cnblog写博客,现在将博客迁移至Microsoft Azure上的Ghost博客上,Ghost博客使用Markdown书写博客,页面简洁,是我喜欢的风格。具体参见官网:https://ghost.org/ ,将创建流程介绍一下。 2. 在Azure上搭建Ghost博客 不 ...
分类:Web开发   时间:2018-07-13 22:43:41    收藏:0  评论:0  赞:0  阅读:269
ML:单变量线性回归(Linear Regression With One Variable)
模型表达(model regression) 1. 用于描述回归问题的标记 m 训练集(training set)中实例的数量 x 特征/输入变量 y 目标变量/输出变量 (x,y) 训练集中的实例 (x(i),y(i)) 第i个观察实例 h 机器学习算法中的解决方案和函数,即假设(hypothes ...
分类:其他   时间:2018-07-13 22:43:11    收藏:0  评论:0  赞:0  阅读:197
MySQL Point in Time Recovery the Right Way
In this blog, I’ll look at how to do MySQL point in time recovery (PITR) correctly. Sometimes we need to restore from a backup, and then replay the tr ...
分类:数据库技术   时间:2018-07-13 22:42:46    收藏:0  评论:0  赞:0  阅读:223
Make a Person-freecodecamp算法题目
Make a Person 1.要求 用下面给定的方法构造一个对象:方法有 getFirstName(), getLastName(), getFullName(), setFirstName(first), setLastName(last), and setFullName(firstAndLa ...
分类:编程语言   时间:2018-07-13 22:42:16    收藏:0  评论:0  赞:0  阅读:191
IntelliJ IDEA 常用快捷键 之 Windows 版
IntelliJ IDEA 常用快捷键 之 Windows 版 ...
分类:Windows开发   时间:2018-07-13 22:41:58    收藏:0  评论:0  赞:0  阅读:195
Lecture 5
...
分类:其他   时间:2018-07-13 22:41:21    收藏:0  评论:0  赞:0  阅读:188
leetcode—js—Add Two Numbers
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:Web开发   时间:2018-07-13 22:41:07    收藏:0  评论:0  赞:0  阅读:152
创建外部用户_外部表
[root@localhost ~]# su - oracle[oracle@localhost ~]$ sqlplus / as sysdba;SQL*Plus: Release 11.2.0.3.0 Production on Fri Jul 13 22:22:59 2018Copyright ... ...
分类:其他   时间:2018-07-13 22:40:32    收藏:0  评论:0  赞:0  阅读:243
c++之map函数/迭代器
参考文献:https://www.cnblogs.com/fnlingnzb-learner/p/5833051.html ...
分类:编程语言   时间:2018-07-13 22:40:15    收藏:0  评论:0  赞:0  阅读:188
python开发[第二篇]------str的7个必须掌握的方法以及五个常用方法
在Python中 基本数据类型有 str int boolean list dict tuple等 其中str的相关方法有30多个 但是常用的就以下7个 join # split # find # strip# upper # lower # replace 除了以上7个常用方法外,还有个五基本方法 ...
分类:编程语言   时间:2018-07-13 22:39:58    收藏:0  评论:0  赞:0  阅读:200
1081条   上一页 1 2 3 4 5 6 ... 55 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!