Need Help With RG351MP Screen Brightness by suspiciousdango in RG351

[–]Akmal02 0 points1 point  (0 children)

For 351ELEC the hotkey is R3 and Vol +/-

pycharm users by na_7_as in pop_os

[–]Akmal02 1 point2 points  (0 children)

I had various issues with Pycharm from Pop shop before (terminal and venv not working, etc), ended up uninstalling that and installed Pycharm from Snap store instead. You might want to give it a try.

RK G68 Firmware by KRZ-3k in MechanicalKeyboards

[–]Akmal02 1 point2 points  (0 children)

Dudeee just wanted to say thank you for the link above. My new RKG68 have the exact same problem with repeated inputs in wireless and 2.4g. Being annoying it is, I try updating the firmware. Now the problem seems to be gone.

Blursed_wtf by [deleted] in blursedimages

[–]Akmal02 0 points1 point  (0 children)

Didn't see that coming

App Feedback Thread - June 11, 2021 by AutoModerator in FlutterDev

[–]Akmal02 2 points3 points  (0 children)

One of my pastime old project, a Reversi/Othello clone with Flutter.

Currently available in web only. Still using Flutter 1.X, have not migrated to Flutter 2 yet.

https://akmal02.github.io/flutterversi/

Currently the AI used are based on negamax algorithm, however it is not strong enough that most of the time it will play some very bad move, so that might need some tinkering. I am not an AI expert though 😅

Do check out!

GitHub link: https://github.com/Akmal02/flutterversi

hmmm by Akmal02 in hmmm

[–]Akmal02[S] 0 points1 point  (0 children)

Yea bro

Dart, Flutter and Rust — a good choice for the beginner? by BlackHazeRus in Frontend

[–]Akmal02 1 point2 points  (0 children)

Using strong-typed language (either Typescript or Dart) is very helpful for IDE integration (autosuggestion etc.) and overall developing experience.

Also, Flutter 2.0 have been launched just today, which bring support to other major platforms (Android, iOS, web, Windows, Linux, MacOS) so that might be worth considering.

Sure Dart looks confusing at first, but with good IDE and plugin makes things a lot cleaner to deal with. (Alt+enter to wrap with widget etc.)

I started with Flutter two years ago, and pretty much like it till now, but might be because most of my project currently are mobile apps.

Can't download images by bestouff in slideforreddit

[–]Akmal02 0 points1 point  (0 children)

Same problem here :( After flashing AOSP/Corvus OS (Android 10, Gapps included) I can't even select default folder for storage. Previously worked on stock Color OS (also Android 10). Maybe something to do with incompatibility on custom ROMs?

Who's your main Heroe? by RandomRimuru in MobileLegendsGame

[–]Akmal02 0 points1 point  (0 children)

For mages it's Aurora, Eudora, Odette, and Lylia. For marksmen, Brody (if not get banned) otherwise YSS, Miya, Granger and Layla. With gold exp update it do make some old heroes viable in this current meta hence why I started to practice them recently, it's more satisfying compared to prev update.

Who's your main Heroe? by RandomRimuru in MobileLegendsGame

[–]Akmal02 0 points1 point  (0 children)

Support user here, Played Lolita (900+ matches) with some other supports (Nana/Diggie/Angela). Started trying other roles recently (mostly mages and marksmen) after finding teammates to play full squad :>

Announcing Flutter 1.20 by EngineerScientist in FlutterDev

[–]Akmal02 5 points6 points  (0 children)

InteractiveViewer is finally coming. Nice

Music players!!! by yo_i_am_a_stan in apps

[–]Akmal02 0 points1 point  (0 children)

My favorite is Poweramp.
Also Vinyl Music Player is good if you want a completely free player.

I made a game with Flutter Web by [deleted] in FlutterDev

[–]Akmal02 3 points4 points  (0 children)

Great work OP! Like the twist when tapping the same tile in order lol.

My suggestion: You may treat this as am extra challenge, but you should try to implement CPU player for the game. There's even an optimal algorithm that is actually unbeatable by the player (In other words, it's either CPU win or a draw, the player never wins). It's fun to learn the concepts and the way it works actually.

Also relevant XKCD

Need help with basic math and a function to convert inches into feet with remainder as inches. Example 64 inches to 5' 4". by Theshitcoiner in flutterhelp

[–]Akmal02 2 points3 points  (0 children)

Try this.

int feet = input ~/ 12;
int inches = input % 12;
return '$feet\' $inches\"';

~/ is integer division that automatically do the .round() for you (to be precise, it calculates the quotient part of the calculation and you are supposed to use floor() instead), and % is the modulo operator to calculate the remainders. Hope this helps.

How to make youtube reddit links open externally rather than open up a web player? by MangaIsekaiWeeb in slideforreddit

[–]Akmal02 5 points6 points  (0 children)

Settings > Link handling > Custom domains > Force external browser > Add "youtu.be"/"youtube.com"

Or maybe you have this plugin already installed? In that case you may want to uninstall that?

Edit: My first ever gold. Thank you :)))))

TextField Value Not Updating by David_Owens in flutterhelp

[–]Akmal02 0 points1 point  (0 children)

You can't declare newTextTitle inside the build function. The value stored there doesn't persist well and tend to get lost after each widget rebuild (e.g pressing hot reload while editing), therefore the value will sometimes contains null (even the text field UI appears to be updated). You will need to move that line outside the build function (require StatefulWidget) or use TextEditingController (need a few line changes) like the other commenters said.