sryze

Results 61 comments of sryze

Never mind, I forgot that Wirebug can be used without root in "read-only" mode 😄 I'll give it another try

[opkg-busybox-install-log.txt](https://github.com/Entware/Entware/files/14654005/opkg-busybox-install-log.txt)

I was able to install it finally after setting the environment var `MALLOC_CHECK_=0` as suggested [here](https://www.ibm.com/support/pages/glibc-detected-double-free-or-corruption-message-information-server-datastage-job-log).

As far as I understand, the free space of an APFS container is shared between all volumes of that container and can be allocated to them on demand, therefore used...

I found that the information about a volume's used space is provided by the [`getattrlist()`](https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/getattrlist.2.html) system call, but it's not implemented in Go yet. This is what `df` uses internally...

Nevermind, found the answer here: http://stackoverflow.com/questions/5887305/uiview-user-interaction-enabled-false-on-parent-but-true-on-child I wrapped my HUD in another view and turned off user interaction there. As a result, it was disabled in the HUD itself. The...

```objective-c // Entirely cover the parent view UIView *parent = self.superview; if (parent) { self.frame = parent.bounds; } ``` I don't understand why this is needed, but it would be...

I've created an emulator with the arm64 image as mentioned by @nohli but it still won't start, saying that Intel HAXM is required 😞 I'm using version 30.7.5 of the...

I'm having exactly the same problem with mogenerator 1.30.1. I have simply added a fetch request template for the first time and started getting this error since next build.

It turns out that was a problem in a predicate that I used in the fetch request template - one of the parameters had its name spelled wrong. I think...