type(branch): subject
Example: feat(backoffice): support full game editing
Must be one of the following:
<?php | |
namespace App\Providers; | |
use Illuminate\Support\Collection; | |
use Illuminate\Pagination\LengthAwarePaginator; | |
class AppServiceProvider extends ServiceProvider | |
{ | |
public function boot() |
{ | |
// Fonts | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 14, | |
"editor.fontLigatures": true, | |
// Editor & Usage | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2, | |
"editor.cursorSmoothCaretAnimation": "on", |
Mini projects by Maxime Euzière (xem), subzey, Martin Kleppe (aemkei), Mathieu Henri (p01), Litterallylara, Tommy Hodgins (innovati), Veu(beke), Anders Kaare, Keith Clark, Addy Osmani, bburky, rlauck, cmoreau, maettig, thiemowmde, ilesinge, adlq, solinca, xen_the,...
(For more info and other projects, visit http://xem.github.io)
(Official Slack room: http://jsgolf.club / join us on http://register.jsgolf.club)
const fs = require('fs'); | |
const express = require('express'); | |
const bodyParser = require('body-parser'); | |
const app = express(); | |
const port = 3000; | |
app.use(bodyParser.json({ limit: '50mb' })); | |
app.use(bodyParser.raw({ type: 'audio/wav', limit: '50mb' })); | |
app.get('/', (req, res) => res.send('Hello World!')); |
(function (history, trackingId, options) { | |
const generateId = () => { | |
return '_' + Math.random().toString(36).substr(2, 9); | |
}; | |
const getId = () => { | |
if (!localStorage.cid) { | |
localStorage.cid = generateId() | |
} | |
return localStorage.cid; | |
}; |
<!doctype html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
</head> | |
<body> | |
</body> | |
</html> |