Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
<div class="material-menu-wrapper"> | |
<div class="material-menu"> | |
<div class="material-btn"> | |
<div class="material-hamburger"> | |
<div class="material-patty"></div> | |
<div class="material-patty"></div> | |
<div class="material-patty"></div> | |
</div> | |
</div> | |
<div class="material-content"> |
'use strict'; | |
function getRandomInt(min, max) { | |
return Math.floor(Math.random() * (max - min)) + min; | |
} | |
function compareNumbers(a, b) { | |
return a - b; | |
} | |
var App = React.createClass({ |
.Charts { | |
margin: 0 auto; | |
background-color: #f9f9f9; | |
display: flex; | |
align-items: flex-end; | |
padding: 50px; | |
} | |
.Charts.horizontal { | |
display: block; | |
} |
"use strict"; | |
(function() { | |
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); | |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.ke |
#!/bin/bash | |
# try haskell easily with nix shell | |
# credit @freenode_srk:matrix.org | |
nix-shell -p "pkgs.haskell.packages.ghc883.ghcWithPackages (p: [ ])" |
Angular type
Must be one of the following:
build: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm)
ci: Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)
docs: Documentation only changes
feat: A new feature
fix: A bug fix
perf: A code change that improves performance
Monad https://youtu.be/ZhuHCtR3xq8
Haskell https://youtu.be/Vgu82wiiZ90
Design principle https://youtu.be/srQt1NAHYC0
Intresting talk
import numpy as np | |
from scipy.optimize import curve_fit | |
import matplotlib.pyplot as plt | |
# %matplotlib inline | |
x = [46,67,81,110,121,144,155,250,194,279,216,315,745,527] | |
j = 0 | |
buckets = [0] * len(x) | |
m = 0 |
coincurve 13.0.0 pypi_0 pypi | |
Python 3.7.4 (default, Aug 13 2019, 15:17:50) | |
[Clang 4.0.1 (tags/RELEASE_401/final)] :: Anaconda, Inc. on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> from cryptography.hazmat.backends import default_backend | |
>>> from cryptography.hazmat.primitives.asymmetric import rsa | |
>>> private_key = rsa.generate_private_key( | |
... public_exponent=65537, | |
... key_size=2048, |