Posts in 2023
Demystifying Hugo Shortcodes: Your Ultimate Guide
Last Update: in Hugo
Demystifying Hugo Shortcodes: Your Ultimate Guide. A list of useful hugo shortcodes.
What is Hugo Hugo is one of the most popular open-source static site generators. With its amazing speed and flexibility, Hugo makes building websites fun again. If you’re a web developer or a blogger using Hugo, you’ve probably heard of …
How to Parse URLs in Python: A Comprehensive Guide with Examples
Last Update: in Python
How to Parse URLs in Python: A Comprehensive Guide with Examples
Parsing URLs (Uniform Resource Locators) is a common task in web development and data processing. URLs are the addresses that identify resources on the internet, such as web pages, images, and documents. Python provides powerful libraries and tools …
Direct Download Link for All Xcode Releases/Beta, Compilers and SDK Information
Last Update: in iOS
Xcode releases history download link and build info.
This page contains the complete Xcode release history, including the download link, release notes, compiler information, SDK version details, and system requirements for macOS installation. Additionally, you can find download links for XIP and DMG …
Guide: Jailbreaking Apple TV 4K
Last Update: in iOS
Guide: Jailbreaking Apple TV 4K
Introduction to Jailbreaking Apple TV 4K Jailbreaking the fourth and fifth-generation Apple TVs is a slightly different process due to the distinct operation of tvOS compared to traditional Apple TV software. It’s important to note that the …
The latest ISO 3166 country codes JSON with alpha-2, alpha-3 and country name
Last Update: in Posts
The latest ISO 3166 country codes with alpha-2, alpha-3 and country name in JSON. Free to download and ready to use in code.
What is ISO 3166 country code ISO 3166 is a standard published by the International Organization for Standardization (ISO) that defines codes for the names of countries, dependent territories, special areas of geographical interest, and their …
iOS Security: App security in iOS and iPadOS - code signing, entitlement and sandbox etc.
Last Update: in iOS
iOS Security: App security in iOS and iPadOS - code signing, entitlement and sandbox etc.
App security overview for iOS and iPadOS Unlike other mobile platforms, iOS and iPadOS don’t allow users to install potentially malicious unsigned apps from websites or to run untrusted apps. At runtime, code signature checks that all executable …
Hugo: How to escape shortcode in markdown
Last Update: in Hugo
Hugo: How to escape shortcode in markdown to display as literal text.
Problem with shortcode like text in Hugo markdown In Hugo markdown, if you have some text wrapped by curly brackets likes following: Today: {{%m%d%y}} You will receive an error similar to the following: Error: Error building site: …
Tips on Use Swift Package Manager (SPM) with Continuous Integration / Delivery (CI/CD)
Last Update: in iOS
Tips and Troubleshooting Use Swift Package Manager (SPM) with Continuous Integration / Delivery (CI/CD).
Introduction Continuous integration (CI) is the process of automating and streamlining the building, analyzing, testing, archiving, and publishing of your apps to ensure that they’re always in a releasable state. Resolve Package Dependencies …
Jailbreak iPhone 8 iOS 16.2 with palera1n and use frida dump to decrypt ipa
Last Update: in iOS
Jailbreak iPhone 8 iOS 16.2 with troubleshooting info. Then use frida dump to decrypt ipa.
Types of Jailbreaks Tethered The device must be booted using a computer every time, otherwise it won’t boot at all. This type of jailbreak is uncommon. e.g.: 4039 blackra1n Semi-tethered The device must be jailbroken using a computer every …
Posts in 2022
Use frida and objection to penetration test iOS app security
Last Update: in iOS
A quick and detail guide with examples about how to use frida and objection to penetration test your iOS app security without a jailbroken device. A quick cheat sheet of objection usage examples on iOS.
Introduction What is frida? frida is a dynamic code instrumentation toolkit. It lets you inject snippets of JavaScript or your own library into native apps on Windows, macOS, GNU/Linux, iOS, Android, and QNX. Frida also provides you with some simple …