Skip to content

Instantly share code, notes, and snippets.

@genadyp
genadyp / utils.js
Last active January 22, 2019 11:45
javascripts (js) utils
const {
map, mapKeys, mapValues, isObject, isEmpty, isArray, negate, cond,
stubTrue, curry, includes, flow, identity
} = require('lodash/fp');
function hookStream(stream, callback, disableOriginal = false) {
const originalWrite = stream.write
stream.write = (function (write) {
return function (string, encoding, fd) {
@genadyp
genadyp / bdd.md
Last active April 2, 2025 09:45
BDD - Binary Decision Diagrams
@genadyp
genadyp / java-useful-links.md
Last active January 21, 2024 07:50
Java useful links
@genadyp
genadyp / Diagrams.md
Last active March 23, 2020 17:12
Diagrams

Visual

UMLet - Free UML Tool for Fast UML Diagrams

Textual

sdedit - Quick Sequence Diagram Editor is a tool for creating

@genadyp
genadyp / graphql.md
Last active November 29, 2018 09:49
graphql

Get GraphQL whole schema query

Using graphql-cli is now the recommended workflow to get and update your schema.

The following commands will get you started:

install via NPM

npm install -g graphql-cli

@genadyp
genadyp / openbox.md
Last active November 29, 2018 09:48
openbox

WindowsInteractionWithWindowsKey

This proposal make use of the Super modifier key (aka Windows key) to interact with windows in common tasks like moving, expanding, focusing, minimizing...

Window switching (Alt+Tab style)

 W-Tab       Next window (like A-Tab)
 W-S-Tab     Previous window (like A-S-Tab)
@genadyp
genadyp / nlp.md
Last active May 8, 2023 14:44
NLP natural language processing

awesome-nlp - A curated list of resources dedicated to Natural Language Processing (NLP)

pytext - A natural language modeling framework based on PyTorch

flair - A very simple framework for state-of-the-art Natural Language Processing (NLP)

Stanza - Official Stanford NLP Python Library for Many Human Languages

NLP-progress - Repository to track the progress in Natural Language Processing

@genadyp
genadyp / vscode.md
Last active December 3, 2024 13:33
VS Code, vscode

awesome-vscode - A curated list of delightful VS Code packages and resources.

Extensions

REST Client - REST Client allows you to send HTTP request and view the response in Visual Studio Code directly

PlantUML - Rich PlantUML support for Visual Studio Codehttps://github.com/EliverLara/Andromeda

vscode-drawio - This extension integrates Draw.io into VS Code

@genadyp
genadyp / javascript-useful-links.md
Last active April 30, 2026 05:45
javascript (js) useful links
@genadyp
genadyp / react-redux-useful-links.md
Last active March 9, 2025 13:28
React - Redux useful links