Skip to content

Instantly share code, notes, and snippets.

View sajjadjaved01's full-sized avatar
🏠
Working from home

Sajjad Javed sajjadjaved01

🏠
Working from home
View GitHub Profile
@d4kr
d4kr / createinstallmedia.md
Created October 16, 2022 14:45 — forked from windyinsc/createinstallmedia.md
Create a bootable installer for macOS

Create a bootable installer for macOS

The following instructions were predominantly sourced via this Apple Support Document.

With macOS, you can use a USB flash drive or other removable media as a startup disk from which to install macOS. These advanced steps are intended primarly for system administrators and others who are familiar with the command line.

The final executable command(s) are found within Section III. Final macOS Executable Commands labled as Full Example or Full Example w/Options. I personally use the w/Options command which include both the --nointeraction and &&say Installation commands.

I. Overview

import 'dart:async';
import 'dart:math' as math;
import 'package:flutter/material.dart';
class SwipeCard extends StatefulWidget {
final Widget child;
final void Function(DragStartDetails details)? onSwipeStart;
@IntergalacticApps
IntergalacticApps / make_windows10_great_again.bat
Last active May 6, 2025 17:39
Make Windows 10 Great Again - stop Windows 10 spying!
@echo off
setlocal EnableDelayedExpansion
ver | find "10." > nul
if errorlevel 1 (
echo Your Windows version is not Windows 10... yet. Brace yourself, Windows 10 is coming^^!
pause
exit
)