码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
perl6中字符串字母编历
use v6; my $input = prompt '输入字符串:'; for $input.words -> $word { say $word; } for $input.comb -> $char { say $char; } #一个是词分隔, 一个是字母分隔 ...
分类:其他好文   时间:2017-06-04 12:52:06    阅读次数:120
vsftpd:500 OOPS: vsftpd: refusing to run with writable root inside chroot ()错误的解决方法
当我们限定了用户不能跳出其主目录之后,使用该用户登录FTP时往往会遇到这个错误: [html] view plain copy 500 OOPS: vsftpd: refusing to run with writable root inside chroot () [html] view plai ...
分类:其他好文   时间:2017-06-04 12:46:46    阅读次数:217
WordPress搬家教程:换空间与换域名
select * from wp_options where option_name update wp_options set option_value ='http://cndavy.vicp.net/wordpress' where option_name ='siteurl';update ...
分类:其他好文   时间:2017-06-04 11:45:43    阅读次数:194
Light oj 1149 - Factors and Multiples 【二分图最大匹配】【好题】
1149 - Factors and Multiples PDF (English) Statistics Forum Time Limit: 2 second(s) Memory Limit: 32 MB You will be given two sets of integers. Let's ...
分类:其他好文   时间:2017-06-04 11:44:44    阅读次数:301
spring中@Resource和@Autowired理解
一、@Resource的理解 @Resource在bean注入的时候使用,@Resource所属包其实不是spring,而是javax.annotation.Resource,只不过spring支持该注解@Resource里有name,lookup,type,authenticationType,s ...
分类:编程语言   时间:2017-06-04 10:48:10    阅读次数:212
javascript事件类型汇总
事件类型: onblur onchange onclick ondblclick onerror onfocus onkeydown onkeypress onkeyup onload onmousedown onmouseenter onmouseleave onmousemove onmouse ...
分类:编程语言   时间:2017-06-04 10:48:04    阅读次数:217
spring data jpa 自定义sql 左链接查询
@Query(value = "select u.* from appuser_te u LEFT JOIN app_user_history his on his.user_id=u.id where his.apple_app_id=:appleAppId limit 1,3",nativeQu... ...
分类:数据库   时间:2017-06-04 09:52:47    阅读次数:409
简洁的用户故事编写格式
对于多数产品待办事项列表(product backlog)项,尤其是产品功能类,敏捷团队通常使用用户故事(user story)来表达预期的商业价值。 用户故事(user story)的格式通常如下: 简洁的格式可以帮助团队完成较好的用户故事(user story):容易让业务和技术人员准确理解。然 ...
分类:其他好文   时间:2017-06-04 09:44:17    阅读次数:186
响应式内容滑动插件bxSlider
响应式WEB设计可以让WEB页面自适应各种尺寸的屏幕,俨然已经成为了当今WEB设计趋势。本文将介绍一款基于jQuery的响应式内容滑动插件以及如何使用这款插件到你的WEB应用中,满足各类WEB设计需求。 查看演示 下载源码 bxSlider特性 1.充分响应各种设备,适应各种屏幕; 2.支持多种滑动 ...
分类:其他好文   时间:2017-06-04 09:43:05    阅读次数:248
JS debounce和throttle 去抖和节流
JS中的高频事件有scroll recize mouseover。 如果频繁触发事件绑定函数,会导致浏览器性能上的损失。 因此我们通常会添加延迟执行的逻辑。 在underscore.js里面有debounce和throttle这两个方法。 throttle创建并返回一个节流阀一样的函数,当重复调用函 ...
分类:Web程序   时间:2017-06-04 00:22:02    阅读次数:295
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!