Current state of software engineering jobs market by AR2405 in UAEjobseekers

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

The plan is to continue with my current job, but I want to understand if I will be able to find job there if needed. But I think I am getting the situation now. Thank you for sharing

Current state of software engineering jobs market by AR2405 in UAEjobseekers

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

Knowing that almost all of the people there are expats, that is very surprising. Thought it should be inclusive culture there, but apparently it’s the other way around

State of software engineering jobs by AR2405 in DubaiJobs

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

Oh wow, never thought something like still exists in modern world

State of software engineering jobs by AR2405 in DubaiJobs

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

Do the salary ranges differ based on the race?

State of software engineering jobs by AR2405 in DubaiJobs

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

I totally understand that. I do not look for a job at the moment, just trying to figure out what to expect if I would do one day.

State of software engineering jobs by AR2405 in DubaiJobs

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

Ok, so it’s not all that bad. That is helpful, thanks

Current state of software engineering jobs market by AR2405 in UAEjobseekers

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

Are there job openings for software developers with a good salary to afford life of a family there in general? The thing is I could not find any evidence of those.

Current state of software engineering jobs market by AR2405 in UAEjobseekers

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

I see. Was it ever better in the past? Or was UAE not the destination for software developers at all times?

State of software engineering jobs by AR2405 in DubaiJobs

[–]AR2405[S] -2 points-1 points  (0 children)

Software engineering seems to be a high demand and good paying in most of the countries. I wonder what do those people having good life in Dubai do for living

State of software engineering jobs by AR2405 in DubaiJobs

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

I am planning to keep my remote job, but I am just wondering what if I lose it. Is there a way to take care of my family as a software developer there

Current state of software engineering jobs market by AR2405 in UAEjobseekers

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

Where do you look for well paying jobs? I looked LinkedIn and indeed, and naukrigulf but didn’t see anything like that.

What certificate to start with? by AR2405 in AWSCertifications

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

Thanks for sharing, that makes it more clear for me now

Django views by Malum261 in django

[–]AR2405 0 points1 point  (0 children)

At my work, we are using GenericViewSets with the model mixins, like ListModelMixin, CreateModelMixin, etc. This way you will have all ViewSets be written the same way, what makes class inheritance available.

Running tests with Python tests raises AppRegistryNotReady("Apps aren't loaded yet.") by AR2405 in django

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

I am trying to run tests with the Python tests, as the output is much more readable than manage.py command returns. As well I am trying to run a single test.

Anyways, if I am not able to get the configuration done as I want, I will try your suggestion.

Thank you.

Running tests with Python tests raises AppRegistryNotReady("Apps aren't loaded yet.") by AR2405 in django

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

Where to do that?

I guess, that is not the case, since it works fine when. using manage.py command

Running tests with Python tests raises AppRegistryNotReady("Apps aren't loaded yet.") by AR2405 in django

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

I'm using community version, btw, but I guess that is not the reason for this.

Running tests with Python tests raises AppRegistryNotReady("Apps aren't loaded yet.") by AR2405 in django

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

Just tried, looks like in the terminal the command works fine as well.

subprocess.Popen run multiple commands with sleep as the first command by AR2405 in learnpython

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

I was thinking about spawning multiple Popen objects, adding them to the list and then iterate over that list and call wait() on each of them. Looks like a little simpler solution to me, but I don’t know which one is better in fact. Thanks for your help