Skip to content

Instantly share code, notes, and snippets.

View popenkomaksim's full-sized avatar

Maksym Popenko popenkomaksim

  • DataArt
  • Kyiv, Ukraine
View GitHub Profile
@popenkomaksim
popenkomaksim / .gitignore
Created June 15, 2017 09:40 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #
# All build snippets are based on Ubuntu trusty:
containers:
build:
setup:
- !Ubuntu trusty
- !UbuntuUniverse
# ------------------------------------------------------------------------
@popenkomaksim
popenkomaksim / .block
Created January 2, 2018 14:29 — forked from mbostock/.block
Poisson-Disc V
license: gpl-3.0
@popenkomaksim
popenkomaksim / .block
Created January 2, 2018 15:46 — forked from mbostock/.block
Isometric III
license: gpl-3.0
@popenkomaksim
popenkomaksim / .block
Created January 2, 2018 15:47 — forked from mbostock/.block
Color Mesh
license: gpl-3.0
@popenkomaksim
popenkomaksim / aws-stream-logs-from-cloudwatch-lambda-es--lambda-code.js
Created March 28, 2019 13:22 — forked from torgeir/aws-stream-logs-from-cloudwatch-lambda-es--lambda-code.js
AWS stream logs from "cloudwatch -> lambda -> es" node.js lambda-code
// v1.1.2
var https = require('https');
var zlib = require('zlib');
var crypto = require('crypto');
var endpoint = '<aws es endpoint>';
exports.handler = function(input, context) {
// decode input from base64
var zippedInput = new Buffer(input.awslogs.data, 'base64');
@popenkomaksim
popenkomaksim / review-checklist.md
Created January 20, 2020 11:06 — forked from bigsergey/review-checklist.md
Front-end Code Review Checklist

Review checklist

General

  1. Does the code work?
  2. Description of the project status is included.
  3. Code is easily understand.
  4. Code is written following the coding standarts/guidelines (React in our case).
  5. Code is in sync with existing code patterns/technologies.
  6. DRY. Is the same code duplicated more than twice?