Skip to content

Instantly share code, notes, and snippets.

View lap00zza's full-sized avatar

Jewel Mahanta lap00zza

View GitHub Profile
@lap00zza
lap00zza / lapzbotAPI.py
Last active July 9, 2016 20:24
lapzbotAPI
# coding=utf-8
"""
LAPZBOT Restful
Handles the inter process communications between Lapzbot and the Console, without having to rely on the database
for Server / User information. This is intended to be run in a thread.
Typical UseCase:
----------------
import lapzbotAPI
@lap00zza
lap00zza / scrapper.js
Last active October 16, 2017 17:27
Scrape anime info from MAL
const h2 = document.querySelectorAll("h2");
const infoH2 = (() => {
for (let i = 0; i < h2.length; i++) {
if (h2[i].innerText === "Information") return h2[i];
}
})();
// holds the elements between the Information (H2) and the next H2
const elList = [];
// start from the element after the H2
let now = infoH2.nextElementSibling;
@lap00zza
lap00zza / Abstract Equality Algorithm.md
Last active November 11, 2017 19:04
Javascripts Abstract Equality Algorithm in tabular form

Abstract Equality Comparison

Consider this expression:

x == y

Then,

Keybase proof

I hereby claim:

  • I am lap00zza on github.
  • I am lapoozza (https://keybase.io/lapoozza) on keybase.
  • I have a public key whose fingerprint is 2CFE 64FF D63F CEEE 3EA4 DD1B ACBB 0D63 AD9D 3A7E

To claim this, I am signing this object:

@lap00zza
lap00zza / defender_scan.sh
Created September 5, 2018 18:56
A simple shell wrapper for Windows Defender (tested with msys2/mintty)
#!/bin/sh
# A simple shell wrapper for Windows Defender
defender_path="/c/Program Files/Windows Defender/MpCmdRun.exe"
if [ $1 == "--help" ]
then
echo "Usage:"
echo " ./defender_scan /full/path/to/file_or_directory"
echo "Note:"
@lap00zza
lap00zza / static-server.js
Created September 26, 2018 20:21
Easily serve all your static files
const http = require("http");
const fs = require("fs");
const path = require("path");
const util = require("util");
const PORT = process.argv[2] || 8080;
const __cwd = process.cwd();
const _access = util.promisify(fs.access);
const _readdir = util.promisify(fs.readdir);
@lap00zza
lap00zza / start_zsh.bat
Created October 2, 2018 07:59
Setting up msys2 zsh on Webstorm can be a bit of a hassle. This script helps out with that. Download it and point terminal to it.
@echo off
set MSYSTEM=MSYS
set MSYS2_PATH_TYPE=inherit
set SHELL=/usr/bin/zsh
set MSYS=winsymlinks:nativestrict
"D:\msys64\usr\bin\zsh.exe" -i --login
@lap00zza
lap00zza / urlify_headings.js
Created October 4, 2018 14:19
Most websites don't add anchors to headings. Its important because you can bookmark it at that spot instead of scrolling all the way down. This bookmarklet helps solve that.
javascript:(document.querySelectorAll("h1[id],h2[id],h3[id],h4[id],h5[id],h6[id]").forEach(x => x.innerHTML = `<a href="#${x.id}">${x.innerHTML}</a>`))
@lap00zza
lap00zza / idgen.js
Last active October 6, 2018 17:52
Quick 'n' dirty id generator
const generateId = (len=16) => {
const allowedRanges = [[48, 57], [65,90], [97, 122]];
let str = "";
let expand = allowedRanges.reduce((acc, each) => {
let [start, end] = each;
let nums = [];
for(let i = start; i <= end; i++) {
nums.push(i);
};
return acc.concat(nums);
@lap00zza
lap00zza / run_node-gyp_windows.md
Last active October 31, 2018 16:13
Getting node-gyp to work on windows can be a bit of a hassle. This gist shows the exact steps.

Steps

  1. Download Visual Studio 2017 with "Desktop development with C++" workload and the default components selected.
  2. Add msbuild to PATH. For me its this directory: D:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin.
  3. Install node-gyp globally: npm i -g node-gyp
  4. Python 2.7
    • Download python2.7
    • Install to C:\Python27
    • Rename python.exe to python2.exe
  • Add C:\Python27 to PATH