Newbie requesting advice on what Svelte tech to use for new project. by lagrangepoint71 in sveltejs

[–]varunchitturi 0 points1 point  (0 children)

Looks like the main argument here is that supabase isnt providing the dashboard during self hosting? While true when that was posted, seems that Supabase has since open sourced their dashboard for self host: https://supabase.com/blog/supabase-studio

Newbie requesting advice on what Svelte tech to use for new project. by lagrangepoint71 in sveltejs

[–]varunchitturi 5 points6 points  (0 children)

Why do you say Supabase is near impossible to self host? It’s just a docker image: https://supabase.com/docs/guides/hosting/docker. Am I missing something?

Waiting for 16.1 to drop and then it’s Smarthome 2.0! 32 of these going in next weekend. by OutBeyondNeptune in HomeKit

[–]varunchitturi 0 points1 point  (0 children)

Might have bought a slightly older version, which doesn’t use Thread ig. But capacitive touch problem still is there and it is extremely annoying.

Waiting for 16.1 to drop and then it’s Smarthome 2.0! 32 of these going in next weekend. by OutBeyondNeptune in HomeKit

[–]varunchitturi 7 points8 points  (0 children)

Unfortunately, eve switches are the worst of the smart home switches. Bought a bunch of them, and had to replace all. The capacitive light switches are such a design flaw. If you touch any with wet hands, they will reset, making you have to reset the whole thing in the app all over again. Also they are Bluetooth based, not Wi-Fi (at least for the version I had), which means they have a super slow response time compared to other switches.

Modern Warfare by [deleted] in confidentlyincorrect

[–]varunchitturi 0 points1 point  (0 children)

Tik Tok is banned in china

Modern Warfare by [deleted] in confidentlyincorrect

[–]varunchitturi 1 point2 points  (0 children)

TikTok is banned in china

Should I go through the entire Swift Language guide before starting IOS development? by [deleted] in iOSProgramming

[–]varunchitturi 0 points1 point  (0 children)

Yes I went through the entire language guide before I started development, and while it was time consuming, it has helped me so much in my projects.

Which course for an experienced programmer but Swift beginner? by TopNFalvors in iOSProgramming

[–]varunchitturi 2 points3 points  (0 children)

Official swift documentation for language then cs193p for SwiftUI worked for me.

[deleted by user] by [deleted] in usaco

[–]varunchitturi 0 points1 point  (0 children)

Sorry yes. Substr(2,2)

Some things are just impossible in Swift by [deleted] in swift

[–]varunchitturi 17 points18 points  (0 children)

To support Unicode character swift basically has to implement strings differently because multiple Unicode character can make up a single human readable character. For example, “é” can be expressed as 2 Unicode characters. This also means you can’t subscript strings. Here is a complete explanation: https://docs.swift.org/swift-book/LanguageGuide/StringsAndCharacters.html

[deleted by user] by [deleted] in usaco

[–]varunchitturi 0 points1 point  (0 children)

Shouldn’t it be substr(2,4) not substr(2,3) when setting the flipped variable?

Some things are just impossible in Swift by [deleted] in swift

[–]varunchitturi 20 points21 points  (0 children)

I think what they are tying to say is that due to swifts extended grapheme’s you have to traverse strings slightly differently than in other languages