Skip to content

Instantly share code, notes, and snippets.

View Mnshawaty's full-sized avatar

mohammad alnshawaty Mnshawaty

View GitHub Profile
@Mnshawaty
Mnshawaty / WinMasterBlocker.bat
Created February 24, 2026 21:10 — forked from ph33nx/WinMasterBlocker.bat
Block All Adobe .exe files via Firewall on Windows Using Batch Script | Stop adobe apps to access internet
:: ################################################################
:: ## 🔥 WinMasterBlocker 🔥 #
:: ################################################################
:: # Author: https://github.com/ph33nx #
:: # Repo: https://github.com/ph33nx/WinMasterBlocker #
:: # #
:: # This script blocks inbound/outbound network access #
:: # for major apps like Adobe, Autodesk, Corel, Maxon, #
:: # and more using Windows Firewall. #
:: # #
@Mnshawaty
Mnshawaty / page.tsx
Created February 3, 2024 06:16 — forked from tnarla/page.tsx
Valentine website
"use client";
import { useState } from "react";
export default function Page() {
const [noCount, setNoCount] = useState(0);
const [yesPressed, setYesPressed] = useState(false);
const yesButtonSize = noCount * 20 + 16;
const handleNoClick = () => {
setNoCount(noCount + 1);