Clipboard
Add
V2C47-MK7JD-3R89F-D2KXW-VPK3J
Delete
class Rational: @staticmethod def gcd(a, b): while (b != 0): (a, b)=(b, a%b) return a @staticmethod def sgn(x): if x > 0: return 1 elif x < 0: return -1 else: return 0 def __init__(self, n, d): if n == 0: self.num=0 self.den = 1 else: z = self.sgn(n)*self.sgn(d) n = abs(n) d = abs(d) k = self.gcd(n,d) self.num = z*n//k self.den = d//k def __str__(self): if self.num == 0: return "0" else: return str(self.num)+"/"+str(self.den) def __add__(self, o): n1=self.num d1=self.den if type(o)==int: n2=o d2=1 else: n2=o.num d2=o.den n= n1*d2+n2*d1 d=d1*d2 return Rational(n, d) def __radd__(self, o): n1=self.num d1=self.den if type(o)==int: n2=o d2=1 else: n2=o.num d2=o.den n= n1*d2+n2*d1 d=d1*d2 return Rational(n, d) def __sub__(self, o): n1=self.num d1=self.den n2=o.num d2=o.den n= n1*d2-n2*d1 d=d1*d2 return Rational(n, d) def __mul__(self, o): n1=self.num d1=self.den n2=o.num d2=o.den n= n1*n2 d=d1*d2 return Rational(n, d) def __floordiv__(self, o): n1=self.num d1=self.den n2=o.num d2=o.den n= n1*d2 d=n2*d1 return Rational(n, d) d1 = Rational(1, 2) d2 = Rational(1, 3) d3=d1+d2 print(d3) d4 = d1-d2 print(d4) d5=d1*d2 print(d5) d6=d1*d2 print(d6) d7 = d1//d2 print(d7) d8 = 6+d1 print(d8)
Delete
ro.adb.secure=0 ro.secure=0 ro.allow.mock.location=1 ro.debuggable=1 persist.sys.usb.config=mtp,adb persist.service.adb.enable=1
Delete
androidboot.hardware=qcom loglevel=1 vmalloc=200M
Delete
https://disk.yandex.ru/d/1SxsX5zAoLsrB
Delete
what is this
Delete
ыфыышыш
Delete
IPL g0f56fc4 D-2a HW Reset miupll_266MHz 256MB BIST0_0001-OK RDQS cali WDQS cali SPI 54M IPL_CUST g0f56fc4 KEYAES_SIZE(0x0000) KEYAES_ADDRESS(0x00000000) U-Boot 2015.01-svn204696 (Sep 14 2023 - 08:43:05) Version: I6C#g####### DRAM: WARNING: Caches not enabled SPINAND_I: [SPINAND] Program with command 0x2. [SPINAND] Random with command 0x34. [SPINAND] RFC use command 0x6b [SPINAND] dummy clock 0x8 [FLASH] BDMA mode. [PARTS] Found table in 0x1 [BBT] Found table @ 0x20000 [FLASH] dev_id = 0xee [FLASH] mfr_id = 0xcd, dev_id= 0x70 id_len = 0x3 64 MiB MMC: MStar SD/MMC: 0, MStar SD/MMC: 1 ENV: offset = 0x280000 size = 0x10000 *** Warning - bad CRC, using default environment In: serial Out: serial Err: serial Net: No ethernet found. ## Starting application at 0x21000000 ... ==========EZloader========== build (Sep 14 2023-08:43:09) ============================ NAND read: device 0 offset 0x280000, size 0x10000 Time:6129 us, speed:10692 KB/s 65536 bytes read: OK product name:H9c_2023_5MP_5MP NAND read: device 0 offset 0x2c0000, size 0x300 Time:261 us, speed:2942 KB/s 768 bytes read: OK ezbsp_get_ethaddr_flash: Invalid mac! idx = 1! SCB_STATUS = SCB_EN ! _[sdmmc_0] Card Detect Fail! ** Bad device mmc 0 ** MMC storage device init failed! load sys to 0x22000000 ... NAND read: device 0 offset 0x900000, size 0x80 Time:237 us, speed:540 KB/s 128 bytes read: OK NAND read: device 0 offset 0x900000, size 0x4b8e40 Time:458279 us, speed:10804 KB/s 4951616 bytes read: OK Verify kernel successfully... Done! ## Booting kernel from Legacy Image at 22000080 ... Image Name: MVX4##I6C#g#######KL_LX510##[BR: Image Type: ARM Linux Kernel Image (lzma compressed) Data Size: 4951072 Bytes = 4.7 MiB Load Address: 20008000 Entry Point: 20008000 Verifying Checksum ... OK Uncompressing Kernel Image ... [XZ] !!!reserved 0x22000000 length=0x 1000000 for xz!! XZ: uncompressed size=0x70e820, ret=7 OK atags:0x20000000 Starting kernel ... mknod: /dev/console: File exists mknod: /dev/null: File exists
Delete
Delete
https://4pda.to/forum/index.php?showtopic=420801&view=findpost&p=40812154
Delete
cunnys-ibook-g4:~ cunny$ diskutil list /dev/disk0 #: TYPE NAME SIZE IDENTIFIER 0: Apple_partition_scheme *298.1 Gi disk0 1: Apple_partition_map 31.5 Ki disk0s1 2: Apple_Driver43 27.0 Ki disk0s2 3: Apple_Driver43 37.0 Ki disk0s3 4: Apple_Driver_ATA 27.0 Ki disk0s4 5: Apple_Driver_ATA 37.0 Ki disk0s5 6: Apple_FWDriver 100.0 Ki disk0s6 7: Apple_Driver_IOKit 256.0 Ki disk0s7 8: Apple_Patches 256.0 Ki disk0s8 9: Apple_HFS Mac OS 9.2.2 64.0 Gi disk0s9 10: Apple_HFS Mac OS Tiger 64.0 Gi disk0s10 11: Apple_HFS Mac OS Leopard 83.8 Gi disk0s11 12: Apple_HFS Mac OS Snow Leopard 86.1 Gi disk0s13
Delete
ACard6280ATA.kext drwxr-xr-x@ 3 root wheel 102B May 27 2024 AppleK2SATA.kext drwxr-xr-x@ 3 root wheel 102B May 27 2024 AppleK2SATARoot.kext drwxr-xr-x@ 3 root wheel 102B May 27 2024 AppleKauaiATA.kext drwxr-xr-x@ 3 root wheel 102B May 27 2024 AppleKiwiATA.kext drwxr-xr-x 3 root wheel 102B May 27 2024 IOATAFamily.kext drwxr-xr-x 3 root wheel 102B May 27 2024 JMicronATA.kext drwxr-xr-x@ 3 root wheel 102B May 27 2024 KeyLargoATA.kext
Delete
ACard6280ATA.kext: Contents AppleK2SATA.kext: Contents AppleK2SATARoot.kext: Contents AppleKauaiATA.kext: Contents AppleKiwiATA.kext: Contents ApplePCCard16ATA.kext: Contents ApplePCCardATA.kext: Contents IOATAFamily.kext: Contents JMicronATA.kext: Contents KeyLargoATA.kext: Contents
Delete
Interval Since Last Panic Report: 0 sec Panics Since Last Report: 1 Anonymous UUID: 5EA7E7B3-9D6A-4460-8D90-1E2683A430E7 Thu Nov 20 21:45:39 2025 panic(cpu 0 caller 0x2a7378): "Process 1 exec of /sbin/launchd failed, errno 8\n"@/SourceCache/xnu/xnu-1504.15.3/bsd/kern/kern_exec.c:3145 Latest stack backtrace for cpu 0: Backtrace: 0x000A98D0 0x000AA274 0x0002B92C 0x002A7378 0x00291034 0x002B7EA0 0x00029108 0x000C1678 Proceeding back via exception chain: Exception state (sv=0x262be000) PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown) BSD process name corresponding to current thread: init Mac OS version: Not yet set Kernel version: Darwin Kernel Version 10.8.0: Tue Jun 7 16:34:44 PDT 2011; root:xnu-1504.15.3~1/RELEASE_PPC System model name: PowerBook6,5 System uptime in nanoseconds: 95453844179 unloaded kexts: (none) loaded kexts: com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1 - last loaded 1751631855 com.apple.driver.AppleADBKeyboard 2.3.9 com.apple.iokit.SCSITaskUserClient 2.5.1 com.apple.driver.ApplePMU 2.5.6d2 com.apple.driver.AppleUSBHub 3.4.9 com.apple.driver.AppleFWOHCI 4.3.4 com.apple.driver.AppleKauaiATA 1.2.1f4 com.apple.driver.AppleUSBEHCI 3.4.6 com.apple.driver.KeyLargoATA 1.1.1f1 com.apple.iokit.AppleMediaBay 1.0.2f1 com.apple.iokit.AppleGMACEthernet 1.5.9f1 com.apple.driver.AppleUSBOHCI 3.4.6 com.apple.driver.AppleVIA 1.5.1d1 com.apple.driver.AppleMPIC 1.5.3 com.apple.driver.AirPortBrcm43xx 367.91.22 com.apple.driver.AppleI2C 4.0.5d1 com.apple.driver.AppleCore99NVRAM 1.1.1 com.apple.driver.AppleFlashNVRAM 1.0.5 com.apple.security.sandbox 0 com.apple.nke.applicationfirewall 2.0.11 com.apple.BootCache 31 com.apple.driver.AppleFileSystemDriver 2.0 com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.5.1 com.apple.iokit.IOBDStorageFamily 1.6 com.apple.iokit.IODVDStorageFamily 1.6 com.apple.iokit.IOCDStorageFamily 1.6 com.apple.driver.XsanFilter 402.1 com.apple.iokit.IOATABlockStorage 2.0.6 com.apple.iokit.IOHIDFamily 1.6.0 com.apple.iokit.IOATAPIProtocolTransport 1.5.3 com.apple.iokit.IOSCSIArchitectureModelFamily 2.5.1 com.apple.iokit.IOUSBUserClient 3.5.2 com.apple.driver.AppleGPIO 1.3.0d0 com.apple.iokit.IOFireWireFamily 4.0.4 com.apple.iokit.IOATAFamily 2.0.1 com.apple.iokit.IOUSBFamily 3.5.2 com.apple.iokit.IOADBFamily 9.0.0 com.apple.driver.MacIOGPIO 1.3.0d0 com.apple.iokit.IO80211Family 216.1 com.apple.iokit.IONetworkingFamily 1.6.1 com.apple.security.TMSafetyNet 6 com.apple.driver.AppleKeyLargo 1.7.2f1 com.apple.iokit.IOKeyLargo 1.7.2f1 com.apple.driver.AppleMacRiscPCI 3.4.0 com.apple.driver.DiskImages 281 com.apple.iokit.IOStorageFamily 1.6 com.apple.driver.AppleMacRISC2PE 1.8.7d5 com.apple.iokit.IOPCIFamily 2.6 com.apple.driver.IOPlatformFunction 1.8.7d5
Delete
cnuuyy@Cnuuyys-MacBook-Air CheckL0ck % make package /Users/cnuuyy/theos/makefiles/common.mk:167: *** The "rootless" target is not supported on the "macosx" platform. Stop. cnuuyy@Cnuuyys-MacBook-Air CheckL0ck % uname -a Darwin Cnuuyys-MacBook-Air.local 24.5.0 Darwin Kernel Version 24.5.0: Tue Apr 22 19:48:46 PDT 2025; root:xnu-11417.121.6~2/RELEASE_ARM64_T8103 arm64 cnuuyy@Cnuuyys-MacBook-Air CheckL0ck %
Delete