- https://www.namecheap.com/security/ssl-certificates/comodo/positivessl.aspx (5.79 £)
- https://cheapsslsecurity.com/ (~2.79 £)
- https://www.ssls.com/ (~3.29 £)
- https://www.cheapsslshop.com/comodo-positive-ssl (~6 £)
- https://www.gogetssl.com/comodo-ssl-certificates/comodo-positive-ssl/ (~6 £)
- http://www.cheapsslcouponcode.com/store/comodo.com (~3 £)
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
<div class='icon'></div> |
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
export type cell = string; | |
export type row = Array<cell>; |
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
return request('http://www.everymancinema.com/venues/') | |
.then(function (response) { | |
let $ = response.data, | |
locations = []; | |
$('.main .content a[href^="/venues/"]').each(function () { | |
locations.push({ | |
nid: layman.match($(this).attr('href'), /venues\/([^\/]+)\//), | |
name: $(this).find('img').attr('alt'), | |
url: 'http://www.everymancinema.com' + $(this).attr('href') |
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
jsdom.env({ | |
html: '<script>var filmData = {foo: "bar"};</script>', | |
features: { | |
ProcessExternalResources: true | |
}, | |
done: (error, window) => { | |
if (error) { | |
throw new Error('Something is up!'); | |
} |
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
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import YouTubePlayer from 'react-youtube-player'; | |
class Parent extends React.Component { | |
constructor () { | |
super(); | |
this.state = {}; |
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
for d in */ ; do | |
dirName=$d; | |
dirName=${dirName//\/} | |
if [-f "$dirName.sql"]; then | |
echo "File found!" | |
fi | |
done; |
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
/** | |
* @fileoverview Validates JSDoc comments are syntactically correct | |
* @author Nicholas C. Zakas | |
* @copyright 2014 Nicholas C. Zakas. All rights reserved. | |
*/ | |
"use strict"; | |
//------------------------------------------------------------------------------ | |
// Requirements | |
//------------------------------------------------------------------------------ |
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
let doFoo = new WeakMap(), | |
doBar = new WeakMap(); | |
class Foo { | |
constructor () { | |
doFoo.set(this, () => { | |
// definition of doFoo for the instance of Foo. | |
}); | |
doBar.set(this, () => { |