Andre
Andre
The doc says to build MentOS on macOS, these packages are needed: - i386-elf-binutils - i386-elf-gcc I already did, and can built [xv6](https://github.com/mit-pdos/xv6-public). But when building MentOS, running **make** fails...
``` $ uname -a Darwin Wolfenstein.local 23.5.0 Darwin Kernel Version 23.5.0: Wed May 1 20:19:05 PDT 2024; root:xnu-10063.121.3~5/RELEASE_ARM64_T8112 arm64 $ curl https://nim-lang.org/choosenim/init.sh -sSf | sh choosenim-init: Downloading choosenim-0.8.9_macosx_amd64 Downloading Nim...
Here's the code which uses the latest ImagePicker (2.3.22): ``` import android.Manifest; import android.app.Activity; import android.content.Intent; import android.content.pm.PackageManager; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.net.Uri; import android.os.Bundle; import android.view.View; import android.widget.Button;...
Consider this code: ``` import httpclient var client = newHttpClient() echo client.getContent "http://rosettacode.org/wiki/Rosetta_Code" ``` On macOS 15 M2, compiled with Nim 2.2.0 (installed via Homebrew): ``` $ nim c -d:release...
I'm on M2 Mac running macOS 15.2, with gforth 0.7.3 installed via [homebrew](https://formulae.brew.sh/formula/gforth) Running this [socket example](https://stackoverflow.com/questions/49602466/does-gforth-contain-network-socket-capability): ``` include unix/socket.fs 128 constant size : (echo) ( sock buf -- sock...
I'm on M2 Mac (macOS 15.4). Started to experience these error after trying to build recent base and async on OCaml 5.3.0. `ar: error: couldn't create cache file '/var/folders/xx/xxxxxxxxxxx/T/xcrun_db-xxxxxx` Only...
Our mobile payment app (runs on Android & iOS) is written in RN 0.71.0. After exploring a few root detection libraries, I think this lib looks promising because the code...
I'm on macOS 15.6.1 (Apple Sillicon) `./skift.sh tools setup` worked fine. Previously I already had most of the dependencies installed, so it only installed ccache, lld, and ninja. `./skift.sh tools...
I'm working on a project which uses RN 0.71.0. After installing the lib: `$ yarn add react-native-ble-manager` Let's try to run the project: `$ yarn android:dev` `android:dev` on my package.json...
### How can we help? Consider this part of App.tsx (I'm on RN 0.71 and react-native-onesignal 5.2.8): ``` const handleForegroundNotification = (event: any) => { console.log("Foreground Notification Detail:", JSON.stringify(event)); //...