@wxwaim

168 posts

@wxwaim banner
@wxwaim

@wxwaim

@wxwaim

One year. Clean slate. Building • learning • travelling. Income: 0 → Direction: Loading

Katılım Şubat 2026
37 Takip Edilen4 Takipçiler
Sabitlenmiş Tweet
@wxwaim
@wxwaim@wxwaim·
A year to be accountable to myself. Experimenting, rebuilding, rediscovering. No hype. No shortcuts. Just showing up. Every day.
English
0
0
0
65
Peter Mmuo
Peter Mmuo@PeterMmuo·
@joni_vrbt It’s actually gaining a lot of traction I’ve been somewhat active on threads for a few weeks now It’s a different world there
English
3
0
8
523
Jonathan
Jonathan@joni_vrbt·
I have never seen anyone use Threads. Still, it’s the no. 1 app on the App Store rankings. Am I missing out on something big here?
Jonathan tweet media
English
115
2
85
9.9K
@wxwaim
@wxwaim@wxwaim·
How important is analytics to your MVP? And how do you know what funnels to monitor? Thinking a good starting point is core funnels like: - sign up completions - pages viewed - products purchased - error messages
English
0
0
0
16
@wxwaim
@wxwaim@wxwaim·
@zsgott I’ve found the visual difference between the iOS and android versions are normally quite a bit for other frameworks. Guess this is what you have mentioned. Do you tend to use design tokens then to keep designs consistent?
English
1
0
0
17
Zach
Zach@zsgott·
@wxwaim Love Flutter when: - don’t have heavy reliance on native apis. Pub packages help, but due diligence to see if they cover your need. - have your own design language (it won’t feel “native” on iOS specifically). Vibe wise, don’t know. I’d pick it simply because I know it well.
English
1
0
1
27
@wxwaim
@wxwaim@wxwaim·
Looking at mobile applications as well now: What’s your go to framework? - Capacitor - Flutter - React Native I’m leaning towards Flutter at the moment from some initial research.
English
11
0
11
969
@wxwaim
@wxwaim@wxwaim·
@zsgott Interesting, guess less resources versus native out there for flutter. If you could vibe in flutter just as well though would you pick flutter?
English
1
0
0
40
Zach
Zach@zsgott·
@wxwaim Flutter if you’re gonna write it. JS if you’re gonna vibe it. In the future though, I bet native is the clear choice all around if the LLMs get good enough.
English
1
0
1
37
@wxwaim
@wxwaim@wxwaim·
@stkuwanda Is this to grow your flutter experience/knowledge or do you find flutter the better framework?
English
1
0
0
33
Seyntium🐦
Seyntium🐦@stkuwanda·
@wxwaim i've worked with all 3 but this year i'm focusing on Flutter
English
1
0
1
61
@wxwaim
@wxwaim@wxwaim·
As much as frontend's are visually beautiful. Backends are equally an art and can be just as beautiful for devs to use.
English
0
0
0
42
@wxwaim
@wxwaim@wxwaim·
@Arif_AbdulAwal @dart_lang @FlutterDev Appreciate that, will join as well. Is there a resource that helps a more react js inclined dev better understand flutter and its best practices?
English
1
0
1
19
Abdul Awal
Abdul Awal@Arif_AbdulAwal·
@wxwaim @dart_lang I have been building with Flutter for 4 years. So, if you share the problems you are facing, I will be able to guide you. @FlutterDev community is really helpful.
English
1
0
1
22
@wxwaim
@wxwaim@wxwaim·
@Arif_AbdulAwal @dart_lang I am finding there is quite a bit of difference in structure between the 2. Any good resources/references you found to be helpful when developing with flutter that you could share?
English
1
0
1
11
Abdul Awal
Abdul Awal@Arif_AbdulAwal·
@wxwaim I tried RN too, But it's hard for me to build with RN. @dart_lang became my mother tongue over the years
English
1
0
1
17
@wxwaim
@wxwaim@wxwaim·
@crazibeat1 Nice, how do you decide between which to use for projects?
English
0
0
0
11
@wxwaim
@wxwaim@wxwaim·
@crazibeat1 👍🏻 Been a flutter dev for a while then?
English
1
0
0
65
@wxwaim
@wxwaim@wxwaim·
@BrinkkieRob Quite new to this, how is this different to just utilising flutter’s library? Would it be a different compiler?
English
0
0
0
120
@wxwaim
@wxwaim@wxwaim·
@EntrepGrow Was more if that’s your USP that you offer what others offer but in your free tier?
English
1
0
1
4
kpr
kpr@EntrepGrow·
@wxwaim This is in free tier man. yes
English
1
0
0
15
kpr
kpr@EntrepGrow·
I wasted yesterday. 😓 Didn’t build.😞 Didn’t ship.😟 Didn’t move forward.😥 Now I’m just sitting here feeling bad about it. How do you reset after an unproductive day?
English
125
3
96
4.8K
@wxwaim
@wxwaim@wxwaim·
@EntrepGrow But others offer this as well right or is it without these features for your free tier?
English
1
0
1
13
@wxwaim
@wxwaim@wxwaim·
@EntrepGrow Nice, there are quite a few solutions out there for this already. What makes yours different to the competition?
English
1
0
1
4
@wxwaim
@wxwaim@wxwaim·
@EntrepGrow Have some SaaS products in the works at the moment. Will share more as I go. How about you?
English
1
0
1
5
@wxwaim retweetledi
Chris Hayduk
Chris Hayduk@ChrisHayduk·
I'm rebuilding AlphaFold2 from scratch in pure PyTorch. No frameworks on top of PyTorch. No copy-paste from DeepMind's repo. Just nn.Linear, einsum, and the 60-page supplementary paper. The project is called minAlphaFold2, inspired by Karpathy's minGPT. The idea is simple: AlphaFold2 is one of the most important neural networks ever built, and there should be a version of it that a single person can sit down and read end-to-end in an afternoon. Where it stands today: - ~3,500 lines across 9 modules - Full forward pass works: input embedding → Evoformer → Structure Module → all-atom 3D coordinates - Every loss function from the paper (FAPE, torsion angles, pLDDT, distogram, structural violations) - Recycling, templates, extra MSA stack, ensemble averaging — all implemented - 50 tests passing - Every module maps 1-to-1 to a numbered algorithm in the AF2 supplement The Structure Module was the most satisfying part to build. Invariant Point Attention is genuinely beautiful — it does attention in 3D space using local reference frames so the whole thing is SE(3)-equivariant, and the math fits in about 150 lines of PyTorch. What's next: - Build the data pipeline (PDB structures + MSA features) - Write the training loop - Train on a small set of proteins and see what happens The repo is public. If you've ever wanted to understand how AlphaFold2 actually works at the level of individual tensor operations, this is meant for you. Repo: github.com/ChrisHayduk/mi…
Chris Hayduk tweet media
English
60
257
2.3K
82.8K