Skip to content

Instantly share code, notes, and snippets.

View Elvmeen's full-sized avatar
💭
💪

Aminu Muhammad Elvmeen

💭
💪
View GitHub Profile
@Elvmeen
Elvmeen / MadLibbyAminu.py
Created April 14, 2025 21:25
This is a MadLib Game in Pythin by Aminu M.
import random
import time
def display_welcome():
print("\n" + "=" * 50)
print("WELCOME TO THE QUIRKY MADLIB GENERATOR!".center(50))
print("=" * 50)
print("\nLet's create a hilarious story together!")
print("Just answer a few quick questions and I'll generate something absurd!")
print("-" * 50)
@Elvmeen
Elvmeen / officebypass.bat
Created March 19, 2025 18:33
ModifiedOfficerBypass(2019)
@echo off
:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
@Elvmeen
Elvmeen / officeActivator.bat
Created March 19, 2025 18:27 — forked from mndambuki/officeActivator.bat
Activate Microsoft Office 2019
@echo off
title Activate Microsoft Office 2019 !
cls
echo ============================================================================
echo #Project: Activating Microsoft software products
echo ============================================================================
echo.
echo #Supported products:
echo - Microsoft Office Standard 2019
echo - Microsoft Office Professional Plus 2019
@Elvmeen
Elvmeen / crawler.go
Created January 9, 2025 20:05 — forked from hacktivist123/crawler.go
A simple web crawler
package main
import (
"bytes"
"crypto/tls"
"fmt"
"log"