Skip to content

Instantly share code, notes, and snippets.

View ilyakharlamov's full-sized avatar

Ilya Kharlamov ilyakharlamov

  • USA
View GitHub Profile
@ilyakharlamov
ilyakharlamov / ghidra-community.md
Last active September 23, 2021 19:02 — forked from adulau/ghidra-community.md
Ghidra community - collection
@ilyakharlamov
ilyakharlamov / Plural.js
Last active December 19, 2015 11:29 — forked from kjantzer/Plural.js
/*
Plural - create singlular or plural sentence based on number given (all numbers but 1 return plural sentence)
var str = "Do you want to delete this? There {are|is} [num] book{s} attached."
var num = 2 // or 0, 3, 4, ...
"Do you want to delete this? There are 2 books attached."
var num = 1
"Do you want to delete this? There is 1 book attached."