Skip to content

Instantly share code, notes, and snippets.

View kishannareshpal's full-sized avatar
🌓
I didn't expect to find myself living in the future. But here I fucking am.

Kishan Jadav kishannareshpal

🌓
I didn't expect to find myself living in the future. But here I fucking am.
View GitHub Profile
@kishannareshpal
kishannareshpal / postman-pre-req-script.js
Last active March 21, 2022 20:56
Strip comments from Postman requests with Raw JSON body.
/**
* What is this?
* - If you try to comment stuff when requesting using a Raw JSON body,
* you'll know that it will most likely fail, as the request is sent with your
* comments bit included.
* This script is supposed to intercept your request body and strip every comment
* it has and then apply the sanitized body to the request, so you can comment
* all you want inside Postman JSON request body.
*
* How to use it?
@kishannareshpal
kishannareshpal / getArrayDepth.js
Created October 21, 2021 21:35
Get the depth of an array
/**
* Returns the depth of an array
* - Useful in {@link Array#flat}
*
* @param {Array} array Array to check it's depth
* @param {number} startingDepth Starting depth count
*
* @returns {number} the depth of an array
*/
function getArrayDepth(array, startingDepth = 0) {
@kishannareshpal
kishannareshpal / activatevenv.plugin.README.md
Last active February 23, 2025 08:11
Automatically activate python virtual environment when changing directory. In other words, it does `source ./venv/bin/activate` for you!

This is a custom shell script I wrote in order to ease my workflow when dealing with Python Virtual Environments.

Installation

Download the activatevenv.plugin.sh into your computer.

oh-my-zsh

  1. Download the script into $ZSH_CUSTOM/plugins/<plugin_name>/activatevenv/. See oh-my-zsh Plugin Customization Wiki
  # Use curl or download manually from https://git.io/JLBHr
  (mkdir activatevenv; cd activatevenv) && curl -L --url https://git.io/JLBHr --output ./activatevenv/activatevenv.plugin.zsh
@kishannareshpal
kishannareshpal / publishMavenBintray.gradle
Created September 28, 2020 22:09 — forked from gsavvid/publishMavenBintray.gradle
Gradle script for publishing Android Kotlin libraries to a Bintray repository using maven-publish plugin. With dependencies (also handling transitive: false and custom exclude rules), including sources and javadoc.
/**
* Publish Android Kotlin Library Helper
*
* This Gradle script is based on https://gist.github.com/Robyer/a6578e60127418b380ca133a1291f017.
* The difference is that:
* 1. It uses Dokka for generating Kotlin Javadoc.
* 2. It uses Jfrog's plugin for publishing to Bintray. If you don't want to publish to Bintray, simply remove all the Bintray-related code.
*
* NOTE: You need to add Dokka and Bintray to your classpath for the two plugins to work.
* Update the buildscript in your project's build.gradle with the following:
@kishannareshpal
kishannareshpal / AnimationUtils.java
Created March 8, 2020 17:56
Animation Utilities Class for Android Java.
package com.kishannareshpal.examescomponents;
import android.view.animation.AccelerateDecelerateInterpolator;
public class AnimationUtils {
// Text View utils
public static class TextView {
/**
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- google's material design colours from
http://www.google.com/design/spec/style/color.html#color-ui-color-palette -->
<!--reds-->
<color name="md_red_50">#FFEBEE</color>
<color name="md_red_100">#FFCDD2</color>
<color name="md_red_200">#EF9A9A</color>