Skip to content

Instantly share code, notes, and snippets.

View juji's full-sized avatar
💭
feeling awesome

Tri Rahmat Gunadi juji

💭
feeling awesome
View GitHub Profile
@juji
juji / image-resize.js
Last active November 24, 2023 14:45
Resize images using sharp, convert them to webp
const fs = require('fs/promises')
const sharp = require('sharp')
// this will create 2 images
// one with 1200 width and one with 600 width
// it will place them in the current directory
// note that the original image(s) will be expected to be png
@juji
juji / easeOutElastic.js
Last active November 24, 2023 14:41
create easeOutElastic tween in css keyframes
function easeOutElastic(x) {
const c4 = (2 * Math.PI) / 3;
return x === 0
? 0
: x === 1
? 1
: Math.pow(2, -10 * x) * Math.sin((x * 10 - 0.75) * c4) + 1;
}
@juji
juji / sshperm
Created September 20, 2023 21:11
ssh permission
cd ~ && chmod 600 ~/.ssh/* && chmod 700 ~/.ssh && chmod 644 ~/.ssh/*.pub
@juji
juji / hex2rgba.js
Last active March 9, 2021 04:10
hex to rgba
(str, alpha) => {
if(!/^#([A-Fa-f0-9]{3}){1,2}$/.test(str))
throw new Error('Bad hex')
let c = str.substring(1).split('')
if(c.length === 3) c = [c[0], c[0], c[1], c[1], c[2], c[2]];
c = '0x'+c.join('');
@juji
juji / deploy.sh
Created December 14, 2017 12:40
git deploy script
#!/bin/bash
if [[ "$1" == "" ]]; then
echo 'usage: deploy <origin> <branch>'
exit
fi
if [[ "$2" == "" ]]; then
echo 'usage: deploy <origin> <branch>'
exit
@juji
juji / pandoc-svg.py
Created July 22, 2017 19:53 — forked from jeromerobert/pandoc-svg.py
Pandoc filter to create PDF files from SVG
#! /usr/bin/env python
"""
Pandoc filter to convert svg files to pdf as suggested at:
https://github.com/jgm/pandoc/issues/265#issuecomment-27317316
"""
__author__ = "Jerome Robert"
import mimetypes
import subprocess
@juji
juji / server.sh
Last active May 31, 2017 06:37
bash 5 line server
#!/usr/bin/env bash
# usage:
# ./server.sh [port] [response]
#
RESPONSE="HTTP/1.1 200 OK\r\nConnection: keep-alive\r\n\r\n${2:-"OK"}\r\n"
while { echo -en "$RESPONSE"; } | nc -q 0 -l -p "${1:-8080}"; do
echo "================================================"
echo "you can do stuff on request"
@juji
juji / cleanUTF8.js
Last active April 21, 2017 07:43
clean non utf8 character
function cleanUTF8(str){
return str.replace(/[\x00-\x08\x10\x0B\x0C\x0E-\x19\x7F]|[\x00-\x7F][\x80-\xBF]+|([\xC0\xC1]|[\xF0-\xFF])[\x80-\xBF]*|[\xC2-\xDF]((?![\x80-\xBF])|[\x80-\xBF]{2,})|[\xE0-\xEF](([\x80-\xBF](?![\x80-\xBF]))|(?![\x80-\xBF]{2})|[\x80-\xBF]{3,})/g,'')
.replace(/\xE0[\x80-\x9F][\x80-\xBF]|\xED[\xA0-\xBF][\x80-\xBF]/g,'');
}
@juji
juji / getDir.bash
Last active April 7, 2016 06:51
Bash get script directory
SOURCE="$0"
while [ -h "$SOURCE" ]; do
# resolve $SOURCE until the file is no longer a symlink
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
SOURCE="$(readlink "$SOURCE")"
# if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE"
done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
cd "$DIR"
@juji
juji / regexReplace.js
Last active December 10, 2015 05:22
Replace regex special character
function escapeRegExp(str) {
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
}
function toRegex(str,flag){
return new RegExp(escapeRegExp(str),flag);
}