Andre
Andre
My laptop is running 64-bit Windows 10, and I have latest VS 2017 Community Edition installed. I just built 64-bit, multithreaded Chez Scheme with these commands: > env OS=Windows_NT ./configure...
I'm on macOS Big Sur, and have some C/C++ compilers installed: - gcc (a.ka clang 12) via Apple Command Line Tools - gcc-11 and clang 12 via Homebrew After pulling...
My PC runs 64-bit Windows 10. I already have the latest Android Studio, plus some SDK & platform tools installed. After checking out the expandable-recycle-view, Android Studio complained:  Failed...
Just curious, what are the steps need to be done to port this compiler to another OS, say Linux or MacOS? Probably would make a challenging programming exercise for me......
Applications like Whatsapp, Facebook, Twitter, Snapseed etc do this: they have their own directories inside Pictures directory, which means they are easily searchable via builtin photo gallery app, and sharing...
I have 2 ebook readers on my Android phone: Play Books and Moon+ Reader Pro. Previously, I have never experienced problem with Play Books. Just upload the epub file via...
To add attachments on chat, you have to use `showAttachmentButton="true"` and add a few lines, described in [COMPONENT_MESSAGE_INPUT.MD](https://github.com/stfalcon-studio/ChatKit/blob/master/docs/COMPONENT_MESSAGE_INPUT.MD) Then I found this [example](sample/src/main/java/com/stfalcon/chatkit/sample/features/demo/def/DefaultMessagesActivity.java), which images are hardcoded using ArrayList. But...
First I modified ClangOSX64.mak a bit: ``` ifeq ($(DEBUG),0) extra_c_flags = -DNDEBUG -O2 -ansi -funsigned-char -fwritable-strings -Wno-implicit-function-declaration OUTD=GccUnixR else ``` Then ran `make -f ClangOX64.mak`. The result is: ``` In...
I'm building xv6 on MacOS Big Sur with [x86_64-elf-gcc](https://formulae.brew.sh/formula/x86_64-elf-gcc) installed: > $ x86_64-elf-gcc --version > x86_64-elf-gcc (GCC) 12.2.0 > Copyright (C) 2022 Free Software Foundation, Inc. > This is free...
I have these lines in build.gradle ``` implementation 'com.github.Lukle:ClickableAreasImages:v0.1' implementation 'com.github.chrisbanes:PhotoView:2.0.0' ``` And inside my activity: `ClickableAreasImage clickableAreasImage = new ClickableAreasImage(new PhotoViewAttacher(imgSchool), this);` Android Studio pointed me this error: ...