Andre
Andre
I'm studying this [example](https://github.com/premkumarroyal/MonthAndYearPicker/blob/master/sample/src/main/java/com/whiteelephant/monthpickersample/MainActivity.java): ``` builder.setActivatedMonth(Calendar.JULY) .setMinYear(1990) .setActivatedYear(2017) .setMaxYear(2030) .setMinMonth(Calendar.FEBRUARY) .setTitle("Select trading month") .setMonthRange(Calendar.FEBRUARY, Calendar.NOVEMBER) // .setMaxMonth(Calendar.OCTOBER) // .setYearRange(1890, 1890) // .setMonthAndYearRange(Calendar.FEBRUARY, Calendar.OCTOBER, 1890, 1890) //.showMonthOnly() // .showYearOnly() .setOnMonthChangedListener(new MonthPickerDialog.OnMonthChangedListener()...
**To Reproduce** 1. Create a recursive symlink, e.g `ln -s blahblah blahblah` 2. Run `spf`, keep navigating until you found the directory 3. Then spf crashes... ``` panic: runtime error:...
So far, ntfy works great for global notification, which means **all** app users receive the notification. What about sending notification to a specific user, e.g payment notification?
I'm maintaing an app which uses astickyheader-0.1.0. After I switched my dev machine to a Macbook M2, I installed the latest Android Studio (Ladybug), and pull the source code. When...
**Describe the bug** I normally use Homebrew to install apps. Unfortunately, one of fceux dependencies: [qt](https://formulae.brew.sh/formula/qt), isn't available on Monterey anymore (min req is Ventura). Which means I have to...
In some situations, like taking a selfie, I want to use only the front camera. And for taking product photos, naturally I want to use only the back camera. Is...
If this method is called: ``` public void selectProfilePic(){ Intent pickProfPicIntent = new Intent(this, ImageSelectActivity.class); pickProfPicIntent.putExtra(ImageSelectActivity.FLAG_COMPRESS, true); pickProfPicIntent.putExtra(ImageSelectActivity.FLAG_CAMERA, true); pickProfPicIntent.putExtra(ImageSelectActivity.FLAG_GALLERY, true); pickProfPicIntent.putExtra(ImageSelectActivity.FLAG_CROP, true); startActivityForResult(pickProfPicIntent, 1213); } ``` A dialog showing...
I need to implement push notification on a custom Android device not preloaded with Google services, so I decided to give ntfy-android a try. Yep it worked :D Now time...
I'm on Mac M2, with vim and neovim installed via hombrew. First I install [nimlsp](https://github.com/nim-lang/langserver). For neovim, coc-settings.json is located on `~/.config/nvim/` ``` { "languageserver": { "nim": { "command": "~/.nimble/bin/nimlangserver",...
I'm on macOS 15.2 (M2) with OCaml 5.2 installed (via opam, not homebrew). I also have various tools like ocamlformat, ocaml-lsp-server installed. Seems like vscode-ocaml-platform (mine is 1.29.0, and yes...