I hereby claim:
- I am okbel on github.
- I am okbel (https://keybase.io/okbel) on keybase.
- I have a public key whose fingerprint is FF23 2330 AD41 61EE FBD5 F420 D8F3 259E DBB9 3FCD
To claim this, I am signing this object:
pm2 > forever | |
Basically it took me less than five minutes to configure pm2 while foreverjs took ... forever ( > 30 mins ) | |
The reason behind it: pm2 allows you to name your process the moment you are starting it. So, you can handle it by just | |
calling it and does not create several instances without reason. | |
Proof: | |
forever start --uid "server" server.js ----- pm2 start server.js -n server | |
## This creates a new instance ##This recognizes the old instance and does not create another |
(base64 /dev/urandom | tr -d '/+' | head -c 32 | tr '[:upper:]' '[:lower:]') |
I hereby claim:
To claim this, I am signing this object:
var s = "JavaScript syntax highlighting";
alert(s);
```javascript
componentDidMount() {
const contNode = this.refs.cont;
// Do stuff!
}
```
(defn get-middle [x] | |
(if (odd? (count x)) | |
(subs x (Math/floor (/ (count x) 2.0)) (+ (Math/floor (/ (count x) 2.0)) 1)) | |
(subs x (- (/ (count x) 2.0) 1)(+ (/ (count x) 2.0) 1)) | |
)) | |
;; Better | |
(defn is-even [s] (= 0 (mod (count s) 2))) | |
(defn mid [s] (int (Math/ceil (/ (count s) 2)))) |
InmutableJS is a library from Facebook that provides a series of inmutable data structures. They are always immutable. The reference to them can change but the data inside of them cannot which means you can build predictable and reliable state models. And it becomes really easy to manage your application state. Immutable.js
More about Immutable Data and React React.js Conf 2015 - Immutable Data and React - YouTube
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/bel/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="robbyrussell" |
import {client as clientPlugins} from 'pluginsConfig'; | |
function importer () { | |
let context, | |
importedFiles; | |
function buildContext() { | |
/** | |
* buildContext creates the context for the plugins | |
* require.context(<path>, true, <regexp> |
import React from 'react'; | |
class Component extends React.Component { | |
constructor() { | |
super(); | |
this.state = { | |
data: [], | |
}; | |
} |