Skip to content

Instantly share code, notes, and snippets.

View adhocore's full-sized avatar
🎯
Focusing

Jitendra Adhikari adhocore

🎯
Focusing
View GitHub Profile
@adhocore
adhocore / qwerty.php
Created December 13, 2015 05:06
map English alphabets to their position in qwerty layout keyboard, and reverse
<?php
/*
* QWERTY encode decode
*
* qwerty_encode maps English alphabets to their
* position in qwerty layout keyboard like so:
* a -> q, b -> w, c -> e ... etc
*
* qwerty_decode does the reverse
@adhocore
adhocore / maqebot.php
Last active October 8, 2017 11:22
Maqe Bot (PHP7). Sample usage: `php maqebot.php W5RW5RW2RW1R`
<?php
/**
* The Bot.
*/
class Bot
{
const DIR_NORTH = 0;
const DIR_EAST = 1;
const DIR_SOUTH = 2;
@adhocore
adhocore / git-branch.md
Created May 15, 2019 04:20
Get current git branch without using `git` command
cat .git/HEAD | cut -c17-9999

Useful if you are in docker and dont want to install git in your container :)

@adhocore
adhocore / bigcache.go
Last active April 30, 2024 09:51
BigCache Server using fasthttp
package main
import (
"context"
"flag"
"fmt"
"log"
"os"
"strconv"
"strings"