Skip to content

Instantly share code, notes, and snippets.

View BoringOwlCompany's full-sized avatar

Boring Owl BoringOwlCompany

View GitHub Profile
@BoringOwlCompany
BoringOwlCompany / .eslintrc.json
Created March 5, 2021 10:37
Simple but powerfull eslint config for React
{
"parser": "babel-eslint",
"settings": {
"react": {
"version": "detect" // detect react version
}
},
"env": {
"browser": true,
"es6": true,

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@BoringOwlCompany
BoringOwlCompany / chat-frontend.js
Created August 7, 2019 07:33 — forked from martinsik/chat-frontend.js
Node.js chat frontend and server
$(function () {
"use strict";
// for better performance - to avoid searching in DOM
var content = $('#content');
var input = $('#input');
var status = $('#status');
// my color assigned by the server
var myColor = false;