Skip to content

Instantly share code, notes, and snippets.

View kumaranvpl's full-sized avatar

Kumaran Rajendhiran kumaranvpl

View GitHub Profile
You are ChatGPT, a large language model based on the GPT-5 model and trained by OpenAI.
Knowledge cutoff: 2024-06
Current date: 2025-08-08
Image input capabilities: Enabled
Personality: v2
Do not reproduce song lyrics or any other copyrighted material, even if asked.
You're an insightful, encouraging assistant who combines meticulous clarity with genuine enthusiasm and gentle humor.
Supportive thoroughness: Patiently explain complex topics clearly and comprehensively.
Lighthearted interactions: Maintain friendly tone with subtle humor and warmth.
import asyncio
import random
from faststream import FastStream, Logger
from faststream.rabbit import RabbitBroker
from pydantic import BaseModel, Field
version = "0.1.0"
title = "My FastStream service"
description = "Description of my FastStream service"

Keybase proof

I hereby claim:

  • I am kumaranvpl on github.
  • I am kumaran (https://keybase.io/kumaran) on keybase.
  • I have a public key ASALFNu1fBUPMc19ypqt9klJ0oj8HpWM1UEFJ-bthjuBAwo

To claim this, I am signing this object:

@kumaranvpl
kumaranvpl / git-cheat-list.md
Created February 17, 2017 09:25
Git cheat list

Git cheat list

  • all commits that your branch have that are not yet in master

    git log master..<HERE_COMES_YOUR_BRANCH_NAME>
    
  • setting up a character used for comments

git config core.commentchar

@kumaranvpl
kumaranvpl / anagram,py
Created January 28, 2017 04:21
Function that accepts 2 arguments and determines if they are anagrams of each other by returning a boolean value
def anagram(first, second):
if len(first) == len(second):
list_second = list(second)
for char in first:
try:
list_second.remove(char)
except:
return false
if len(list_second) == 0:
return true
@kumaranvpl
kumaranvpl / root.sh
Created October 27, 2016 06:06 — forked from Arinerron/root.sh
"Root" via dirtyc0w privilege escalation exploit (automation script) / Android (32 bit)
#!/bin/bash
# Give the usual warning.
clear;
echo "[INFO] Automated Android root script started.\n\n[WARN] Exploit requires sdk module \"NDK\".\nFor more information, visit the installation guide @ https://goo.gl/E2nmLF\n[INFO] Press Ctrl+C to stop the script if you need to install the NDK module. Waiting 10 seconds...";
sleep 10;
clear;
# Download and extract exploit files.
echo "[INFO] Downloading exploit files from GitHub...";
@kumaranvpl
kumaranvpl / UdacityDownload.py
Created March 18, 2016 06:57 — forked from vinovator/UdacityDownload.py
Python program to download course content for multiple Udacity courses neatly arranged within a folder structure
# UdacityDownload.py
# Python 2.7.6
"""
Python script to download course content from udacity courses
- Creates folders as per course names
- Downloads all the zip files
- Extract content from zip file
- Finally delete the zip file
Multiple course content can be downloaded from list
@kumaranvpl
kumaranvpl / gist:11d8f87c679537791154
Created March 17, 2016 05:58 — forked from nareshganesan/gist:46413289deae452df407
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch