Stay Hungry,Stay Foolish!

上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 25 下一页
摘要: Celery http://docs.celeryproject.org/en/latest/index.html Celery - Distributed Task Queue Celery is a simple, flexible, and reliable distributed syste 阅读全文
posted @ 2019-04-16 00:41 lightsong 阅读(295) 评论(1) 推荐(0) 编辑
摘要: 以windows环境测试 Erlang http://www.erlang.org/downloads 下载并安装 运行时软件 Erlang OTP 21.3 Windows 64-bit Binary File (92618042) RabbitMQ https://www.rabbitmq.co 阅读全文
posted @ 2019-04-15 23:24 lightsong 阅读(198) 评论(0) 推荐(0) 编辑
摘要: Thunk https://en.wikipedia.org/wiki/Thunk In computer programming, a thunk is a subroutine used to inject an additional calculation into another subro 阅读全文
posted @ 2019-04-13 08:37 lightsong 阅读(527) 评论(0) 推荐(0) 编辑
摘要: from https://www.pythoncentral.io/what-is-the-difference-between-__str__-and-__repr__-in-python/ 目的 官方解释: object.__repr__(self): called by the repr() 阅读全文
posted @ 2019-04-13 08:09 lightsong 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 说明 慕课网上例子,使用k-means算法分类图片, 此处调试运行通过, 并添加包管理内容, 使得其他同学容易运行。 例子地址: https://github.com/fanqingsong/cluster-images 运行环境: python3.7 包管理工具: pipenv 参考: https 阅读全文
posted @ 2019-04-01 00:34 lightsong 阅读(393) 评论(0) 推荐(0) 编辑
摘要: D3 https://d3js.org/ 数据驱动文档显示, 利用 SVG HTML CSS技术。 D3.js is a JavaScript library for manipulating documents based on data. D3 helps you bring data to l 阅读全文
posted @ 2019-03-30 01:19 lightsong 阅读(195) 评论(0) 推荐(0) 编辑
摘要: live preview 为方便web开发者,编写网页静态代码,不用频繁切换到浏览器去查看的贴心功能。 可以在编辑器中,就实现编辑预览功能, 边编写代码,边查看预览效果。 与vscode相对应的其他两款编辑器具有相同功能, 这两款编辑器是专门为web开发设计。 vscode覆盖范围更广, 其它多种类 阅读全文
posted @ 2019-03-30 00:54 lightsong 阅读(5091) 评论(0) 推荐(0) 编辑
摘要: 问题 对于一般数据结构: 1、 对于基本类型的数据的变更的可观察性(observable), 可以使用 ko.observable(xxx) 来声明一个 observable对象, 或将其绑定到视图, 或将其绑定到其它 ko.computed 或者 ko.pureComputed 对象中; 或者使用 阅读全文
posted @ 2019-03-23 08:54 lightsong 阅读(439) 评论(0) 推荐(0) 编辑
摘要: Can you bind arrow functions? https://stackoverflow.com/questions/33308121/can-you-bind-arrow-functions You cannot "rebind" an arrow function. It will 阅读全文
posted @ 2019-03-21 00:30 lightsong 阅读(285) 评论(0) 推荐(0) 编辑
摘要: npm inro https://www.npmjs.com/ npm is the package manager for javascript npm 为 nodejs默认的包管理工具, 为nodejs软件内置。 安装nodejs后, 使用 npm install xxx 可以安装第三方软件库 阅读全文
posted @ 2019-03-18 23:34 lightsong 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 引子 阮一峰一则教程中, 将应用放置在 npm 模块安装目录同等级的目录(https://github.com/ruanyf/webpack-demos)下。 但是应用目录文件中, 引用标准库的使用方法没有变化 https://github.com/ruanyf/webpack-demos/blob 阅读全文
posted @ 2019-03-16 00:44 lightsong 阅读(979) 评论(0) 推荐(0) 编辑
摘要: lazyload https://webpack.js.org/guides/lazy-loading/ 懒加载 -- 按需加载。 Lazy, or "on demand", loading is a great way to optimize your site or application. T 阅读全文
posted @ 2019-03-15 01:40 lightsong 阅读(2432) 评论(0) 推荐(0) 编辑
摘要: reactive programming https://en.wikipedia.org/wiki/Reactive_programming In computing, reactive programming is a declarative programming paradigm conce 阅读全文
posted @ 2019-03-10 13:31 lightsong 阅读(228) 评论(0) 推荐(0) 编辑
摘要: internationalization standard https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl The Intl object is the namespace f 阅读全文
posted @ 2019-03-08 00:43 lightsong 阅读(772) 评论(0) 推荐(0) 编辑
摘要: webpack-dev-server live reloading https://github.com/webpack/webpack-dev-server Use webpack with a development server that provides live reloading. 开发 阅读全文
posted @ 2019-03-04 00:32 lightsong 阅读(293) 评论(0) 推荐(0) 编辑
摘要: Font Awesome http://www.bootcss.com/p/font-awesome/ The iconic SVG, font, and CSS toolkit https://fontawesome.com 完美的图标字体只为Bootstrap设计 Iconfont https: 阅读全文
posted @ 2019-02-28 23:27 lightsong 阅读(735) 评论(0) 推荐(0) 编辑
摘要: 中间件 https://redux.js.org/glossary#middleware 中间件在发送端 action端点 和 处理方reducer的端点之间。 主要负责将async action转换为action, 或者记录action日志。 A middleware is a higher-or 阅读全文
posted @ 2019-02-26 22:58 lightsong 阅读(373) 评论(0) 推荐(0) 编辑
摘要: express session http是没有状态的协议, 需要web框架自己实现会话和会话管理工作。 express框架有session插件可以使用。 见如下介绍: https://www.tutorialspoint.com/expressjs/expressjs_sessions.htm We 阅读全文
posted @ 2019-02-25 00:09 lightsong 阅读(1501) 评论(0) 推荐(0) 编辑
摘要: redux-thunk https://github.com/reduxjs/redux-thunk Why Do I Need This? Thunks are the recommended middleware for basic Redux side effects logic, inclu 阅读全文
posted @ 2019-02-24 23:11 lightsong 阅读(272) 评论(0) 推荐(0) 编辑
摘要: LDAP https://www.jianshu.com/p/50a214f51dd1 LDAP 是轻量级目录访问协议的简称(Lightweight Directory Access Protocol).用于访问目录服务。它是 X.500 目录访问协议的移植,但是简化了实现方法。 含有目录数据库,提 阅读全文
posted @ 2019-02-22 00:05 lightsong 阅读(509) 评论(0) 推荐(0) 编辑
摘要: design language https://en.wikipedia.org/wiki/Design_language 设计语言(设计词汇)是一种超架构的方案和风格, 它用于指导产品组件或者架构配置的设计。 设计者希望他们的产品包都具有一致的外观和感受。 描述设计方面的选择, 包括 : 材料 颜 阅读全文
posted @ 2019-02-21 23:41 lightsong 阅读(471) 评论(0) 推荐(0) 编辑
摘要: technology stack 技术栈: 产品实现上依赖的软件基础组件, 包括 1、 系统 2、 中间件 3、 数据库 4、 应用软件 5、 开发语言 6、 框架 https://en.wikipedia.org/wiki/Solution_stack From Wikipedia, the fr 阅读全文
posted @ 2019-02-17 11:24 lightsong 阅读(4982) 评论(0) 推荐(0) 编辑
摘要: 现状 由于前端软件发展越来越复杂, 不是最初简单网页的状态, 内容丰富、交互丰富, 对前端的发展产生的深远的影响。不管是工具和是自身发展。 模块化 最初的简单页面, 一个URL对应一个页面, js代码几十行的情况, 一去不复返。 现有应用,对页面代码要求更高, 一个页面能够显示很多内容,甚至是无限制 阅读全文
posted @ 2019-02-11 00:27 lightsong 阅读(2232) 评论(0) 推荐(0) 编辑
摘要: 问题提出 https://www.zhihu.com/question/49964363 vue或者angular的介绍里说自己的特色是双向数据绑定,而在看react的介绍中,说自己的优势和特色是单向数据绑定。 vue 和 angularjs支持双向绑定, 但是单向绑定是基本功能, 与react同基 阅读全文
posted @ 2019-02-11 00:02 lightsong 阅读(648) 评论(0) 推荐(0) 编辑
摘要: redux https://redux.js.org/ A predictable state container for JavaScript apps. It helps you write applications that behave consistently, run in differ 阅读全文
posted @ 2019-02-10 23:37 lightsong 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 例子 https://github.com/ruanyf/react-demos/blob/master/demo12/index.html 此网页代码运行在本地, 是可以访问 github 数据的。 是由于 github 网站开启的 ajax 跨域访问能力。 显示内容: ajax跨域访问限制放开 阅读全文
posted @ 2019-02-10 12:53 lightsong 阅读(396) 评论(0) 推荐(0) 编辑
摘要: flux https://facebook.github.io/flux/ Flux is the application architecture that Facebook uses for building client-side web applications. It complement 阅读全文
posted @ 2019-02-10 09:58 lightsong 阅读(546) 评论(0) 推荐(0) 编辑
摘要: BSON https://baike.baidu.com/item/BSON 概念 编辑 BSON()是一种类json的一种二进制形式的存储格式,简称Binary JSON,它和JSON一样,支持内嵌的文档对象和数组对象,但是BSON有JSON没有的一些数据类型,如Date和BinData类型。 B 阅读全文
posted @ 2019-02-05 23:56 lightsong 阅读(1819) 评论(0) 推荐(0) 编辑
摘要: 问题背景 通常使用 ESLint做代码风格检查检查, 和部分代码质量检查。 但是使用ESLint在入库时候, 会产生很多的代码修正工作, 需要开发者一个一个的修改。 如果很多,并且时间紧迫,甚是尴尬。 ESLint http://eslint.cn/ ESLint最初是由Nicholas C. Za 阅读全文
posted @ 2019-02-05 23:24 lightsong 阅读(3931) 评论(0) 推荐(0) 编辑
摘要: 历史 JS诞生之初面向简单页面开发, 没有模块的概念。 后来页面逐渐复杂, 人类构造到 IIFE 立即执行函数来模拟 模块; 之前也有雅虎的实践,使用命名空间 作为模块名。 最后衍生出 面向各种使用场景 的 JS 模块标准。 例如: 面向浏览器的 AMD 面向Nodejs的 CommonJS 对于这 阅读全文
posted @ 2019-02-05 22:49 lightsong 阅读(7227) 评论(0) 推荐(0) 编辑
摘要: 疑问 https://github.com/ruanyf/react-demos/blob/master/demo08/index.html 在如下代码中的 18 行, 需要将本类中的 方法,进行绑定到this,即当前组件,但是render函数就不需要,为什么呢? 实验 将上行例子中的18行注释后, 阅读全文
posted @ 2019-02-05 21:35 lightsong 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 标准 https://promisesaplus.com/ An open standard for sound, interoperable JavaScript promises—by implementers, for implementers. A promise represents th 阅读全文
posted @ 2019-01-16 00:16 lightsong 阅读(466) 评论(0) 推荐(0) 编辑
摘要: webpack打包理解(将所有依赖文件打包到一个文件中) 由于前端代码变得越来越多,越来越复杂, 纯粹脚本化的代码书写方式已经不能满足工程化得需求。 前端模块被抽象出来, 不仅仅包括js模块, 其它如css都算作一个模块。 将这些模块打包到同一个js文件中,就叫webpack打包。 打包原理 htt 阅读全文
posted @ 2019-01-15 00:18 lightsong 阅读(941) 评论(0) 推荐(0) 编辑
摘要: typeahead https://npm.taobao.org/package/npm-typeahead A lightweight web-app that implements typeahead search functionality for npm packages. Try it o 阅读全文
posted @ 2019-01-09 00:22 lightsong 阅读(1997) 评论(0) 推荐(0) 编辑
摘要: socket.io https://socket.io/ https://socket.io/docs/ What Socket.IO is Socket.IO is a library that enables real-time, bidirectional and event-based co 阅读全文
posted @ 2019-01-06 00:54 lightsong 阅读(5084) 评论(0) 推荐(0) 编辑
摘要: Knockoutjs https://knockoutjs.com/index.html https://knockoutjs.com/documentation/introduction.html Knockout is a JavaScript library that helps you to 阅读全文
posted @ 2018-12-16 23:44 lightsong 阅读(183) 评论(0) 推荐(0) 编辑
摘要: URL重写 https://en.wikipedia.org/wiki/Rewrite_engine A rewrite engine is a software component that performs rewriting on Uniform Resource Locators, modi 阅读全文
posted @ 2018-12-14 23:27 lightsong 阅读(490) 评论(0) 推荐(0) 编辑
摘要: ini文件定义 https://en.wikipedia.org/wiki/INI_file The INI file format is an informal standard for configuration files for some platforms or software. INI 阅读全文
posted @ 2018-10-31 23:35 lightsong 阅读(4604) 评论(0) 推荐(0) 编辑
摘要: 需求 使用docker技术管理Jenkins服务器。避免多次部署需要重复安装的重复工作,且可以方便迁移到新的服务器。 Jenkins docker镜像 https://hub.docker.com/_/jenkins/ Official Jenkins Docker image 拉取镜像: dock 阅读全文
posted @ 2018-10-28 23:27 lightsong 阅读(2145) 评论(0) 推荐(1) 编辑
摘要: 模板 https://www.collinsdictionary.com/dictionary/english/template 1. countable noun A template is a thin piece of metal or plastic which is cut into a 阅读全文
posted @ 2018-10-13 23:16 lightsong 阅读(199) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 25 下一页
Life Is Short, We Need Ship To Travel