Unfortunately, I heard a resignation message verbally from ESU (her name is: Su Yi in Chinese, Su from in Su Zhou, Yi from in Yi Shu), one of the smartest girl (or one) in the 2017/07 interns group, who is also from one of the top universities in Chi…
OBS Studio OBS (Open Broadcaster Software) - Free and open source software for live streaming and screen recording, Advanced Scene Switcher. https://github.com/jp9000/obs-studio OBS Classic This is the repository for OBS, an open source live streamin…
[root@sishen simpleblog]# python3.5 Python 3.5.4 (default, Sep 20 2017, 20:37:45) [GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> e…
I believe the most beautiful and elegant answer to this question is from Churchill. "On a peaceful afternoon, I sit at my desk on which there are only a pen and scores of white papers; I write. And this is the most beautiful thing in this world [1].&…
https://www.quora.com/What-is-the-best-way-to-download-YouTube-videos-for-free There are various methods to download YouTube video for free. How To Download Youtube Videos Without any software Open YouTube from your mobile browser and open the video…
You may want to add my wechat public account or add my technical blog's RSS feed This list is meant to record some useful docker commands, it can help docker beginners to solve the problems they met. I'll try to keep this list current and up to date.…
一.Java内部DNS查询 Java使用域名查询时,用的自己内部的域名实现机制,最后都是交给InetAddress去做DNS解析. 源码分析参考:http://blog.arganzheng.me/posts/java-dns-lookup-internal.html //域名查询 String dottedQuadIpAddress = InetAddress.getByName( "blog.arganzheng.me" ).getHostAddress(); //IP对应域名 I…
Mobile App Security 1. DATA THEOREM LAB https://datatheorem.github.io/ Data Theorem's technical blog about mobile security and privacy. 2. Android安全中文站 http://www.droidsec.cn/ 3. hackoftheday hackoftheday.securitytube.net 4. iosre iosre.com 5. OSX逆向顶…
Introduction The central component of any game, from a programming standpoint, is the game loop. It allows the game to run smoothly regardless of a user's input or lack thereof. Every game must and should have a game loop because a game must continue…
tmux里面用鼠标滚轮来卷动窗口内容 在 tmux里面,因为每个窗口(tmux window)的历史内容已经被tmux接管了,所以原来console/terminal提供的Shift+PgUp/PgDn所显示的内容并不是当前窗口的历史内容,所以要用C-b [ 进入copy-mode,然后才能用PgUp/PgDn/光标/Ctrl-S等键在copy-mode中移动. 如果要启用鼠标滚轮来卷动窗口内容的话,可以按C-b :然后输入    setw mode-mouse on这就可以了.如果要对所有窗口…
HBase概念学习(十)HBase与MongDB等NoSQL数据库对照 转载请注明出处: jiq•钦's technical Blog - 季义钦 一.开篇 淘宝之前使用的存储层架构一直是MySQL数据库,配合以MongDB,Tair等存储. MySQL因为开源,而且生态系统良好,本身拥有分库分表等多种解决方式,因此非常长一段时间内都满足淘宝大量业务的需求.可是因为业务的多样化发展,有越来越多的业务系统的需求開始发生了变化.一般来说有下面几类变化: (1)    数据量变得越来越多,其实如今淘宝…
转载请注明出处: jiq•钦's technical Blog - 季义钦 一.开篇 淘宝之前使用的存储层架构一直是MySQL数据库,配合以MongDB,Tair等存储. MySQL因为开源,而且生态系统良好,本身拥有分库分表等多种解决方式,因此非常长一段时间内都满足淘宝大量业务的需求.可是因为业务的多样化发展,有越来越多的业务系统的需求開始发生了变化.一般来说有下面几类变化: (1)    数据量变得越来越多,其实如今淘宝差点儿不论什么一个与用户相关的在线业务的数据量都在亿级别,每日系统调用次…
转自http://www.pixelstech.net/article/1327829407-Why-Every-Professional-Should-Consider-Blogging ften argue that professionals should share their knowledge online via blogging. The catch is that virtually anything worthwhile in life takes time and effo…
转载请注明出处:jiq•钦's technical Blog 一.Collection:存放独立元素 Collection中的接口都是可选操作,事实上现类 并不一定实现了其全部接口,这是为了防止"接口爆炸".最常见的Unsupported Operation都源自于背后由固定尺寸的数据结构支持的容器,比方使用ArrayList.asList将数组转换成List的时候,就会得到这种容器. (1)Collection之List List较之Collection添加了非常多额外的接口. 特别…
转载请注明出处:jiq•钦's technical Blog (1)域与静态方法 记住"仅仅有普通方法的调用是多态的". 而域和静态方法不是:对于域的訪问.在编译期间就已经进行解析和绑定了.而假设某个方法是静态的,就不具备多态性. (2)编写构造器有一条准则: * 用尽可能简单的方法使得对象进入正常状态.尽量避免调用其它方法. * 构造器内可以安全调用的方法仅仅有那些final方法(private默认final),由于他们无法被覆盖. (3)多态概念: 多态是指一个程序中同名的不同方法…
转载请注明出处:jiq•钦's technical Blog 1泛型语法: 泛型类: class ClassName<T>{} 泛型方法:public <T> void f(T x){} 基本指导原则:假设使用泛型方法能够代替将整个类泛型化,那么就应该使用泛型方法,由于它能够让事情更加清楚. 2为什么使用泛型? 在Java SE1.5之前,没有泛型的情况的下,通过对类型Object的引用来实现參数的"随意化","随意化"带来的缺点是要做显式的…
转载请注明出处:jiq•钦's technical Blog Hbase特征: 近期在学习Hbase.Hbase基于行健是建立了索引的,查询速度会很快,全然实时. 可是Hbase要基于行健之外的字段进行查询.那么就仅仅能是全盘扫描,基本上不可接受. 所以Hbase一般来说会针对详细的应用场景来设计行健,利用基于行健的查询的实时性来达到Hbase数据的实时查询. 关系型数据库基于索引字段的实时查询: 然后联想到关系型SQL数据库,他们针对主键是建立了B/B+/B-树索引的,基于主键的查询是实时的.…
环境:RHEL6.5 离线安装 ############################################################################ 一,本地yum源搭建 1)挂载系统镜像文件 : mkdir /media/cdrom  #新建镜像文件挂载目录 cd   #进入系统镜像文件存放目录 ls  #列出目录文件,可以看到刚刚上传的系统镜像文件 mount -t iso9660 -o loop /usr/local/src/rhel-server-7.…
python机器学习模块安装 环境:SUSE Linux Enterprise 11 sp4  离线安装 说明:在安装dlib时依赖的基础 环境较多,先升级gcc,以适应c++ 11的使用:需要用到cmake编译工具,boost这个c++库,BLAS.python升级到2.7以上版本. ############################################################################ 一,安装相关依赖包  安装部分依赖: sudo zyppe…
my new start in blog csdn : today i formally migrate my personal technical blog from sina to here intending to meet more professional programmers and engineers . thx !…
Wait Events , Posted in: Technical Track Tags: Group Blog Posts, Oracle, Technical Blog Lately, wait events %! So what exactly is the root cause? Why is so much time spent waiting on a busy mutex when it should protect just one cursor? As a troublesh…
转载自:https://blog.csdn.net/IT429/article/details/78341847 看到的一篇比较有用的前端js时间转换方法,留个备份 首先要明确这三种格式是什么样子的: 标准日期:2017-09-19 或 2017-09-19 20:00:00 中国标准时间:Mon Oct 23 2017 17:20:13 GMT+0800 (中国标准时间) 时间戳:1508750413 毫秒数:1508750413000 注意:时间戳*1000就是毫秒数 日期或中国标准时间转毫…
01 - 安装Robot Framework TA环境 根据系统请选择对应的版本包来安装,下面是以Win7-64bit系统为例,来说明如何搭建一个可以运行练习三test case的RF TA环境. 1)首先,要安装好版本对应的python环境, C:\Users\guowli>python Python 2.7.8 (default, Jun 30 2014, 16:08:48) [MSC v.1500 64 bit (AMD64)] on win32 Type "help",…
SSM框架是目前企业比较常用的框架之一,它的灵活性.安全性相对于SSH有一定的优势.说到这,谈谈SSM和SSH的不同点,这也是企业常考初级程序员的面试题之一.说到这两套框架的不同,主要是持久层框架Hibernate和MyBatis的不同和控制层框架SpringMVC和Struts2的不同. Hibernate和MyBatis的不同主要体现这么几点: 1.自动化和半自动化:Hibernate的SQL语句自动生成不需要程序员编写,而MyBatis需要编写. 2.学习上:Hibernate入门比较难,…
Tomcat Clustering Series Part 5 : NginX as Load Balancer - Ramki Technical Bloghttps://www.ramkitech.com/2013/01/tomcat-clustering-series-part-5-nginx.html Docker : Tomcat Clustering with Load Balancer (Tomcat and Nginx) - Ramki Technical Bloghttps:/…
文章标题 Introducing Apache Spark 2.3 Apache Spark 2.3 介绍 Now Available on Databricks Runtime 4.0 现在可以在Databrcks Runtime 4.0上使用. 作者介绍 Sameer Agarwal, Xiao Li, Reynold Xin and Jules Damji 文章正文: Today we are happy to announce the availability of Apache Spa…
http://michaelscodingspot.com/2017/06/04/software-engineers-path-best-annual-performance-review/ How the annual review scores are formed in the eyes of managers always fascinated me. I have five years of experience with annual reviews myself, and I w…
版权声明:本文为博主原创文章,未经博主同意不得转载. https://blog.csdn.net/jiq408694711/article/details/36526433 转载请注明出处:jiq•钦's technical Blog 使用HBase0.94版本号的时候提示HTablePool已经过时了.为什么? 我们先看HConnection的getTable方法描写叙述: getTable HTableInterface getTable(is-external=true" rel=&quo…
转载请注明出处:jiq•钦's technical Blog 引言 JDK1.4中引入了NIO,即New IO,目的在于提高IO速度.特别注意JavaNIO不全然是非堵塞式IO(No-Blocking IO),由于当中部分通道(如FileChannel)仅仅能运行在堵塞模式下,而其它的通道能够在堵塞式和非堵塞式之间进行选择. 虽然这样.我们还是习惯将Java NIO看作是非堵塞式IO,而前面介绍的面向流(字节/字符)的IO类库则是堵塞的,它们在数据从介质->OS内核这个阶段须要应用程序堵塞等待完…
一.说明 CentOS6.5自带python环境为2.6,公司的python环境为2.7. 为了避免出现以后代码出现版本差异,所以把自带的2 .6版本升级到了2.7,过程十分曲折.... 中途遇到的问题和解决方法请点击:Python安装时遇到的问题 二.安装步骤 1.下载安装包 官方下载地址为:https://www.python.org/downloads/,选择的版本为2.7.14.         直接使用wget下载到本地:wget https://www.python.org/ftp/…