- jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
- Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
- AngularJS - Conventions based MVC framework for HTML5 apps.
- Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
- lawnchair - Key/value store adapter for indexdb, localStorage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
- lxml - Pythonic binding for the C libraries libxml2 and libxslt.
- boto - Python interface to Amazon Web Services
- Django - Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design.
- Fabric - Library and command-line tool for streamlining the use of SSH for application deployment or systems administration task.
- PyMongo - Tools for working with MongoDB, and is the recommended way to work with MongoDB from Python.
- Celery - Task queue to distribute work across threads or machines.
- pytz - pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python 2.4 or higher.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print "I am here!" |
- angular.component(): Introducing "components", a special sort of directive that are easy to configure and promote best practices, bring Angular 1 applications closer to Angular 2's style of architecture. Angular 1.5 takes a big step towards preparing developers for a smoother transition to Angular 2 in the future.
- Multi-slot transclusion: Enabling the design of more powerful and complex UI elements with a much simpler configuration and reduced boilerplate.
There is nothing component() can do but directive() can not do.
- Trebuchet MS (Calibri)
VMs VS Containers & Docker - the open-source application container engine:
- The key difference between containers and VMs is that while the hypervisor abstracts an entire device, containers just abstract the operating system kernel.
- Hypervisors can do that containers can’t is to use different operating systems or kernels; With Docker, all containers must use the same operating system and kernel.
- Couldn't care less about running multiple operating system VMs. Getting more applications running on the same hardware can save a data center or cloud provider tens-of-millions of dollars annually in power and hardware costs.
- Much easier and safer to deploy and use than previous approaches, with the other container powers, including Canonical, Google, Red Hat, and Parallels.
- Developers can use Docker to pack, ship, and run any application as a lightweight, portable, self sufficien
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @jsx React.DOM */ | |
var React = require('react'); | |
var Logo = require('../atoms/logo'); | |
var PrimaryNav = require('../molecules/primary-nav'); | |
var Search = require('../molecules/search'); | |
var OrganismsHeader = React.createClass({ | |
render: function () { | |
return | |
<header> | |
<Logo/> |
refer: https://java.libhunt.com/project/wiremock/vs/moco
- wiremock usage:
-
Actually React also can render null, it's better to use null rather than empty string '', as you can see in here: Correct way to define an empty dom element in React.
-
https://medium.com/@linmic/theming-system-in-react-js-way-99604025c91a
OlderNewer