- Welcome - Say hi and introduce yourself!
- Guides ⭐ - Must-read resources for all Linux users.
- News - Stay updated with Linux news.
- Announcements - Important community updates.
- Invitation - Invite friends to join.
- Events - Hackathons, meetups, and more.
Discover gists
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"fw": "Watch6,1_7.5_18T567_Restore.ipsw", | |
"file": "LLB.n157s.RELEASE.im4p", | |
"kbag": "ED5083404184FFD4B6B3AC3BAC11784F1523E552FB434250AE9AFAC4D969C017E392277BDB33F73D136ADB74300469F2", | |
"key": "4ab9cec46db6e89b061c2f12cb9a21b3fa659fa9f076afba2377184011250b459c0e55837d04e463d9242e1447f75cdb" | |
}, | |
{ | |
"fw": "Watch6,1_7.5_18T567_Restore.ipsw", | |
"file": "iBEC.n157s.RELEASE.im4p", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* The algorithm is mostly stolen from iBoot source, | |
* cleaned up for the purpose | |
* | |
* TODO: analyze S5L8700X datasheet in order | |
* to understand if UART peripherial is the same, | |
* and if so - clean up this mess | |
*/ | |
#include <stdint.h> |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"fw": "iPad_Fall_2021_15.0.1_19A348_Restore.ipsw", | |
"file": "LLB.j310.RELEASE.im4p", | |
"kbag": "C883D3D32C20E3108DF7BA1BB79F23E2BC848D034A968042E28615B85A490A26CDAA60A0F9F931C8C901AE1C7593C8BF", | |
"key": "793a284aff409d72860e64431e3d6a0e27f0d574ac4d4053628a7266ed5bd051eb6d06dde0acd5b9730ed874e136ed00" | |
}, | |
{ | |
"fw": "iPad_Fall_2021_15.0.1_19A348_Restore.ipsw", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"build": "20A362", | |
"fw": "iPhone15,2_16.0_20A362_Restore.ipsw", | |
"file": "LLB.d73.RELEASE.im4p", | |
"kbag": "985898593B143B130AAEA95C723A342D647ED5F9E0953871E836000A7108E52D75E0BA03A9917E984889DCA1253D3F1C", | |
"key": "9f58969bb426e99f2dc541bd524f2b5696865560a201a230ee25c89cd2a147d9e5d17779c0b816fd29c5f760a892c5bf" | |
}, | |
{ | |
"build": "20A362", |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"build": "21C66", | |
"fw": "iPhone11,2,iPhone11,4,iPhone11,6_17.2.1_21C66_Restore.ipsw", | |
"file": "LLB.d331p.RELEASE.im4p", | |
"kbag": "ceb94a60d2ab04749f320df617939ee51d83c1075500c630135fa816801fa2465aa60d32bb4b1aface8d4edae78ed8c1", | |
"key": "8f8e2885ba96e189ee3e31553da43c303c6014bb91285ce572a2eac6a72320ca5f5fef05b8d9a429857544fb7d22136e" | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iBootCoverage> gcov -n --dump */coverage/*.gcno |& grep "=====" | sort | uniq | grep -v test | grep -v AppleInternal | cut -d " " -f2,4,5 | cut -d ":" -f1 | sort | uniq | sed -e 's/ @/\t@/g' > modern-iboot-symbols.txt | |
__os_warn_unused @ include/overflow.h | |
__syscfg_validate_and_get_instance_id_for_multi @ lib/syscfg/syscfg.c | |
__syscfg_validate_keybag_instance_id @ lib/syscfg/syscfg.c | |
_abb_panic_buffered_write @ lib/abb_panic/abb_panic.c | |
_abb_panic_calculate_file_size @ lib/abb_panic/abb_panic.c | |
_abb_panic_create_4cc @ lib/abb_panic/abb_panic.c | |
_abb_panic_create_ce_subsystem_crash_report_entry @ lib/abb_panic/abb_panic.c | |
_abb_panic_create_lph_subsystem_crash_report_entry @ lib/abb_panic/abb_panic.c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
struct Collapsible<Content: View>: View { | |
@State var label: () -> Text | |
@State var content: () -> Content | |
@State private var collapsed: Bool = true | |
var body: some View { | |
VStack { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filetype detect | |
set nocompatible | |
set exrc | |
set mouse=a | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set smarttab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Demonstration of server-sent events with Tornado. To see the | |
stream, you can either point your browser to ``http://localhost:8080`` | |
or use ``curl`` like so:: | |
$ curl http://localhost:8080/events | |
""" | |
import signal | |
from tornado import web, gen |