chocolatebananarhino
TTCTheo's Typesafe Cult
•Created by n3sonline on 6/18/2023 in #questions
Recommended architecture for my simple web scraping data visualizer for gym capacity
Instead of storing the data in a google sheet, store it in something like supabase. Then you can query the data using their realtime API. Or even just their regular serverless api
16 replies
TTCTheo's Typesafe Cult
•Created by .matzz. on 7/2/2023 in #questions
Should i finish learning c# or stop halfway and learn javascript
Well only you will know once you try. If you find it is becoming too confusing, you can decide what to do next. You can either switch back to C# and do Blazor for frontend, or you can focus more on the JS ecosystem (Which can be overwhelming regardless of whether you are doing c#)
30 replies
TTCTheo's Typesafe Cult
•Created by .matzz. on 7/2/2023 in #questions
Should i finish learning c# or stop halfway and learn javascript
There are no rules. Like you can spend 2 weeks focussing on JS, then switch back and forth. It is possible to learn them side by side. As you will most probably be building a project using both
30 replies
TTCTheo's Typesafe Cult
•Created by .matzz. on 7/2/2023 in #questions
Should i finish learning c# or stop halfway and learn javascript
A lot of knowlege translates between languages. And as long as you becoming a better developer overall, thats all that matters
30 replies
TTCTheo's Typesafe Cult
•Created by .matzz. on 7/2/2023 in #questions
Should i finish learning c# or stop halfway and learn javascript
Not really. And even if it does, it will be much easier to "re-learn"
30 replies
TTCTheo's Typesafe Cult
•Created by .matzz. on 7/2/2023 in #questions
Should i finish learning c# or stop halfway and learn javascript
You dont have to. (finish the course) You can jump right in. What you already know will translate for the most part. Functions, for loops etc.I would reccomend jumping into typescript soon as its more similar to c# than vanilla javascript. But it will also be a bit more challenging in the beginning
30 replies
TTCTheo's Typesafe Cult
•Created by .matzz. on 7/2/2023 in #questions
Should i finish learning c# or stop halfway and learn javascript
I mean, there is no harm in taking some time to learn JS
30 replies
TTCTheo's Typesafe Cult
•Created by .matzz. on 7/2/2023 in #questions
Should i finish learning c# or stop halfway and learn javascript
In that case there is no need. C# with blazor is more than enough to build full projects
30 replies
TTCTheo's Typesafe Cult
•Created by .matzz. on 7/2/2023 in #questions
Should i finish learning c# or stop halfway and learn javascript
It depends on your goals. C# is a great language and you can still learn a lot more. Especially with Asp.Net Core, Databases and SignalR. You can build full apps without much JS now. I recommend you continue with it just because of your momentum. Switching now will slow you down for sure. But if your goal is to become a front-end developer, then you can switch.
30 replies
TTCTheo's Typesafe Cult
•Created by Smadger on 7/2/2023 in #questions
Get types of return value from trpc api call
RouterOutput["discord"]["getUserTeams"]
10 replies
TTCTheo's Typesafe Cult
•Created by Wezter on 10/15/2022 in #questions
Cross platform authentication
OK that makes sense thanks. Now you can still make use of the env file
172 replies
TTCTheo's Typesafe Cult
•Created by Wezter on 10/15/2022 in #questions
Cross platform authentication
That did not work for me. I was able to fix it by adding this to app.json
172 replies
TTCTheo's Typesafe Cult
•Created by Wezter on 10/15/2022 in #questions
Cross platform authentication
Hi @An7 I am trying out your draft PR and almost have it working. I am running into an issue where the expo app is trying to connect to connect to
http://localhost:3000/api/auth/proxy
when signing in instead of the serverUrl I have set http://192.168.0.132:3000
. I have tried a few things like set the .env NEXTAUTH_URL=http://192.168.0.132:3000
in the expo app as well as used <SessionProvider baseUrl={serverUrl}>
but it still seems to be connecting to localhost.
I have used @albastru repo https://github.com/DavidIlie/t3-all-inclusive as a guide as well. Any idea on how I can go about setting the serverBaseUrl correctly?172 replies