C -> D o D
D -> C
D -> t
D -> D o D
D -> t
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
const fs = require('node:fs'); | |
const fsPromise = require('node:fs/promises'); | |
const { https } = require('follow-redirects'); | |
const { glob } = require('glob'); | |
async function download(url, toFile) { | |
const file = fs.createWriteStream(toFile); | |
await new Promise((resovle, reject) => { | |
console.log('downloading file:', url); |
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
const lists = [ | |
[1, 2], | |
[3, 4], | |
[5], | |
[7] | |
]; | |
const combinations = lists | |
.reduce((all, current) => current | |
.map(item => all.map(g => g.concat([item]))) |
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
ROYAL_MAIL_API_CLIENT_ID= | |
ROYAL_MAIL_API_CLIENT_SECRET= | |
ROYAL_MAIL_API_APP_ID= | |
ROYAL_MAIL_API_USER_ID= | |
ROYAL_MAIL_API_PASSWORD= |
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
{ | |
"scripts": { | |
"dev": "webpack-dev-server --port 3000 --hot --inline --history-api-fallback --colors --progress", | |
"build": "NODE_ENV=production webpack -p --optimize-occurence-order --optimize-dedupe --output-public-path 'http://cdn.domain.com/assets/[hash]/'", | |
"release": "npm run build && bin/deploy" | |
}, | |
"dependencies": { | |
"axios": "0.12.0", | |
"classnames": "2.2.5", | |
"qrcode.react": "0.6.1", |
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="loader"> | |
<ul class="hexagon-container"> | |
<li class="hexagon hex_1"></li> | |
<li class="hexagon hex_2"></li> | |
<li class="hexagon hex_3"></li> | |
<li class="hexagon hex_4"></li> | |
<li class="hexagon hex_5"></li> | |
<li class="hexagon hex_6"></li> | |
<li class="hexagon hex_7"></li> | |
</ul> |
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
{ | |
"en_US": {"dir": "ltr", "name": "English"}, | |
"de": {"dir": "ltr", "name": "Deutsch"}, | |
"fr_FR": {"dir": "ltr", "name": "français (France)"}, | |
"fr_CA": {"dir": "ltr", "name": "français (Canada)"}, | |
"ca": {"dir": "ltr", "name": "català"}, | |
"pt_BR": {"dir": "ltr", "name": "português"}, | |
"fa_IR": {"dir": "rtl", "name": "پارسی"}, | |
"zh_CN": {"dir": "ltr", "name": "中文"}, | |
"nl": {"dir": "ltr", "name": "Nederlands"}, |
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
function Class (proto, Super) { | |
// use noop function as default constructor if user not defined as in Java | |
var i, newClass = proto.hasOwnProperty('constructor') ? proto.constructor : function () {}; | |
if (Super) { | |
var SuperHelper = function () {}; | |
SuperHelper.prototype = Super.prototype; | |
// make `instanceof` could be use to check the inheritance relationship |
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
var fs = require('fs'); | |
var path = require('path'); | |
var ENCODING = 'utf8'; | |
var target = process.argv[2]; | |
fs.readdirSync(target).forEach(function (file) { | |
var filePath = path.join(__dirname, target, file); | |
var content = fs.readFileSync(filePath, ENCODING) |
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
# This config is used for Dreamhost which HTTP basic authoriztion is forbidden. | |
# The PHP Server variable 'PHP_AUTH_USER' & 'PHP_AUTH_PW' could be implement by | |
# this config via a CGI environment variable. | |
# From [HTTP Authentication on PHP as CGI (like Dreamhost)](http://planetozh.com/blog/2009/04/http-authentication-on-php-as-cgi-like-dreamhost/) | |
RewriteEngine on | |
RewriteRule ^git-hook.*\.php - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L] |
NewerOlder