Skip to content

Instantly share code, notes, and snippets.

View Sharique55's full-sized avatar
πŸŽ–οΈ
Working on a Plan

Sharique Hussain Sharique55

πŸŽ–οΈ
Working on a Plan
View GitHub Profile
@Sharique55
Sharique55 / github-codespaces-setup-guide.md
Created June 19, 2025 05:27
A practical, step-by-step guide to setting up, customizing, and launching GitHub Codespaces with devcontainer templates, Dockerfile setups, onboarding automation, and best practices. Perfect for supercharging repo onboarding and remote dev productivity!

πŸš€ Ultimate Guide: Creating Your Own GitHub Codespace Configuration

A practical step-by-step guide to setting up, customizing, and launching GitHub Codespaces for any project! Perfect for onboarding, productivity, and cloud-powered dev environments.


πŸ“„ Description

This gist gives you a hands-on, beginner-to-advanced walkthrough for setting up your own GitHub Codespace configuration. Includes: core concepts, devcontainer templates, real-world code snippets, troubleshooting, and pro tips to make your repo stand outβ€”and onboard anyone in minutes!

@Sharique55
Sharique55 / SSL_Print_Certificate_Comparison_Guide.md
Created June 18, 2025 18:07
A practical guide to SSL certificate inspection and comparison! Learn how to print SSL certificate details, decode fields, and securely compare certs using OpenSSL, keytool, and bash. Perfect for sysadmins, DevOps, and security engineers.

πŸ›‘οΈ SSL Print & Certificate Comparison Guide

Everything you need to know about printing (displaying) SSL certificate details and comparing two SSL certificates using practical, real-world tools.


1. What is "SSL Print"?

a. There’s No Official β€œSSL Print” Command

@Sharique55
Sharique55 / post-commit-push-githook.md
Last active June 21, 2025 17:53
πŸš€ Instantly push every commit! This Git post-commit hook auto-pushes your branch with zero manual effortβ€”set it and forget it.

πŸš€ Automatic Post-Commit Push Git Hook (for branch feature01)

A smart, ready-to-use post-commit Git hook that automatically pushes your commits to GitHub whenever you commit on your chosen branch!


🌟 What is this?

This is a Bash script for a Git post-commit hook.
Whenever you make a commit on your feature01 branch, the hook will automatically trigger a push to your corresponding remote (origin/feature01).

@Sharique55
Sharique55 / Awesome-bash-scripting-cheatsheet.md
Created June 17, 2025 13:18
A comprehensive and deeply detailed Bash scripting cheatsheet covering all essential topics, categories, and examples.

🐧 Ultimate Bash Scripting Cheatsheet

πŸš€ A comprehensive and deeply detailed Bash scripting cheatsheet covering all essential topics, categories, and examples.

Category Command/Concept Description Syntax/Example
Basic Syntax #!/bin/bash Shebang to specify the interpreter to use for the script #!/bin/bash
Comments Add comments to code
@Sharique55
Sharique55 / ultimate-docker-cheatsheet.md
Last active June 21, 2025 17:54
Awesome Docker Cheatsheet: Comprehensive Quick Reference for Developers
@Sharique55
Sharique55 / Building-Software-using-OpenAI-Codex.md
Created June 15, 2025 16:16
πŸš€ Ultimate step-by-step guide to building software using OpenAI Codex β€” includes code samples, workflows, best practices, and VS Code integrations! Perfect for AI-assisted development beginners & pros! πŸ”₯

🧠 How to Build Software Using OpenAI Codex – Step-by-Step Guide

A full-blown guide to building complete software projects using OpenAI's Codexβ€”step by step. From setting up the API to generating, testing, and deploying code using Codex (via Playground, API, or GitHub Copilot).


πŸ“˜ What is OpenAI Codex?

OpenAI Codex is a large language model by OpenAI, specialized in code generation. It powers:

@Sharique55
Sharique55 / πŸš€_Eclipse_IDE_Tips_Tricks_Concepts_for_Java_Developers.md
Last active June 21, 2025 17:54
πŸ”₯ The Ultimate Collection of Eclipse IDE Power Techniques (Top 70) β€” Boost Productivity, Master Shortcuts, Debug Like a Pro, and Customize Like a Wizard! ✍️ Perfect for Java Developers, Students, and Professionals. πŸš€ Star this if Eclipse is your coding superpower!

πŸŒ“ Eclipse IDE Tips, Tricks, and Concepts for Java Developers

πŸš€ A complete arsenal of productivity hacks, shortcuts, techniques, and powerful features that every Eclipse IDE user should know. πŸ”₯ Master these and turn Eclipse into your ultimate development battlefield!


πŸ“š Table of Contents

  1. Code Templates
@Sharique55
Sharique55 / svn-commands-cheatsheet.md
Created June 15, 2025 15:41
πŸ“ A complete and beautifully formatted SVN (Subversion) Command Cheat Sheet with detailed explanations and examples β€” perfect for beginners and professionals managing legacy repositories.

πŸ› οΈ SVN Commands Cheat Sheet - Explained with Examples

A comprehensive guide to mastering SVN (Subversion) version control β€” with essential commands, syntax, and practical examples for real-world use.


πŸ“¦ 1. svn checkout

Clone or fetch a working copy from the repository.

@Sharique55
Sharique55 / ultimate-ssh-cheat-sheet.md
Last active June 21, 2025 17:53
πŸ” Awesome SSH Mastery Cheat Sheet β€” Every Command, Tip, and Trick You’ll Ever Need!

πŸ” Ultimate SSH Mastery Cheat Sheet

A developer's one-stop shop for all things SSH β€” commands, configurations, flags, forwarding, tunneling, and more.

πŸ’‘ Pro Tip: Bookmark this page or clone it locally. It’s that useful.


πŸ”§ Table of Contents

@Sharique55
Sharique55 / πŸ”₯JSON-Cheatsheet-Ultimate.md
Created May 29, 2025 09:46
πŸš€ The Ultimate JSON Cheatsheet – Everything You Need to Know About JSON

πŸš€ The Ultimate JSON Cheatsheet – Everything You Need to Know About JSON

πŸ’‘ A complete JSON reference in table format: structure, data types, syntax rules, validation, and real-world applications.


Category Subcategory Description Example
Basics JSON Definition Lightweight format for data-interchange, easy to read and write. { "key": "value" }
Structure Built on key-value pair