Skip to content

Instantly share code, notes, and snippets.

View DnyaneshwarWagh's full-sized avatar
🎯
Focusing

Dnyaneshwar Wagh DnyaneshwarWagh

🎯
Focusing
  • 63moons Technologies
  • Mumbai, India
  • X @idrwagh
View GitHub Profile
@DnyaneshwarWagh
DnyaneshwarWagh / README.md
Created October 11, 2023 18:48 — forked from h4ckerman69/README.md
UPDD escape

Tested with UPDD_07_01_59.dmg, but should work with newer versions as well.

Download latest version: touch-base.com (please use temporary email) 100% working download: youtube.com/watch?v=odqYsHNl6qM Please download with github.com/KristianAskk/Infinite-Storage-Glitch.

Instructions

  1. install and start UDPP (with all the steps needed for setup). Use a temporary email address while allowing internet connections until the software works in test mode.
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = grantdavis
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = YES
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
@DnyaneshwarWagh
DnyaneshwarWagh / teamviewer_change_id.py
Last active May 5, 2021 07:24 — forked from BirkhoffLee/teamviewer_change_id.py
Change the ID of Teamviewer for macOS to circumvent "commercial use detected"
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
import sys
import platform
import re
from pathlib import Path
from uuid import uuid4
print('Change ID of Teamviewer for macOS')
@DnyaneshwarWagh
DnyaneshwarWagh / youtube-dl_playlist.py
Last active December 22, 2020 17:46
Download Playlist Using Youtube-DL
#!/usr/bin/env python3
import argparse
import base64
import os
import re
import subprocess
parser = argparse.ArgumentParser()
parser.add_argument('-i', '--url-list', help='List of URL/filename pairs, delimited by tabs')
args = parser.parse_args()
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Font
:set guifont=Source\ Code\ Pro:h14
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Hide pointless junk at the bottom, doesn't work in .vimrc for some reason?
:set laststatus=0
:set noshowmode "don't show --INSERT--
:set noruler "don't show line numbers/column/% junk
@DnyaneshwarWagh
DnyaneshwarWagh / Key_starUML.md
Created April 25, 2020 16:10 — forked from danielquisbert/Key_starUML.md
Key para starUML
@DnyaneshwarWagh
DnyaneshwarWagh / StarUml-V3.md
Created April 25, 2020 16:08 — forked from danteay/StarUml-V3.md
Active StarUml 3 license
@DnyaneshwarWagh
DnyaneshwarWagh / starUML.md
Created April 25, 2020 16:08 — forked from trandaison/starUML.md
Get full version of StarUML
conf nginx with rtmp module
#### Command
brew tap denji/nginx
brew options nginx-full
brew info nginx-full
brew install nginx-full --with-rtmp-module --with-debug
@DnyaneshwarWagh
DnyaneshwarWagh / simulator_populator_xcode10-11.rb
Last active July 4, 2019 19:18
Simulator Populator for Xcode-10 and Xcode-11
#!/usr/bin/env ruby
require 'JSON'
device_types = JSON.parse `xcrun simctl list -j devicetypes`
runtimes = JSON.parse `xcrun simctl list -j runtimes`
devices = JSON.parse `xcrun simctl list -j devices`
#=begin
devices['devices'].each do |runtime, runtime_devices|