Skip to content

Instantly share code, notes, and snippets.

View ostechnix's full-sized avatar

Senthilkumar Palani ostechnix

View GitHub Profile
@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 / 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 / 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 / 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 / debupdate.sh
Created July 11, 2024 10:56
Debupdate - An Interactive Bash Shell Script to Update a Debian-based System
#!/usr/bin/env bash
# ------------------------------------------------------------------
# Script Name: debupdate.sh
# Description: An Interactive Bash Shell Script to
# Update a Debian-based System
# Website: https://gist.github.com/ostechnix
# Version: 1.0
# Usage: sudo ./debupdate.sh
# ------------------------------------------------------------------
@ostechnix
ostechnix / deloldfile.sh
Last active July 11, 2024 11:45
DelOldFile - A Bash Script to Find and Remove all Log Files older than 30 days
#!/usr/bin/env bash
# ------------------------------------------------------------------
# Script Name: deloldfile.sh
# Description: Remove all Log Files older than 30 days
# Website: https://gist.github.com/ostechnix
# Version: 1.0
# Usage: sudo ./deloldfile.sh
# ------------------------------------------------------------------
@ostechnix
ostechnix / txtcwcount.py
Last active August 8, 2024 13:57
Txtcwcount - A Simple Python Script to Count Characters and Words in a Plain Text File.
#!/usr/bin/env python
# ------------------------------------------------------------------
# Script Name: txtcwcount.py
# Description: A Python Script to Count Characters and Words
# in a Plain Text File.
# Website: https://gist.github.com/ostechnix
# Version: 1.0
# Usage: python txtcwcount.py filename
# ------------------------------------------------------------------
@ostechnix
ostechnix / filecp.sh
Created July 11, 2024 11:03
Filecp - A Simple Bash Script to Copy Files from One Location to Another
#!/usr/bin/env bash
# ------------------------------------------------------------------
# Script Name: filecp.sh
# Description: A Bash Script to Copy Files
# Website: https://gist.github.com/ostechnix
# Version: 1.0
# Usage: sudo ./filecp.sh
# ------------------------------------------------------------------
@ostechnix
ostechnix / showipaddr.py
Last active November 14, 2024 03:30
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 / chrootmnt.sh
Created December 30, 2024 09:51
Chrootmnt: A Bash script to mount and unmount /dev inside a chroot environment.
#!/usr/bin/env bash
# ------------------------------------------------------------------
# Script Name: chrootmnt.sh
# Description: A Bash script to mount and unmount /dev
# inside a chroot environment
# Website: https://gist.github.com/ostechnix
# Version: 1.0
# Usage: ./chrootmnt.sh /path/to/chroot command args
# ------------------------------------------------------------------