Make an iTunes encrypted backup which contains the Keychain, where Tofu stores all the tokens.
You'll need irestore for decrypting the keychain. Use it like this:
irestore iPhone dumpkeys dump.txt
Make an iTunes encrypted backup which contains the Keychain, where Tofu stores all the tokens.
You'll need irestore for decrypting the keychain. Use it like this:
irestore iPhone dumpkeys dump.txt
For some reason, it is surprisingly hard to create a bootable Windows USB using macOS. These are my steps for doing so, which have worked for me in macOS Monterey (12.6.1) for Windows 10 and 11. After following these steps, you should have a bootable Windows USB drive.
You can download Windows 10 or Windows 11 directly from Microsoft.
After plugging the drive to your machine, identify the name of the USB device using diskutil list
, which should return an output like the one below. In my case, the correct disk name is disk2
.
This text is the section about OS X Yosemite (which also works for macOS Sierra) from https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/#mac-os-x
The last time i visited this link it was dead (403), so I cloned it here from the latest snapshot in Archive.org's Wayback Machine https://web.archive.org/web/20170523131633/https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/
telegram-scripts.js
into JS consoleshowContacts()
to get the list of contacts with idssaveChat(userId)
where userId
is the id from step 3Process can take a while, check console for progress. Occasionall FLOOD_WAIT
errors are expected. Once done, browser will download the JSON file.
#!/usr/bin/env python3 | |
""" | |
License: MIT License | |
Copyright (c) 2023 Miel Donkers | |
Very simple HTTP server in python for logging requests | |
Usage:: | |
./server.py [<port>] | |
""" | |
from http.server import BaseHTTPRequestHandler, HTTPServer |
# See https://docs.oracle.com/javase/8/docs/technotes/tools/windows/java.html | |
# See https://docs.oracle.com/javase/8/docs/technotes/guides/vm/performance-enhancements-7.html | |
# See https://docs.oracle.com/javase/8/embedded/develop-apps-platforms/codecache.htm | |
# See http://normanmaurer.me/blog_in_progress/2013/11/07/Inline-all-the-Things/ | |
# See http://stas-blogspot.blogspot.com.br/2011/07/most-complete-list-of-xx-options-for.html | |
# -XX:+LogCompilation | |
# -XX:+PrintInlining | |
-Dfile.encoding=UTF-8 |
Located in alphabetical order (not prefer)
C
ab
), also designed as a more modern replacement, written in C
golang
)# Installation | |
brew install ffmpeg --with-vpx --with-vorbis --with-libvorbis --with-vpx --with-vorbis --with-theora --with-libogg --with-libvorbis --with-gpl --with-version3 --with-nonfree --with-postproc --with-libaacplus --with-libass --with-libcelt --with-libfaac --with-libfdk-aac --with-libfreetype --with-libmp3lame --with-libopencore-amrnb --with-libopencore-amrwb --with-libopenjpeg --with-openssl --with-libopus --with-libschroedinger --with-libspeex --with-libtheora --with-libvo-aacenc --with-libvorbis --with-libvpx --with-libx264 --with-libxvid | |
# Easy Peasy | |
ffmpeg -i video.mp4 video.webm |
FROM ubuntu | |
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list | |
RUN apt-get update | |
RUN apt-get upgrade | |
RUN apt-get install -y openssh-server supervisor | |
ADD sshd.conf /etc/supervisor/conf.d/sshd.conf | |
RUN mkdir -p /var/run/sshd |