Skip to content

Instantly share code, notes, and snippets.

View bondiano's full-sized avatar
:octocat:
Cat? I'm a kitty cat And I meow, meow, meow and I meow, meow, meow

Vassiliy Kuzenkov bondiano

:octocat:
Cat? I'm a kitty cat And I meow, meow, meow and I meow, meow, meow
  • 06:39 (UTC +05:00)
View GitHub Profile
const HtmlWebPackPlugin = require("html-webpack-plugin");
module.exports = {
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader"
@bondiano
bondiano / nginx.conf
Created March 14, 2018 08:56 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@bondiano
bondiano / object-watch.js
Created January 6, 2018 15:37 — forked from eligrey/object-watch.js
object.watch polyfill in ES5
/*
* object.watch polyfill
*
* 2012-04-03
*
* By Eli Grey, http://eligrey.com
* Public Domain.
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
*/