Skip to content

Instantly share code, notes, and snippets.

View drph4nt0m's full-sized avatar
:octocat:

Rahul Singh drph4nt0m

:octocat:
View GitHub Profile

Keybase proof

I hereby claim:

  • I am drph4nt0m on github.
  • I am drph4nt0m (https://keybase.io/drph4nt0m) on keybase.
  • I have a public key whose fingerprint is 3D73 5187 23B4 4991 582D A476 8B15 568E D9A4 C71C

To claim this, I am signing this object:

#!/bin/bash
# Update/Upgrade
apt-get update -y
apt-get upgrade -y
apt-get dist-upgrade -y
# Kali Everything
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.

@drph4nt0m
drph4nt0m / regex.md
Created June 24, 2024 09:16
Regex Guide

RegEx Instructions

Ever need to make sure some input given by a user follows a certain format? Need to specify exactly what the user can input? Well RegEx (or Regular Expressions) is what you're looking for! That's right! With this simple to understand concept, you (yes you!), can guarantee your desired format for your code!

Table of Contents