Skip to content

Instantly share code, notes, and snippets.

View julianxhokaxhiu's full-sized avatar
🚀
Impossible Is Nothing.

Julian Xhokaxhiu julianxhokaxhiu

🚀
Impossible Is Nothing.
View GitHub Profile
@julianxhokaxhiu
julianxhokaxhiu / Makefile
Last active May 13, 2023 22:39
Quickly publish online a localhost tunnel using tunnel.pyjam.as and a Makefile
View Makefile
###############################################################################
# ENVIRONMENT CONFIGURATION
###############################################################################
MAKEFLAGS += --no-print-directory
SHELL=/bin/bash
# Use default as default goal when running 'make'
.PHONY: default
.DEFAULT_GOAL := default
@julianxhokaxhiu
julianxhokaxhiu / DisableMicrosoftEdgeHubsSidebar.mobileconfig
Last active March 16, 2023 09:18
Hide the Edge 111 Bing toolbar icon on Windows and Mac
View DisableMicrosoftEdgeHubsSidebar.mobileconfig
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PayloadContent</key>
<array>
<dict>
<key>HubsSidebarEnabled</key>
<false/>
<key>PayloadDisplayName</key>
@julianxhokaxhiu
julianxhokaxhiu / create-iso.sh
Created October 31, 2022 12:31
Simple bash script to create a Bootable ISO from macOS Ventura Install Image from Mac App Store
View create-iso.sh
#!/usr/bin/env bash
#===========================================================================
# Works only with the official image available in the Mac App Store.
# Make sure you download the official installer before running this script.
#===========================================================================
# Change this at your desire. Sometimes this works out of the box, sometimes not.
# Default size: ~16 GB
DISK_SIZE="15361m"
@julianxhokaxhiu
julianxhokaxhiu / jenkins-start-maintenance.groovy
Created July 27, 2022 10:08
Put Jenkins in maintenance mode ( prevent new jobs to be run, hold them in queue )
View jenkins-start-maintenance.groovy
import jenkins.model.Jenkins;
// Start Jenkins in maintenance mode
Jenkins.instance.doQuietDown();
@julianxhokaxhiu
julianxhokaxhiu / README.md
Last active April 18, 2023 14:04
Windows 11 22H2 - Create local account on first boot and other useful tricks
View README.md
@julianxhokaxhiu
julianxhokaxhiu / Dockerfile
Last active June 16, 2022 15:09
Docker compose example project with proxy support
View Dockerfile
FROM alpine:latest
@julianxhokaxhiu
julianxhokaxhiu / README.md
Created May 24, 2022 10:53
OnePlus 5 (cheesebuger) ih8sn.conf
View README.md
@julianxhokaxhiu
julianxhokaxhiu / create-iso.sh
Last active June 18, 2023 08:11
Simple bash script to create a Bootable ISO from macOS Monterey Install Image from Mac App Store
View create-iso.sh
#!/usr/bin/env bash
#===========================================================================
# Works only with the official image available in the Mac App Store.
# Make sure you download the official installer before running this script.
#===========================================================================
# Change this at your desire. Sometimes this works out of the box, sometimes not.
# Default size: ~16 GB
DISK_SIZE="15361m"
@julianxhokaxhiu
julianxhokaxhiu / create-iso.sh
Last active June 18, 2023 08:11
Simple bash script to create a Bootable ISO from macOS Big Sur Install Image from Mac App Store
View create-iso.sh
#!/usr/bin/env bash
#===========================================================================
# Works only with the official image available in the Mac App Store.
# Make sure you download the official installer before running this script.
#===========================================================================
# Change this at your desire. Sometimes this works out of the box, sometimes not.
# Default size: ~13.5 GB
DISK_SIZE="13000m"
@julianxhokaxhiu
julianxhokaxhiu / PrintBootCampESDInfo.swift
Created September 22, 2020 20:56 — forked from nuomi1/PrintBootCampESDInfo.swift
macOS and BootCamp Latest
View PrintBootCampESDInfo.swift
#!/usr/bin/env swift
//
// REPL.swift
//
// Created by nuomi1 on 8/5/18.
// Copyright © 2018年 nuomi1. All rights reserved.
//
import Foundation