.The_bl | 0x662c
.The_bl | 0x662c
TTCTheo's Typesafe Cult
Created by FBIPolice on 4/29/2025 in #questions
Email Provider
i like proton mail. easy to create without sms, and just use smoothly
4 replies
TTCTheo's Typesafe Cult
Created by Mikarica on 4/30/2025 in #questions
Use AI to map data from a spreadsheet to the database
yeah, you don't need to whole data to gpt. just send header of sheet & db column, then get matching data. And then you can extract real row datas from sheet with result map
10 replies
TTCTheo's Typesafe Cult
Created by Mikarica on 4/30/2025 in #questions
Use AI to map data from a spreadsheet to the database
after parse header of excel sheet, then you can pass the header columns and expected mapping database fields. GPT will return mapping data with each header column and db column field. Then you can use @Mika
10 replies
TTCTheo's Typesafe Cult
Created by Mikarica on 4/30/2025 in #questions
Use AI to map data from a spreadsheet to the database
it will help you to extract out correct datas
10 replies
TTCTheo's Typesafe Cult
Created by Mikarica on 4/30/2025 in #questions
Use AI to map data from a spreadsheet to the database
oh, then use gpt-4-turbo model
10 replies
TTCTheo's Typesafe Cult
Created by Mikarica on 4/30/2025 in #questions
Use AI to map data from a spreadsheet to the database
@Mika you may need to parse sheet using xlsx, csv-parser and then extract header from there. And then you can get each column data what you want and can map to database. I don't think AI mandatory. If you wanna AI to do it, then you may need to use GPT-4 simply
10 replies
TTCTheo's Typesafe Cult
Created by xLeay on 4/21/2025 in #questions
Help with React Native dev
so far best tips for developing, not even just for react native learning. @xLeay here is one more addtional thing for you. I don't know it's helpful,but save words if your aim is to learning just react native, their working flow, bridge knowledge... then I agree with @Waffleophagus But if you want to be sr level of mobile enginer, you must learn about native side as well java/kotlin, swift. how android sdk/ndk work, androidmanifest.xml, package manage, device sensitive motions and so on. how to compatible with devices as well. in most cases, lots of web developers are saying he is senior react native devloper. react native coding is almost same with reactjs. So moving to mobile engineer is easy for react devs. but mobile is not web. without native side skill, they will be stick in future when they dig in mobile sensitive issue, and stay in only chatgpt. it will make your manager disappointed. to become sr. mobile engineer, it's good to start with java study first. native develop is not difficult, after getting main points. in future development, it could be helpful.
16 replies
TTCTheo's Typesafe Cult
Created by Sofia Kotova on 4/20/2025 in #questions
Video Editor App
@Sofia Kotova For direct video edior tool, ffmpeg is the best for remuxing, subtitling
5 replies
TTCTheo's Typesafe Cult
Created by .The_bl | 0x662c on 4/8/2025 in #questions
Need help to integrate Odoo in our system
Is there any official guide about how to use XML-RPC request with some Odoo models?
3 replies
TTCTheo's Typesafe Cult
Created by şiar_619 on 3/19/2025 in #questions
Uploadthing images won't open
if you're using nextjs,you can simply do like this to next.config.js module.exports = { images: { domains: ['example.co'], }, };
9 replies
TTCTheo's Typesafe Cult
Created by şiar_619 on 3/19/2025 in #questions
Uploadthing images won't open
you need to increase
9 replies
TTCTheo's Typesafe Cult
Created by şiar_619 on 3/19/2025 in #questions
Uploadthing images won't open
it could be check error response. If they return 403 Forbidden or 429 Too Many Requests, you’ve likely hit the limit.
9 replies
TTCTheo's Typesafe Cult
Created by şiar_619 on 3/19/2025 in #questions
Uploadthing images won't open
Also try to compare old images vs new images. if you're using third party image url, you may need to add domain on config file
9 replies
TTCTheo's Typesafe Cult
Created by şiar_619 on 3/19/2025 in #questions
Uploadthing images won't open
@şiar_619 It could be cache problem. Vercel aggressively caches content, so your app might be serving an older version without recognizing new images. try to clear cache or redeploy manually on vercel dashboard
9 replies
TTCTheo's Typesafe Cult
Created by flowmotion on 2/26/2025 in #questions
Create a TS function to deep call .toString() on all Date objects without type casting?
@flowmotion You can do. You need to define a utility type that recursively replaces Date instances with string, and then create a function that applies this transformation.
3 replies
TTCTheo's Typesafe Cult
Created by plyglt on 2/25/2025 in #questions
How do I prefetch trpc serverside and then hydrate the client?
4 replies
TTCTheo's Typesafe Cult
Created by codelilac on 2/26/2025 in #questions
Better auth for a swift app with a hono backend - pain & suffering or a good idea?
You're making a solid choice by opting for Hono/TypeScript over a BaaS like Supabase, especially if you aim for cross-platform compatibility in the long run. However, your concerns about authentication complexity without a dedicated Swift SDK are valid. In my experience, I'd recommend Supabase to you for easy setup and fully supported built-in manage flow. But you're using Entra ID for login flow, and then Supabase doesn't support it natively, so Hono/TS would be good choice for you. It will take more times like customize all thing such as OAuth, JWT, Swift integration
4 replies
TTCTheo's Typesafe Cult
Created by msobkyy on 2/15/2025 in #questions
Trojan Virus in React Project!!
U must check package.json file carefully. There are operations. Each operation carefully and also check config, .env files something like. These files can contain malwarebytes commonly.It's so dangerous. Once you ran npm run start, you computer will be fully managed under hacker
12 replies
TTCTheo's Typesafe Cult
Created by 泣いオオカミー ≛ 🏆 ≛ on 2/6/2025 in #questions
Question about refresh /access token
Only client side will be stuck when both token are expired or invalid
28 replies
TTCTheo's Typesafe Cult
Created by 泣いオオカミー ≛ 🏆 ≛ on 2/6/2025 in #questions
Question about refresh /access token
from middleway, you can check both tokens automatically. So even access token invalid, if refresh token is valid, new access token will be generated automatically and continue request.
28 replies