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
about | |
account | |
accounts | |
ad | |
add | |
address | |
ads | |
added | |
admin | |
alpha |
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
HyperCard2020非常に迅速に無料の最小税BITCOIN取引を可能にします。 HyperCardを使用して不正な暗号化を購入してください。 | |
theBinaryBAZAAR経由で販売され配布されます。 | |
DATA.DEALERテクノロジーを搭載。 | |
!!! | |
インターネット上の奇妙な場所から奇妙なファイルをダウンロードしないでください。 | |
DO NOT DOWNLOAD FILES FROM STRANGE PLACES OF THE INTERNET. | |
ANXIETY.ONLINE [1/10]. |
Chrome OS: https://storage.googleapis.com/chromeos-wallpaper-public/manifest_en-US.json and /usr/share/wallpapers
Fedora: https://download.fedoraproject.org/pub/fedora/linux/releases and https://archives.fedoraproject.org/pub/archive/fedora/linux/releases
Generic/elementary OS: /usr/share/backgrounds
iOS: /Library/Wallpapers
macOS: /Library/Desktop Pictures
門の上で永速に燃える星にする。
Make it a star that burns at eternity on the gate.
その魂を、フォ-ラムとローマの
Its soul, Forum and Rome
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>AppleTV5,3</key> | |
<string>iProdScrt</string> | |
<key>AppleTV6,2</key> | |
<string>iProdPcrt</string> | |
<key>AudioAccessory1,1</key> | |
<string>iProdScrt</string> |
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
Following are my steps to build the ARM64 version of xnu-4570.1.46, hope this is helpfull for saving time. | |
1. Use Xcode 9.0 | |
2. Preparation is same as macOS, and there is a guide: https://0xcc.re/building-xnu-kernel-macosx-sierrra-10-12-x/ | |
3. There is an ARM64 version libfirehose: https://github.com/Proteas/install_firehose_lib | |
4. Copy and edit the ARM64 config(CFLAGS, LDFLAGS) from darwin-on-arm/xnu to your target project | |
5. Example CFLAGS: -Darm64 -DARM64 -D__arm64__ -D__ARM64__ -DLP64 -DCONFIG_EMBEDDED -mkernel -DARM64_BOARD_CONFIG_T8011=1 | |
6. Fix compiling stage errors by directly importing the missing headers or editing the code | |
7. Fix linking stage errors by implementing place holder funcitons for: chudxnu_cpu_alloc, etc | |
8. If missing symbol __divti3 in linking stage, get the runtime from llvm. |
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
{ | |
"version" : 1, | |
"initialAssetCount" : 4, | |
"assets" : [ | |
{ | |
"id" : "6154CA95-ED90-446A-9C29-F46EDA2B3741", | |
"url-1080-SDR" : "https://sylvan.apple.com/Aerials/2x/Videos/DB_D011_C009_2K_SDR_HEVC.mov", | |
"url-1080-HDR" : "https://sylvan.apple.com/Aerials/2x/Videos/DB_D011_C009_2K_HDR_HEVC.mov", | |
"url-4K-SDR" : "https://sylvan.apple.com/Aerials/2x/Videos/DB_D011_C009_4K_SDR_HEVC.mov", | |
"url-4K-HDR" : "https://sylvan.apple.com/Aerials/2x/Videos/DB_D011_C009_4K_HDR_HEVC.mov", |
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 | |
'''convert payload to zip''' | |
import struct | |
import sys | |
import zipfile | |
import datetime | |
import io | |
import lzma | |
def get_chunk(payload, chunknum): |