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
### WARNING: READ CAREFULLY BEFORE ATTEMPTING ### | |
# | |
# Officially, this is not recommended. YMMV | |
# https://www.raspberrypi.com/news/bookworm-the-new-version-of-raspberry-pi-os/ | |
# | |
# This mostly works if you are on 64bit. You are on your own if you are on 32bit or mixed 64/32bit | |
# | |
# Credit to anfractuosity and fgimenezm for figuring out additional details for kernels | |
# |
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
#!/usr/bin/env python3 | |
""" bigdecoder.py, by [email protected] (2009-03-01) and cam {at-goes-here} camconn.cc (2018-05-03) | |
This is a Decoder for .BIG-format files utilized by many EA Games. | |
EA's .big is a trivial archival format. quite frankly, this is | |
probably the simplest compound file format imaginable. | |
File Structure | |
============== | |
The file consists of a global header, an index of all the embedded |
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
<!doctype html> | |
<meta charset=utf-8> | |
<title>Test DOM Content Loaded and promises</title> | |
<script> | |
console.log(document.querySelector('main')) // => null | |
document.ready = new Promise( | |
(resolve) => document.addEventListener('DOMContentLoaded', resolve)) | |
document.ready.then(() => console.log(document.querySelector('main'))) // => <main> | |
</script> | |
<main></main> |