Skip to content

Instantly share code, notes, and snippets.

View plzen's full-sized avatar
🕶️
Enjoying life

Mykola Voronin plzen

🕶️
Enjoying life
  • EPAM
  • Dnipro, Ukraine
View GitHub Profile
@plzen
plzen / report.txt
Created January 21, 2020 14:18
Ably Code Audit
This file has been truncated, but you can view the full file.
yarn audit v1.19.2
┌───────────────┬──────────────────────────────────────────────────────────────┐
│ low │ Regular Expression Denial of Service │
├───────────────┼──────────────────────────────────────────────────────────────┤
│ Package │ braces │
├───────────────┼──────────────────────────────────────────────────────────────┤
│ Patched in │ >=2.3.1 │
├───────────────┼──────────────────────────────────────────────────────────────┤
│ Dependency of │ gulp-load-plugins │
@plzen
plzen / .eslintrc
Created April 13, 2018 06:05
Garden of We Report
{
"extends": ["eslint:recommended", "rallycoding", "plugin:react/recommended"],
"plugins": ["react", "jsx-a11y", "import"],
"parser": "babel-eslint",
"rules": {
"arrow-body-style": 0,
"import/no-named-as-default-member": 0,
"global-require": 0,
"camelcase": 0,
"no-underscore-dangle": 0,
@plzen
plzen / subList.java
Created November 25, 2016 18:43
Safe subList operator for RxJava
public class subList<T> implements Observable.Operator<List<T>, List<T>> {
private int start;
private int length;
public subList(int start, int length) {
this.start = start;
this.length = length;
}