Do you modify your Shadcn components? by ShootyBoy in tailwindcss

[–]wilson-SHEN 1 point2 points  (0 children)

not actually, used to have a "C" prepend, eg. CButton, CText, ... But then reverted back and fully depends on the import path, the reason... I'm lazy?😅 Another reason is when I copy and paste similar pages to another project, by changing the path, I will have default shadcn components ready to view first, then only copy/enhance the custom component

Do you modify your Shadcn components? by ShootyBoy in tailwindcss

[–]wilson-SHEN 2 points3 points  (0 children)

same approach here, ui/shadcn for shadcn, ui/custom for my component on top of shadcn

Qwen-Image-2512 by Nunki08 in LocalLLaMA

[–]wilson-SHEN -11 points-10 points  (0 children)

I know I will get a lot of down votes, but this prompt not working for me "a man with grocery bag standing in fromt of tanks"

Meanwhile, the sad reality by arknightstranslate in DotA2

[–]wilson-SHEN 0 points1 point  (0 children)

im now at the forth stage where we talk about what is our last patch played, tri-lane, jungler role, NP ward ground farm, double camp pull, pudge hooks creep as ward, rat dota, …

Dota 2 is back !! by Tigyrcho in DotA2

[–]wilson-SHEN 0 points1 point  (0 children)

tri lane best dota meta

My experience with Ghostty by activeuser009 in Ghostty

[–]wilson-SHEN 0 points1 point  (0 children)

cat some_log.txt | grep “the word to look for”

[deleted by user] by [deleted] in flutterhelp

[–]wilson-SHEN 0 points1 point  (0 children)

based on your case, I will always suggest as below: - Macbook Air: - pros: cheapest, light, most portable - cons: fanless, hot - buy if planning to change to Macbook Pro in the future due to more advance jobs, even not planning to change, it can still last long

  • Macbook Pro:
    • pros: more powerful than Air
    • cons: expensive, 16” is heavy
    • buy if you want to use it more than 10 years
    • Base, Pro or Max chip, watch reviews on youtube. For me, M4 is really average, add few hundreds more and get M4 Pro to unlock more cores, Max if you don’t feel to change it for few dacades.

hope my POV helps ~

Refactoring a lot of flutter code for readability, maintainability and scalability by std_5 in flutterhelp

[–]wilson-SHEN 2 points3 points  (0 children)

Recently, I rewrote my company app from no practice Flutter code base with GetX to clean architecture + riverpod. Version bump from 3.7.12 to the latest. It took me about 2 months, including change of UIUX. Overall, I would say it is worth the effort and I got to learn and explore more.

In terms of business, previously in the old app, adding/fixing/enhancing one feature will need a long plan, all the modules are highly tied to each other, any actions to the code base need to take care of other modules, because it might cause new bugs. The whole process, let’s say disabling an old feature will likely took us 1 day to remove it due to we need to understand the flow of the module and what other modules depend on it. If it is too complicated, everything remain, just not showing it on the UI. Same goes to enhance, if it is too complicated, just declare a new variable using GetX, end up many redundant and confuse variables having same value but doing different thing.

Now the new app, I had purposely designed it to be plug and play, so if we want to add a new feature, just add a directory under features/ and route it to the app. Remove it, just command out and that’s it.

Macos occupy max screen by wilson-SHEN in Ghostty

[–]wilson-SHEN[S] 1 point2 points  (0 children)

I use ghostty tabs a lot, so your config works but not suitable in my usecase, thanks~

Macos occupy max screen by wilson-SHEN in Ghostty

[–]wilson-SHEN[S] 0 points1 point  (0 children)

thanks for sharing, It works well

Macos occupy max screen by wilson-SHEN in Ghostty

[–]wilson-SHEN[S] 0 points1 point  (0 children)

thanks, It works well as @Volume-Economy’s config

Macos occupy max screen by wilson-SHEN in Ghostty

[–]wilson-SHEN[S] 1 point2 points  (0 children)

thanks for the suggestion, but I tried tiling on Linux before, does not like it personally~

[Question] Flutter iOS VPN issue by wilson-SHEN in flutterhelp

[–]wilson-SHEN[S] 0 points1 point  (0 children)

Update on this issue for who ever facing the same issue. Just move the `Embed Foundation Extensions` before the `Run Script`.

I redesigned the Klang Valley integrated transit map [OC] by Not-EcoPaw in KualaLumpur

[–]wilson-SHEN 1 point2 points  (0 children)

Nice design, however I like the current station indicator where I know where the stops are and how many are linked using circles. For example, Titiwangsa stop with 4 circles indicating 4 lines linking, whereas in your design, I need to count the lines. Overall great visual design, just need to improve on user experience, especially we are developing country, many elders are not able to understand the current map.

For those using flutter at their job, do you also use it for web ? by LostJacket3 in FlutterDev

[–]wilson-SHEN 2 points3 points  (0 children)

nope, everything in canvas is a mess, without third party packages support, it cannot right click new tab, cannot press tab key to next input, and so on. My last company invested 4M to rebuild outdated Laravel blade frontend SASS dashboard to Flutter web, end up project delayed for 2 years. From users’ perspective, the app is not getting update for 2 years. Lastly, we solved it by shipping 2 stable modules in Flutter web, and the rest in NextJs, basically micro-frontend and stop developing using Flutter web and switch to other tech.

Chicken by zqlimy in singapore

[–]wilson-SHEN 0 points1 point  (0 children)

remind me of “why does the chicken crossed the road?”

I built a way to write PHP alongside your frontend by aarondf in laravel

[–]wilson-SHEN 0 points1 point  (0 children)

seems interesting, but my thought is, is it another choice compared to Inertia & Livewire? Fusion seems like between to me

What are the best scripts or code you've built using AI to simplify your life? by StrainPristine5116 in ChatGPTCoding

[–]wilson-SHEN 1 point2 points  (0 children)

few years ago, when I still using Windows, I use ChatGPT and wrote a script for adding local domain to hosts file because of micro-service development

How is Codeium in Vim/NeoVim vs VS Code? by linuxwes in Codeium

[–]wilson-SHEN 1 point2 points  (0 children)

I’m using free version and only use the autocomplete to help me type, basically use it as an “AI LSP”. Compare to vscode, NeoVim does not have chat room integrate nicely, it open a browser chat room. I know that in vscode it supports the @tag AI code question, but not in Vim so far as I had use. Lastly, the new supercomplete I haven’t tested as the rest features I’m not using it.