Write-Up for a chance at a persistent APNonce, even after a full restore.
Credits:
- Sloopie
- Ava#0152
- Tanbeer
| When Run: | |
| Install Odysseyra1n |
| import os | |
| import platform | |
| arch_type = platform.uname() | |
| arm64 = False | |
| if 'arm64' in platform.uname(): | |
| print("arm64 detected (M1 probably)") | |
| arm64 = True | |
| else: |
| import java.util.Arrays; | |
| import java.util.Collection; | |
| import java.util.Collections; | |
| public class Main { | |
| public static void main(String[] args) { | |
| // write your code here | |
| int[] nums = new int[]{801, 7317, 3946, 240, 9935, 4293, 7260, 3414, 1533, 786, 6297, 3946, 4355, 2535, 4919}; |
| import time | |
| # Write a program for a McDonalds Happy Meal ordering app | |
| # At the end of the program, it should print out something like this | |
| # | |
| # Happy Meal 1 wants nuggets, fries, juice and doll | |
| # Happy Meal 2 wants cheeseburger, fruit, juice and car | |
| # Happy Meal 3 wants cheeseburger, fries, soda and car | |
| # The total cost is 15 dollars | |
| # |
Write-Up for a chance at a persistent APNonce, even after a full restore.
Credits:
| function sleep( sleepDuration ){ | |
| var now = new Date().getTime(); | |
| while(new Date().getTime() < now + sleepDuration){ /* do nothing */ } | |
| } | |
| function gc() { | |
| for (let i = 0; i < 0x10; i++) { | |
| new ArrayBuffer(0x1000000); | |
| } | |
| } | |
| let data_view = new DataView(new ArrayBuffer(8)); |