Public Posts
Explore posts from the community.
SSuper RPS • March 8th, 2026
View post
Add frontend state update with each action No wait system_ show updates dont wait for actins to be updated in db
1
SSuper RPS • March 8th, 2026
View post
Improving App Startup Time on Android and iOS
Mobile startup performance is crucial for user experience.
Common Optimizations
- Lazy load heavy modules
- Reduce bundle size
- Avoid expensive sync operations during launch
Example Lazy Import
const SettingsScreen = React.lazy(() => import("./SettingsScreen"))
These small optimizations can significantly improve first paint times.
1
SSuper RPS • March 7th, 2026
View post
Managing State in Large React Applications
State management becomes important as React apps grow.
Common Approaches
- Context API for simple global state
- Redux or Zustand for complex state
- Server state with React Query
Example Context
const AuthContext = createContext(null)
export function useAuth() {
return useContext(AuthContext)
}
Choosing the right state tool depends on application complexity.
1
SSuper RPS • March 6th, 2026
View post
Handling Push Notifications in Mobile Apps
Push notifications are critical for modern mobile apps.
Typical Flow
Mobile App -> FCM Token
Backend Service Stores Token
Notification Service Sends Push
Sending Push from Backend
pushManager.Send(PushRequest{
UserID: userID,
Title: "New Message",
Body: "You received a message",
})
Proper token management is essential to avoid failed notifications.
1
SSuper RPS • March 5th, 2026
View post
Bridging Native Modules in React Native
Sometimes React Native apps require native functionality like contacts, camera, or biometrics.
Native Module Example
import { NativeModules } from "react-native"
const { ContactsModule } = NativeModules
ContactsModule.getContacts().then(contacts => {
console.log(contacts)
})
Using TurboModules in the new architecture improves performance and type safety.
1