Skip to content

Instantly share code, notes, and snippets.

View touhidshaikh's full-sized avatar
💭
I may be slow to respond.

Touhid M Shaikh touhidshaikh

💭
I may be slow to respond.
View GitHub Profile
{
"url":"https://gist.githubusercontent.com/touhidshaikh/35e1107deb0b06b675f2cee41fe464e2/raw/6e23d218e379b9cc82f8678499f6c6b6b7ca2104/swg.yaml"
}
[
{
"title": "Registry",
"name": "",
"image": "registry:latest",
"description": "Docker image registry",
"categories": [
"docker"
],
"platform": "linux",
This file has been truncated, but you can view the full file.
function Invoke-Mimatouhid
{
[CmdletBinding(DefaultParameterSetName="Dumptouhid")]
Param(
[Parameter(Position = 0)]
[String[]]
$ComputerName,
@touhidshaikh
touhidshaikh / vmware-gcc-fix.sh
Created December 10, 2020 13:41
VMWare GNU C Compiler (GCC) version 4.9.2 was not found issue fixed
#!/bin/bash
#Install Kernel Headers
sudo apt-get install build-essential linux-headers-generic
#Fixing the GCC issue.
cd /usr/lib/vmware/modules/source
sudo tar xvf vmnet.tar
cd vmnet-only
sudo make
@touhidshaikh
touhidshaikh / wp-installer.sh
Created September 12, 2020 11:16
Automatically Wordpress Installer
#!/bin/bash -e
clear
echo "============================================"
echo "WordPress Install Script"
echo "============================================"
echo "Database Name: "
read -e dbname
echo "Database User: "
read -e dbuser
echo "Database Password: "
@touhidshaikh
touhidshaikh / tmux-cheatsheet.markdown
Created December 29, 2017 21:39 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname