#old

为 placeholder 自定义样式

textarea::-webkit-input-placeholder{  padding:1em;}textarea::-moz-placeholder{  padding:1em;}同理,input的定义方法为:input::-webkit-input-placeholder{  padding:.2em;}inp...
代码星球 ·2020-04-10

IE8支持HTML5的占位符placeholder

/*IE8支持placeholder占位符*/if(!('placeholder'indocument.createElement('input'))){  $('input[placeholder],textarea[placeholder]').each(function(){ &nb...

spring 之 property-placeholder 分析2

其实我们可以完全不使用  context:property-placeholder ,而是使用 PropertySourcesPlaceholderConfigurer: <beanclass="org.springframework.context.suppor...

spring 之 property-placeholder 分析

不难知道,property-placeholder的解析是 PropertyPlaceholderBeanDefinitionParser完成的,但是它仅仅是个parser,它仅仅是读取了location等配置属性,并没有完成真正的解析,及注册。<context:property-placeholder...

flask中的g、add_url_rule、send_from_directory、static_url_path、static_folder的用法

    Flask中的g对象是个很好的东西,主要用于在一个请求的过程中共享数据。可以随意给g对象添加属性来保存数据,非常的方便,下面的代码是一个使用g对象的例子。下面的这个例子会使用random随机产生一个0~9的整数,并使用g.x保存并记录debug日志: #enco...
代码星球 ·2020-04-06

十倍交叉验证 10-fold cross-validation

   10-foldcross-validation,用来测试算法准确性。是常用的测试方法。将数据集分成十份,轮流将其中9份作为训练数据,1份作为测试数据,进行试验。每次试验都会得出相应的正确率(或差错率)。10次的结果的正确率(或差错率)的平均值作为对算法精度的估计,一般还需要进行多次1...

yum提示another app is currently holding the yum lock;waiting for it to exit

当使用yuminstall软件时,提示这个错误,应该是当前的yum进程被锁定。处理方法:rm-f/var/run/yum.pid重新yuminstall就ok...
代码星球 ·2020-04-05

input placeholder属性 样式修改(颜色,大小,位置)

1<!DOCTYPEhtml>2<html>3<head>4<metacharset="utf-8">5<title></title>6<style>78input::-webkit-input-placeholder{9/*place...

HTML5轻松实现搜索框提示文字点击消失---及placeholder颜色的设置

在做搜索框的时候无意间发现html5的input里有个placeholder属性能轻松实现提示文字点击消失功能,之前还傻傻的在用js来实现类似功能。。。示例<formaction="demo_form.asp"method="get"><inputtype="search"name="user_sea...

GoldenGate对接 mysql

环境:centos7.4mysql5.5.58glibc64位版,下载链接:https://dev.mysql.com/downloads/mysql/5.5.html#downloadsGoldenGateformysql12.3.0.1.0linux版本,下载链接:http://www.oracle.com/tec...
代码星球 ·2020-04-05

Oracle GoldenGate对接 Oracle 11g和Kafka

 本文主要是向读者介绍如何通过ogg为oracle数据库的变更操作实时同步到大数据产品kafka上。开始介绍前,先为读者介绍一下环境背景机器ip和其对应的服务192.168.88.166【ogg目标端】【ogg的mgr(端口1357),rep_test】192.168.88.128【ogg源端】 【...

update cdh version ,but cdh use old conf ,problem solve

最近升级cdh版本,从4.5升级到5.0.0beta-2但是升级后,发现/etc/alternatives路径下的软链接还是只想旧的4.5版本,而且hadoop环境也是沿用4.5的版本conf,导致hive不能正常使用,报错为hdfs的版本不对。后面使用strace工具查看,发现它会与/var/lib/alternat...
代码星球 ·2020-04-05

java.sql.SQLException: connection holder is null

 ###Cause:java.sql.SQLException:connectionholderisnull;uncategorizedSQLExceptionforSQL[];SQLstate[null];errorcode[0];connectionholderisnull;nestedexception...

ubuntu goldendict 使用说明-非常好用的Linux下的词典

https://blog.csdn.net/www_helloworld_com/article/details/85019862安装和使用主要参考上面链接 输入单词后出现闪退,字典没有配置好,配置下字典即可新问题:books搜不到,不能自动改变复数,但是不同的时态可以,有待解决问题更新:在另一个电脑上是可以...

HTML5 input placeholder 颜色修改

input::-webkit-input-placeholder{/*WebKitbrowsers*/color:#999;}主要是webkit内容浏览器参考:http://www.jb51.net/html5/171764.html...
首页上一页...910111213下一页尾页