Skip to content

Instantly share code, notes, and snippets.

View AVidhanR's full-sized avatar
🔄
Exploring • Experimenting • Repeat

A Vidhan Reddy AVidhanR

🔄
Exploring • Experimenting • Repeat
View GitHub Profile
@AVidhanR
AVidhanR / UsefulPythonScripts.md
Created August 20, 2025 08:44
7 Surprisingly Useful Python Scripts You’ll Use Every Week

“7 Surprisingly Useful Python Scripts You’ll Use Every Week” By KDnuggets

1. Automated File Organizer by Extension

import os
import shutil
from pathlib import Path

base_folder = Path.home() / "Downloads"
folders = {
@AVidhanR
AVidhanR / READMEDeploymentScript.yml
Created July 28, 2025 13:21
This YML script will help to just deploy the website only when the changes are made to the README file.
name: CI (README.md Changes Only)
on:
push:
paths:
- 'README.md'
pull_request:
paths:
- 'README.md'
workflow_dispatch:
@AVidhanR
AVidhanR / LinuxEssentialsKeyterms.md
Last active July 16, 2025 10:20
This file contains the key terms mentioned in the Linux Essentials course that might help me to recall the Linux concepts I've learning from. Thanks to Cisco and NDG for this awesome course.

1.

2.

3. Working with Linux: A Quick Reference Guide

This note provides a brief overview of common applications, programming languages, and concepts frequently encountered when working with Linux.

Web Servers & Related Technologies

cybersecurity 101

the below are the few course links that helped me understand cybersecurity and networking

  1. introduction to cybersecurity [link]
  2. coming soon [link]

...

if you want to explore more courses that are actually freee

  1. cisco networking academy [link]
@AVidhanR
AVidhanR / Frequents.md
Last active December 16, 2024 04:38
The frequents I use the most well, maybe others too. I hope this helps!

git commands that I use the most (well, every one too) - use bash for better experience:

git add . && git commit --allow-empty -m "msg" && git push origin main

wanna get the rainbow effect for you text; add the below:

.rainbow-text {
  background-image: linear-gradient(
    to right,
 #ff0000,
@AVidhanR
AVidhanR / ReactflowJSONSchema.md
Last active December 17, 2024 06:37
Required schema for usage of JSON data circulation.

JSON Schema for required things...

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "appName": {
      "type": "string"
    },
@AVidhanR
AVidhanR / GetGPSLocation.md
Last active October 8, 2024 03:59
Develop a native application that uses GPS location information.

Get GPS Location Information

Develop a native application that uses GPS location information.

  • Create a new project in Android Studio named GPS Location (name should me absolute because in MainActivity.java the imported package name is gpslocation)
  • Add the below XML code in activity_main.xml of your project.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout