Fullstack engineer (3.8y). I ship mobile + web end-to-end → React Native · Next.js · NestJS · AWS. Built apps | 10k+ users. Building in public. Open to roles.
Fullstack engineer, 3.5 yrs. I take ideas → App Store, Play Store & web, end-to-end.
Shipped: a 4.9★ app | 10k+ downloads, a geo offers app | 1,000+ daily users, agri-tech for 1,000+ farmers.
Stack: RN · Next.js · NestJS · AWS
I post what I learn 👇
@JunaidAckroyd Hi junaid,
In my past companies, I’ve taken multiple products from 0->1, launched them to production, scaled to thousands of users, and improved retention through performance and UX.
Can you please DM me i will all the links
@nikillxh Hi Nikhilesh,
I came across the Web Developer position and was immediately excited because it aligns perfectly with my background and career goals. In my past companies, I’ve taken multiple products from 0->1, launched them to production, scaled to thousands of users.
@wh0sumit@rightfitso Hi Sumit,
I came across this Fullstack Engineer and was immediately excited because it aligns perfectly with my background and career goals. In my past companies, I’ve taken multiple products from 0->1, launched them to production, scaled to thousands of users.
@mchulet Hi,
I don’t just code apps. I take ideas from 0→1 and scale them to thousands. React, Next.js, React Native, Node.js, AWS Serverless Lambda and Cloudflare Workers are my toolkit, but speed, ownership, and great UX are what I actually bring to the table.
@vinicios_112 Hey Vinicios, I'm Parth. 3+ years shipping production apps, including real-time tracking, live score feeds, and geo-based features that sports apps usually need. 10+ apps live on both stores.
@PranayReddy05@shiri_shh The toughest part isn't building the app, it's shipping it without breaking it at scale. Most MVPs are built fine, they fall apart at first 500 DAUs because nobody thought about state management, crash monitoring, or OTA updates. What's the thing you're currently wrestling with?
@doitwellnow Hi Hayford,
I don’t just code apps. I take ideas from 0→1 and scale them to thousands. React Native, React and Next.js are my toolkit, but speed, ownership, and great UX are what I actually bring to the table. If you’re looking for someone who ships fast.
Make your app work offline.
Pair React Query with AsyncStorage for caching:
persistQueryClient({
queryClient,
persistor: createAsyncStoragePersistor(),
});
Offline-first = real reliability.
#ReactNative#MobileDev#Offline
Stop juggling API states manually.
Use React Query.
✅ Caching & refetching
✅ Auto retries
✅ No more loading / error spaghetti
const { data, isLoading } = useQuery(['users'], fetchUsers);
Smart networking, less code.
#ReactNative#MobileDev#ReactQuery
For global state that feels reactive, try Recoil.
✅ Atom-based
✅ Async selectors
✅ Works great with Suspense
const userState = atom({ key: 'user', default: null });
Lightweight, declarative, and fast.
#ReactNative#MobileDev#Recoil