- https://api.ai/ (Google)
- https://wit.ai/ (Facebook)
- https://www.luis.ai/ (Microsoft)
- https://recast.ai/
- http://www.conversate.eu/
This file contains hidden or 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
var isSmoothScrollSupported = 'scrollBehavior' in document.documentElement.style; | |
var scrollToOptions = { | |
top: 100, | |
left: 100, | |
behavior: 'smooth' | |
}; | |
if (isSmoothScrollSupported) { | |
// Native smooth scrolling |
This file contains hidden or 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
https://www.staticgen.com/ | |
http://techscience.org/a/2015121502/ | |
https://hanserino.github.io/2016/02/11/estimating-a-front-end-web-dev-job/ | |
https://performance.sucuri.net/ | |
http://www.sitepoint.com/20-docs-guides-front-end-developers-6/ | |
http://cssguidelin.es/ | |
http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/ | |
https://patrickhlauke.github.io/touch/tests/results/ | |
https://source.unsplash.com/ | |
http://explainshell.com/explain?cmd=rsync+-chavzP+--stats+user%40remote.host%3A%2Fpath%2Fto%2Fcopy+%2Fpath%2Fto%2Flocal%2Fstorage |
This file contains hidden or 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
min-height: 100%; | |
background: #9acde2 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAANqklEQ…fzWEFoPVW/J/NjSjomSWGHBnViDGwdVuX7HM3BLx0yGVP+Abekm5AbQE7CAAAAAElFTkSuQmCC); | |
box-shadow: inset 0 0 18.75em rgba(0,0,0,.5); |
This file contains hidden or 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
/* | |
I've wrapped Makoto Matsumoto and Takuji Nishimura's code in a namespace | |
so it's better encapsulated. Now you can have multiple random number generators | |
and they won't stomp all over eachother's state. | |
If you want to use this as a substitute for Math.random(), use the random() | |
method like so: | |
var m = new MersenneTwister(); |
This file contains hidden or 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
<?php | |
require 'vendor/autoload.php'; | |
use Goutte\Client; | |
use GuzzleHttp\Client as GuzzleClient; | |
$client = new Client(); | |
$guzzleClient = new GuzzleClient(array( | |
'verify' => false, | |
)); | |
$client->setClient($guzzleClient); |
This file contains hidden or 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
grunt-cli | |
karma-cli | |
gulp-cli | |
yo | |
bower | |
http-server |