Based off of: http://docs.sequelizejs.com/en/1.7.0/articles/express/
Create and initialize your a directory for your Express application.
$ mkdir sequelize-demo
import React from 'react'; | |
import { mount } from 'enzyme'; | |
let WidgetLayout; | |
/* eslint-disable react/display-name, react/prop-types */ | |
beforeEach(() => { | |
jest.resetModules(); | |
}); |
Based off of: http://docs.sequelizejs.com/en/1.7.0/articles/express/
Create and initialize your a directory for your Express application.
$ mkdir sequelize-demo
PostgreSQL Type | PostgreSQL Size | Description | Range | Diesel Type | Rust Type |
---|---|---|---|---|---|
Nullable Types | nullable | Nullable `` |
jest.mock('react-dom'); | |
import React from 'react'; | |
import { createPortal } from 'react-dom'; | |
import renderer from 'react-test-renderer'; | |
import ShallowRenderer from 'react-test-renderer/shallow'; | |
import ReactDOM from 'react-dom'; | |
class Drop extends React.Component { | |
constructor(props) { |
Under the dependencies section, put
<crate name>={git="ssh://[email protected]/<organization>/<reponame>.git"}
It is pretty similar to a github repo's ssh cloning link, however the :
is replaced with a /
and ssh://
is prepended to the URL.
[email protected]:my-organization/my-repo.git vs ssh://[email protected]/my-organization/my-repo.git
The SSH URL needs to be used because Cargo is currently unable to handle the authentication prompt that comes up when an HTTPS link is used.
Make sure that the matches the crate name in the target repo's Cargo.toml. The repo name will not override what is in the Cargo.toml if it is a different value.
type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
fn isqrt(n: usize) -> usize { | |
n == 0 && return n; | |
let mut s = (n as f64).sqrt() as usize; | |
s = (s + n / s) >> 1; | |
if s * s > n { s - 1 } else { s } | |
} | |
fn perfect_sqrt(n: usize) -> isize { | |
match n & 0xf { | |
0 | 1 | 4 | 9 => { |
/** | |
* ECMA2015 | |
*/ | |
function convertHex(hexCode, opacity = 1){ | |
var hex = hexCode.replace('#', ''); | |
if (hex.length === 3) { | |
hex = hex[0] + hex[0] + hex[1] + hex[1] + hex[2] + hex[2]; | |
} |