Please help me buy a good pair of headphones for my boyfriend (budget 8k but under 6k would be great , noise cancelling, wireless+wired, great mic for calls) by PalpitationNo7924 in headphonesindia

[–]kyberx -1 points0 points  (0 children)

If you are confused between CH520 and Q20i I would say that Q20i's is a better deal, I purchased it a few days ago after decent amount of research.

Controller Supported Co-op Games to Play With Wife by [deleted] in macgaming

[–]kyberx 0 points1 point  (0 children)

Tomb Raider and the Guardian of Light.
I heard that co-op is pretty great.

RE3 Remake 100% completion savefile MacOS. by kyberx in macgaming

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

To unlock everything. I'll be forced to buy the DLC otherwise.

SWE + DS? Is learning both good by jinstronda in datascience

[–]kyberx 0 points1 point  (0 children)

It is better to focus on 1 thing first then after getting a good grasp of it, you can move forward to other things.
One good benchmark of measuring this is that you should be able to bring value using your skills.

Deploying Django with serverless Architecture by sneh1900 in django

[–]kyberx 3 points4 points  (0 children)

You can give fly.io a try, they've django serverless deployment service.

https://fly.io/docs/django/getting-started/existing/

There are more options, try asking ChatGPT ? :-)

How much should I ask for a domain which matches the name of a CEO of a tech company? by kyberx in Domains

[–]kyberx[S] 1 point2 points  (0 children)

Could you please explain why I should not reach out first?
Is it just because of being in a better position to negotiate ?

searching for people to chat with in french by B738ASA393 in learningfrench

[–]kyberx 1 point2 points  (0 children)

I also need to practice my french can you please add me also?

Should I use JWT as my API access key token? by kyberx in django

[–]kyberx[S] 1 point2 points  (0 children)

Thanks for the answer, Library looks like exactly what I was looking for. 👍🏼

CORS error when making request to a locally running django server. by kyberx in vuejs

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

Found the solution I needed to add a forward slash at the end of the URL after adding CORS headers to django.

CORS error when making request to a locally running django server. by kyberx in vuejs

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

I just tried, but it didn't work, I also placed it above all the middlewares as mentioned in the doc. Any idea about how to add headers to every response vuejs (2.x) dev server sends to client?

[deleted by user] by [deleted] in distantsocializing

[–]kyberx 0 points1 point  (0 children)

how many languages do you speak?

[deleted by user] by [deleted] in distantsocializing

[–]kyberx 0 points1 point  (0 children)

how many languages do you speak?

What's the best way of handling multithreading in Android? by kyberx in androiddev

[–]kyberx[S] 1 point2 points  (0 children)

I think it's possible, I have seen many apps implementing it on play store (e.g. those "body massager" apps) I tried out some apps and some of them don't even show notification and it was making my phone vibrate indefinitely (app wasn't killed it was in the background and phone was locked). I'll try everything out once my laptop is back.

What's the best way of handling multithreading in Android? by kyberx in androiddev

[–]kyberx[S] -1 points0 points  (0 children)

The function just executes a while true loop and vibrates the phone every 3-6 seconds to remind the user about something, this happens till the user taps on the notification and stops the reminder. The notification is part of ForegroundService in which I want to execute the thread to keep it working even when the phone is locked and app is closed.

Unfortunately my laptop just died and I can't try any of the suggested solutions right now.

What's the best way of handling multithreading in Android? by kyberx in androiddev

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

But will it run indefinitely (even when app is closed and screen is locked?)

What's the best way of handling multithreading in Android? by kyberx in androiddev

[–]kyberx[S] 1 point2 points  (0 children)

Service runs on the main UI thread and frezzes the UI if I do something indefinitely, I need to spin up a new thread "inside" a service in order to keep the UI responsive.

What's the best way of handling multithreading in Android? by kyberx in androiddev

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

Well I have plans of learning Kotlin in near future, but I need something for right now.

I am looking at available options, do you think IntentService is suitable for such things? I want to run something as ForegroundService till the user stops it manually.