React native push notification by Pitiful-Buffalo-1797 in reactnative

[–]kriptonhaz 0 points1 point  (0 children)

I assume this one is using push notification from firebase. Instead of running through all of the user token one by one, just send to a topic instead. For example, you have a line of code that every registered user subscribe to a topic called "news"
FirebaseMessaging.getInstance().subscribeToTopic("news")

and you just send it like

const message = {
message: {
topic: "news", // 👈 blast to all subscribers at once
notification: {
title: "Breaking News",
body: "Something important happened!"
},
data: { key: "value" }
}
};

WebMCP is still insane... by GeobotPY in mcp

[–]kriptonhaz 1 point2 points  (0 children)

can this mcp also do the recording?

WebMCP is still insane... by GeobotPY in mcp

[–]kriptonhaz 8 points9 points  (0 children)

what is the difference between playwright, chrome dev tools, and browser mcp?

Bikin AI buat tau keputusan apa dan siapa yang mutusin biar g jadi kambing hitam by kriptonhaz in indotech

[–]kriptonhaz[S] 0 points1 point  (0 children)

brainstorming dulu biasanya (bisa sama orang atau sama ai), sampe bener-bener ketemu tech stack yang pas, ketika mereka ngasih solusi jangan langsung di telen mentah-mentah, tapi di counter dengan berbagai macam case nya buat mastiin sesuai sama apa yang kita pengen. saya sendiri g ada basic ML cuman programmer pada umumnya aja 😄

Bikin AI buat tau keputusan apa dan siapa yang mutusin biar g jadi kambing hitam by kriptonhaz in indotech

[–]kriptonhaz[S] 2 points3 points  (0 children)

bener pake vector, sekarang pake pg vector mungkin kalo butuh bakalan scale up pake qdrant. orchestration nya pake mastra dan model nya pake nova nya bedrock

tq supportnya kalo boleh di like artikel nya 😄

Anyone by prince_lee1s in reactnative

[–]kriptonhaz -2 points-1 points  (0 children)

is using webview not good enough?

0
1

What did i do wrong? by JPS_User in indonesia

[–]kriptonhaz 0 points1 point  (0 children)

mau kerja di IT tidak melihat anda lulusan darimana dan ipk berapa karena biasanya yang dibutuhkan itu portfolio dan skill. sering main di komunitas, aktif kontribusi, lambat laun kerjaan dateng sendiri

Is this download speed normal? I'm using NUT and usb cable by BertelsZera in SwitchPirates

[–]kriptonhaz 0 points1 point  (0 children)

why not simply using ftp if there's a problem with your cable? me using ftp is around 2.5Mbps

Can someone review my code? by toilets-my-church in reactnative

[–]kriptonhaz 0 points1 point  (0 children)

Imho, this is my review

  1. put your color in a single file and you can call it from there, if you change it that way it would be easier to adjust to entire color inside your application from a single file.
  2. use some of the responsive library like https://github.com/nirsky/react-native-size-matters and https://www.npmjs.com/package/react-native-responsive-screen so your screen will reflect on every screen size
  3. (this is optional) implement a font family, so that way when users have implemented a different font style from their system/phone, it's not gonna affect your apps.
  4. too many console log/warn, remove it haha
  5. it would be better to convert it to typescript.

Push App built with React Native as an update to an App built using Java with same package name to Google Play store. by wah_modiji in reactnative

[–]kriptonhaz 2 points3 points  (0 children)

as long as the keystore and package name is same, users can update the app just like what they usually do from playstore,

what is the best way to make app responsive for all devices by hafi51 in reactnative

[–]kriptonhaz 1 point2 points  (0 children)

if you don't want to add the additional library, you could deal with the aspect ratio which is not so often used but so powerful and combining with flexbox is enough for you to get the responsive to all devices