I hereby claim:
- I am shalzz on github.
- I am shalzz (https://keybase.io/shalzz) on keybase.
- I have a public key whose fingerprint is 0B07 0D51 4535 885D 87D9 9AEB 27B7 EB19 E6E4 FF30
To claim this, I am signing this object:
@ECHO OFF | |
FOR /l %%n IN (159,1,179) DO ( | |
FOR /D %%d IN (*%%n*) DO ( | |
FOR /L %%a IN (1,1,30) DO ( | |
rename "%%d\*[%%a].jpg" "%%a.jpg" | |
) | |
) | |
) | |
echo DONE!!! | |
@pause |
/* | |
* Copyright (C) 2013 | |
* Shaleen Jain | |
* [email protected] | |
* | |
* PAC File for UPESNET | |
*/ | |
function FindProxyForURL(url, host) { | |
if(isResolvable("proxy.ddn.upes.ac.in")) |
@echo off | |
REM Copyright (C) 2013 | |
REM Shaleen Jain | |
REM [email protected] | |
REM | |
REM Batch file for creating Wifi Hotspot | |
if _%1_==_payload_ goto :payload | |
:getadmin | |
echo %~nx0: elevating self |
import java.io.BufferedInputStream; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.net.Socket; | |
import java.net.UnknownHostException; | |
import java.security.KeyManagementException; | |
import java.security.KeyStore; | |
import java.security.KeyStoreException; | |
import java.security.NoSuchAlgorithmException; | |
import java.security.UnrecoverableKeyException; |
simg2img system.img_sparsechunk.* system.img.raw.tmp | |
offset=`LANG=C grep -aobP -m1 '\x53\xEF' system.img.raw.tmp | head -1 | awk '{print $1 - 1080}'` | |
dd if=system.img.raw.tmp of=system.img.raw ibs=$offset skip=1 |
I hereby claim:
To claim this, I am signing this object:
#cloud-config | |
runcmd: | |
- [ git, clone, https://github.com/shalzz/dotfiles.git ] | |
- [ cd, dotfiles] | |
- [ make, dotfiles] |
From 1d8128e84271e3c02ae2c031c5a09b6e8ab674f2 Mon Sep 17 00:00:00 2001 | |
From: Shaleen Jain <[email protected]> | |
Date: Sat, 23 Jun 2018 15:04:42 +0530 | |
Subject: [PATCH] use ozone-gbm | |
--- | |
PKGBUILD | 6 +++++- | |
1 file changed, 5 insertions(+), 1 deletion(-) | |
diff --git a/PKGBUILD b/PKGBUILD |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
"""Insipired from the Brute force basic http auth script by zed | |
See https://gist.github.com/zed/0a8860f4f9a824561b51 | |
""" | |
from __future__ import print_function | |
import sys | |
import time | |
from base64 import b64encode |