Skip to content

Instantly share code, notes, and snippets.

View ostechnix's full-sized avatar

Senthilkumar Palani ostechnix

View GitHub Profile
@ostechnix
ostechnix / showipaddr.py
Last active December 29, 2023 13:27
Show IP Address - A Python Script to Show Private and Public IP Information in Linux and Unix.
#!/usr/bin/env python
# ------------------------------------------------------------------
# Script Name: showipaddr.py
# Description: A Python Script to display Private and
# Public IP address details in Linux and Unix.
# Website: https://gist.github.com/ostechnix
# Version: 1.0
# Usage: python showipaddr.py
# ------------------------------------------------------------------
@ostechnix
ostechnix / showipaddr.sh
Last active December 29, 2023 12:54
Show IP Address - A BASH Script to Show Private and Public IP Address Information in Linux and Unix.
#!/usr/bin/env bash
# ------------------------------------------------------------------
# Script Name: showipaddr.sh
# Description: A Bash Script to display Private and
# Public IP address details in Linux and Unix.
# Website: https://gist.github.com/ostechnix
# Version: 1.0
# Usage: chmod +x showipaddr.sh
# ./showipaddr.sh
@ostechnix
ostechnix / bashmastree.sh
Created December 25, 2023 08:57
Animated Christmas Tree In Terminal
#!/usr/bin/env bash
# ------------------------------------------------------------------
# Script Name: bashmastree.sh
# Description: A Bash Script to display a
# Christmas tree in Terminal.
# Website: https://gist.github.com/ostechnix
# Version: 1.0
# Usage: chmod +x bashmastree.sh
# ./bashmastree.sh
@ostechnix
ostechnix / cfa.py
Last active November 25, 2023 13:46
Command Frequency Analyzer (CFA) - A simple Python script to display either the most frequently or least frequently used commands in Linux.
import os
from collections import Counter
def get_history_file():
shell = os.path.basename(os.getenv('SHELL'))
if shell == 'bash':
return os.path.expanduser('~/.bash_history'), 'bash'
elif shell == 'zsh':
return os.path.expanduser('~/.zsh_history'), 'zsh'
@ostechnix
ostechnix / nmcli_remote_ip_changer.sh
Created November 2, 2023 12:25
A Bash Script to Assign IP Address to a Remote Linux System via SSH using nmcli Command.
#!/usr/bin/env bash
# ------------------------------------------------------------------
# Script Name: nmcli_remote_ip_changer.sh
# Description: A Bash Script to Assign IP Address to a
# Remote Linux System via SSH using nmcli Command.
# Website: https://gist.github.com/ostechnix
# Version: 1.0
# Usage: chmod +x nmcli_remote_ip_changer.sh
# ./nmcli_remote_ip_changer.sh
@ostechnix
ostechnix / useful_pandas_snippets.md
Created November 1, 2023 07:11 — forked from bsweger/useful_pandas_snippets.md
Useful Pandas Snippets

Useful Pandas Snippets

A personal diary of DataFrame munging over the years.

Data Types and Conversion

Convert Series datatype to numeric (will error if column has non-numeric values)
(h/t @makmanalp)

@ostechnix
ostechnix / tmux.md
Created November 1, 2023 06:20 — forked from andreyvit/tmux.md
tmux cheatsheet

tmux cheat sheet

(C-x means ctrl+x, M-x means alt+x)

Prefix key

The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:

remap prefix to Control + a

@ostechnix
ostechnix / vmwk17key.txt
Created November 1, 2023 05:05 — forked from PurpleVibe32/vmwk17key.txt
Free VMware Workstation Pro 17 full license keys
Install VMWare Workstation PRO 17 (Read it right. PRO!)
Sub to me on youtube pls - PurpleVibe32
if you want more keys - call my bot on telegram. @purector_bot (THE BOT WONT REPLY ANYMORE) - Or: https://cdn.discordapp.com/attachments/1040615179894935645/1074016373228978277/keys.zip - the password in the zip is 102me.
---
This gist can get off at any time.
PLEASE, DONT COPY THIS. IF YOU FORK IT, DONT EDIT IT.
*If you have a problem comment and people will try to help you!
*No virus
*No spam just license key
@ostechnix
ostechnix / dpkg-repo-query.sh
Last active October 31, 2023 08:23
A Bash Script to Check the Availability of a Package in official Debian and Ubuntu Repositories.
#!/usr/bin/env bash
# ------------------------------------------------------------------
# Script Name: dpkg-repo-query.sh
# Description: Checks the availability of a package in official
# Debian and Ubuntu repositories via their websites.
# Website: https://gist.github.com/ostechnix
# Version: 1.0
# Usage: chmod +x dpkg-repo-query.sh
# ./dpkg-repo-query.sh