04 2016 档案

摘要:How to dispatch a Redux action with a timeout? Q I have an action that updates notification state of my application. Usually this notification will be 阅读全文
posted @ 2016-04-29 14:03 枪侠 阅读(793) 评论(0) 推荐(0) 编辑
摘要:Tutorial: https://hulufei.gitbooks.io/react-tutorial/content/jsx-in-depth.html 阅读全文
posted @ 2016-04-29 10:29 枪侠 阅读(181) 评论(0) 推荐(0) 编辑
摘要:https://kadira.io/blog/graphql/initial-impression-on-relay-and-graphql http://graphql.org/blog/subscriptions-in-graphql-and-relay/ Facebook recently m 阅读全文
posted @ 2016-04-28 16:17 枪侠 阅读(294) 评论(0) 推荐(0) 编辑
摘要:http://sentsin.com/ 尽管今日的JavaScript已经突飞猛进,但JS的许多特性仍然保留,以下题目并不是有意设坑,许多地方将验证你的JS底细,如果错了一半,请别告诉我你从事前端。 "object" "array" "arguments" "undefined" "number" 阅读全文
posted @ 2016-04-28 10:55 枪侠 阅读(262) 评论(0) 推荐(0) 编辑
摘要:字体的选择,是网页开发的关键因素之一。 合适的字体,对网页的美观度(或可读性)有着举足轻重的影响。 但是,相比英文字体,中文字体的网页开发有着极大的局限性。因为,一套中文字体最少也要有几千个字符,体积为几个MB;单单为了浏览网页,开发者不可能让用户去下载字体,只能依靠操作系统的预装字体。(*注:确实 阅读全文
posted @ 2016-04-23 16:44 枪侠 阅读(259) 评论(0) 推荐(0) 编辑
摘要:https://scotch.io/tutorials/easy-node-authentication-setup-and-local https://scotch.io/tutorials/upgrading-our-easy-node-authentication-series-to-expr 阅读全文
posted @ 2016-04-22 18:27 枪侠 阅读(175) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/haogj/p/3985438.html 概览 从 Express 3 到Express 4 是一个巨大的变化,这意味着现存的 Express 3 应用在不更新依赖的情况下将不能工作。 这篇文章涵盖一下内容: Express 4 中的变化 一个从 Exp 阅读全文
posted @ 2016-04-16 17:03 枪侠 阅读(431) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/dasn/articles/3716055.html 刚刚给博客加了一个500px相册插件,lightbox引入了很多js文件和css文件,页面一下子看起来非常臃肿,所以还是把Gzip打开了。 环境:Debian 6 1、Vim打开Nginx配置文件 v 阅读全文
posted @ 2016-04-16 16:36 枪侠 阅读(840) 评论(0) 推荐(0) 编辑
摘要:http://www.w3cplus.com/css3/learning-to-use-the-before-and-after-pseudo-elements-in-css.html 如果你一直密切关注着各种网页设计的博客,你可能已经注意到了:before和:after伪元素已经在前端开发中获得了 阅读全文
posted @ 2016-04-13 14:09 枪侠 阅读(165) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/polk6/p/3142187.html CSS float 浮动属性 CSS float 浮动属性 本篇主要介绍float属性:定义元素朝哪个方向浮动。 目录: 1. 页面布局方式:介绍文档流、浮动层以及float属性。 2. float:left : 阅读全文
posted @ 2016-04-13 13:47 枪侠 阅读(242) 评论(0) 推荐(0) 编辑
摘要:https://css-tricks.com/almanac/properties/t/transition/ The transition property is a shorthand property used to represent up to four transition-relate 阅读全文
posted @ 2016-04-13 11:27 枪侠 阅读(366) 评论(0) 推荐(0) 编辑
摘要:匿名函数 // calculator.js(function(root) { var calculator = { sum: function(a, b) { return a + b; } }; root.Calculator = calculator;})(this);// app.jscons 阅读全文
posted @ 2016-04-11 17:18 枪侠 阅读(558) 评论(0) 推荐(0) 编辑
摘要:重写Binder的onTransact方法 you need to do that in Binder#onTransact method, this is a good place for any remote checks – pskink Feb 10 at 17:58 The descrip 阅读全文
posted @ 2016-04-11 16:11 枪侠 阅读(260) 评论(0) 推荐(0) 编辑
摘要:JavaScript is a general purpose programming language that was introduced as the page scripting language for Netscape Navigator. It is still widely bel 阅读全文
posted @ 2016-04-07 11:14 枪侠 阅读(263) 评论(0) 推荐(0) 编辑
摘要:mac下安装exuberant ctags mac 下自带ctags但是功能有限,要使用一些常用的功能需要安装exuberant ctags 下载exuberant ctags 安装exuberant ctags ./configuremakesudo make install 更改PATH,用ex 阅读全文
posted @ 2016-04-05 22:31 枪侠 阅读(762) 评论(0) 推荐(0) 编辑
摘要:export NVM_NODEJS_ORG_MIRROR=https://npm.taobao.org/mirrors/node 本文主要介绍最近自己碰到的几个坑以及搜索到的相应解决方案: 如何快速搭建 Node.js 开发环境. 使用 npm 安装一些包速度很慢或者失败. github 无法打开或 阅读全文
posted @ 2016-04-05 13:52 枪侠 阅读(527) 评论(0) 推荐(0) 编辑
摘要:网页布局(layout)是CSS的一个重点应用。 布局的传统解决方案,基于盒状模型,依赖 display属性 + position属性 + float属性。它对于那些特殊布局非常不方便,比如,垂直居中就不容易实现。 2009年,W3C提出了一种新的方案 Flex布局,可以简便、完整、响应式地实现各种 阅读全文
posted @ 2016-04-04 09:30 枪侠 阅读(296) 评论(0) 推荐(0) 编辑
摘要:https://scotch.io/tutorials/an-introduction-to-mongodb MongoDB的安装有好多种安装方法,有普通青年的HomeBrew方式,也有文艺青年的源码编译方式。我只想快速的装起来用一下,所以我选最简单的HomeBrew。 请参考官方文档 : http 阅读全文
posted @ 2016-04-02 22:22 枪侠 阅读(213) 评论(0) 推荐(0) 编辑
摘要:https://medium.com/the-graphqlhub/your-first-graphql-server-3c766ab4f0a2#.n88wyan4e 0.问题来了 DT 时代,各种业务依赖强大的基础数据平台快速生长,如何高效地为各种业务提供数据支持,是所有人关心的问题。 现有的业务 阅读全文
posted @ 2016-04-02 20:53 枪侠 阅读(7559) 评论(1) 推荐(1) 编辑
摘要:先run build,然后用node server.js来做 WebStorm 11 adds support for debugging client-side apps built with Webpack, though you need to configure the mappings a 阅读全文
posted @ 2016-04-02 20:09 枪侠 阅读(2124) 评论(0) 推荐(0) 编辑
摘要:Bootstrap is a popular, open source framework. Complete with pre-built components it allows web designers of all skill levels to quickly build a site. 阅读全文
posted @ 2016-04-01 18:26 枪侠 阅读(268) 评论(0) 推荐(0) 编辑
摘要:You can find/fork the sample project on GitHub Hey! This and all my other tutorials will soon be moving to a new home at CloseBrace, a site for JavaSc 阅读全文
posted @ 2016-04-01 17:39 枪侠 阅读(376) 评论(0) 推荐(0) 编辑
摘要:React比较吸引我的地方在于其客户端-服务端同构特性,服务端-客户端可复用组件,本文来简单介绍下这一架构思想。 出于篇幅原因,本文不会介绍React基础,所以,如果你还不清楚React的state/props/生存周期等基本概念,建议先学习相关文档 客户端React 先来回顾一下React如何写一 阅读全文
posted @ 2016-04-01 11:13 枪侠 阅读(371) 评论(0) 推荐(0) 编辑
摘要:要做什么 假设你有一个博客,有一台网站服务器(或者很多台作负载均衡的服务器),当你的博客要升级时,你可能要在你自己的电脑上写好代码(可能包括本地调试好),然后提交到git(或svn),然后在每个服务器中checkout一份代码并重启服务器应用…… 这里要介绍的是一种直接在本地提交代码,即可自动完成服 阅读全文
posted @ 2016-04-01 11:06 枪侠 阅读(3420) 评论(0) 推荐(1) 编辑