HackerTrans
TopNewTrendsCommentsPastAskShowJobs

DotaFan

no profile record

comments

DotaFan
·6 miesięcy temu·discuss
I think this "trend" is due to AI companies paying (in some form) the influencers to promote AI. Simple as that.
DotaFan
·10 miesięcy temu·discuss
Been working on offline apps (Android) for the past couple of years. Syncing is hard. Some takes:

- There was never a budget for CRDT's

- Conflicts were never our primary focus, instead our focus were business problems

- Event-sourced arch + offline first app was quite a fun. Basically I've recorded all the events in sequence in SQLite, queued them up when there was a connection and had network retry policy in place + reverting an event locally if retry failed n-th amount of times.
DotaFan
·2 lata temu·discuss
[dead]
DotaFan
·2 lata temu·discuss
Having kids and seeing that made me cry.
DotaFan
·2 lata temu·discuss
I've mocked a lot in my past. Last 2 years I've been using fakes explicitly, although it has an overhead, I like it as there is less maintenance and refactoring with tests.
DotaFan
·2 lata temu·discuss
Event-driven architecture should be implemented across complete system (client-be) or be used in a single feature, i.e. it needs to be all or bare minimum, else it's just an absolute mess.
DotaFan
·2 lata temu·discuss
As an indie AND dev, with close to 100k downloads on the app, I dread of making any changes to my app. It's like looking for trouble really. Last couple of times I made smallest change, there was always something else I needed to address.

As a professional AND dev, this sounds like there might be less devs, which means more work for me.
DotaFan
·2 lata temu·discuss
> Just show the updated code not the whole file.

This just doesn't work for me. It keeps showing complete file content.
DotaFan
·2 lata temu·discuss
AI was incredibly helpful while learning LeetCode. Altho it's unable to reason at this point, it has was amount of info about most of the data.
DotaFan
·2 lata temu·discuss
I've noticed my TikTok feed is full of "Bosnian Serbs want emancipation, war is looming on Western Balkan" type of videos lately. My guess is Russia and China want another war far from Ukraine so western nations focus less on Ukraine.
DotaFan
·2 lata temu·discuss
Quite dislike Quest 2 dependency on Meta, would probably never buy their hardware again.
DotaFan
·2 lata temu·discuss
Better then X.
DotaFan
·2 lata temu·discuss
Always wanted to contribute to open source and expand my knowledge about programming and connect with people, however, I've always had way to much paid work that I was never able to contribute to OS; been working full-time and part-time projects in parallel for last couple of years, majority of my carrier to be more precise.
DotaFan
·2 lata temu·discuss
I really like to use Insomnia (Bruno alike) to import all project API's and debug API's over Insomnia. Does the job much faster for me.
DotaFan
·2 lata temu·discuss
Just wondering, does this mean OP c/p it wrong or bot is posting and it reused same title?
DotaFan
·2 lata temu·discuss
Most challenging part for me is to read between the lines what the clients wants and to offer them appropriate solution. Refining the idea and finding appropriate solution. Creating it is the easier part.
DotaFan
·2 lata temu·discuss
Chose Svelte for a client project 5 months ago, client loves the speed, I love developing with it. In general it's quite a nice tool, fast development, feels easy to learn. I do dislike server-less functions, which comes in pair with Svelte ability to do SSR, which doesn't have to do anything with Svelte tho.
DotaFan
·2 lata temu·discuss
Terms like "Forever" or "100 year" should be forbidden.

https://wordpress.com/support/plan-features/100-year-plan/
DotaFan
·2 lata temu·discuss
This is true, if it's basic app I'd certainly recommend web technology. But it's also true that clients many times don't know what they want and where they're heading. So, before we decide on tech, I do analyze with my clients what are their plans for the future with the app. It does pan out many of them would like to have notifications, storage, camera, offline..
DotaFan
·2 lata temu·discuss
Native stack is tailored for native devices, using web for that is just not as reliable/maintainable/cost efficient in my opinion. Sure, you can have less devs to support both platforms, but as soon as you need some hardware functionalities, you're not gonna have much of an options, besides what web tech libs you have in the store.