import 'dart:typed_data'; | |
void main() { | |
final testData = List.filled(1000000, 1); | |
final uint8List = Uint8List.fromList(testData); | |
final sw1 = Stopwatch()..start(); | |
final result1 = Stream.value( | |
List<int>.from(uint8List), | |
); |
I'm Burrito. You may know me from making AuthKit, AppDefense, Wander, or some other projects like my jailbreak guides. I'm one of the youngest people in the jailbreak community, and probably one of the youngest tool creators. Today, I would like to share some harsh experiences I've had, and why I am leaving the community.
For starters, I should mention that my experience only applies to the r/Jailbreak Discord community. Also, I should mention that you should read everything. There is no tl;dr, and the people who actually read the entire message with a serious mind would earn lots of respect and trust from me. I know this message will surface to r/Jailbreak's Discord, in one way or another, and I know people will skim over this, and I know that many people will not agree. I also know, in the terms of the r/Jailbreak Discord, that I will get a lot of "who the **** asked" and "who cares" jokes and comments. I also strongly know that the staff of the server will mock and meme this writing I ma
#!/usr/bin/env zsh | |
set -e; | |
set +m; # Job control would've been nice, but manual round robin it is, sigh. | |
if [ -z "${ZSH_VERSION+x}" ]; then | |
echo 'Try again with zsh.'; | |
exit 1; | |
fi; |
.....[copy from local to vps using ssh] | |
sudo scp file_name user@ip:/home/$USER/ | |
.....[copy from vps to local using rsync excluding .git folder] | |
rsync -av -e ssh --exclude='.git' [email protected]:/home/cds/cds2_cockpitBackend/ /home/wildonion/Documents/cds_backend_backup | |
.....[jekyll installation] | |
https://jekyllrb.com/docs/installation/ubuntu/ |
#!/bin/sh | |
# | |
# File: macos-installer-to-iso.sh | |
# | |
# Create a bootable ISO image from a macOS installer to install VMware ESXi guests. | |
# | |
# https://gist.github.com/Kutkovsky/613e29f35d3ef420b23b59ecdf7a28e0 | |
# Debug on: set -x | |
set -eux |
#! /bin/bash | |
# Simple Utility Script for allowing debug of hardened macOS apps. | |
# This is useful mostly for plug-in developer that would like keep developing without turning SIP off. | |
# Credit for idea goes to (McMartin): https://forum.juce.com/t/apple-gatekeeper-notarised-distributables/29952/57?u=ttg | |
# Update 2022-03-10: Based on Fabian's feedback, add capability to inject DYLD for sanitizers. | |
# | |
# Please note: | |
# - Modern Logic (on M1s) uses `AUHostingService` which resides within the system thus not patchable and REQUIRES to turn-off SIP. | |
# - Some hosts uses separate plug-in scanning or sandboxing. | |
# if that's the case, it's required to patch those (if needed) and attach debugger to them instead. |
tvOS 10: 1080p + H.264 | |
http://a1.phobos.apple.com/us/r1000/000/Features/atv/AutumnResources/videos/entries.json | |
tvOS 11: 1080p/4K + SDR/HDR + HEVC | |
https://sylvan.apple.com/Aerials/2x/entries.json | |
https://t27q97zg19.execute-api.us-east-1.amazonaws.com/prod/aerialAltJSON/4kEntites.json | |
tvOS 12: 4K + SDR/HDR + HEVC, 1080p + H.264, localised descriptions | |
https://sylvan.apple.com/Aerials/resources.tar |
#!/usr/bin/env python3 | |
import os | |
import mmap | |
import argparse | |
from collections import OrderedDict | |
__title__ = "Z-Link Firmware Tools" | |
__version__ = "0.1" | |
__author__ = "Gareth Bryan" | |
__license__ = "MIT" |