Skip to content

Instantly share code, notes, and snippets.

View Misfit-Ha's full-sized avatar

Alireza H Abadi Misfit-Ha

View GitHub Profile
@MildlyInterested
MildlyInterested / arma_useful.md
Last active April 6, 2024 14:09
Arma useful things

Arma Preset Creator by ColinM

create HTML presets from steam collections (with a second, optional, mods collection)

https://armapresetcreator.co.uk/

PAA Converter in your Browser by Gruppe Adler

converts jpg, png to PAA and vise versa

@kottenator
kottenator / simple-pagination.js
Created July 13, 2015 20:44
Simple pagination algorithm
// Implementation in ES6
function pagination(c, m) {
var current = c,
last = m,
delta = 2,
left = current - delta,
right = current + delta + 1,
range = [],
rangeWithDots = [],
l;