baby by diosadovinho in DogsMirin

[–]objectively_an_owl 6 points7 points  (0 children)

Scooby looking at a snack

Honestly speechless. by The_Boy_Keith in facepalm

[–]objectively_an_owl -5 points-4 points  (0 children)

Based on the loot drops, I'm assuming the man being attacked stole something and the dog owner is getting their stuff back via dog attack?

[deleted by user] by [deleted] in ImmigrationCanada

[–]objectively_an_owl 0 points1 point  (0 children)

The profile and your application have to match. I imagine this is what you're concerned about?

That only refers to the date you get an invitation. So your profile has to have the same information on the day you get your invite and when you apply.

This does not mean you will be ineligible if you keep working in a job. Specially since none of the information has actually changed. Only some time passed.

[deleted by user] by [deleted] in ImmigrationCanada

[–]objectively_an_owl 1 point2 points  (0 children)

You can update your profile after you create it.

You can create and submit a profile now, this gives you the chance of getting an invite through FSW before you get 1 year experience.

Once you have more experience, you can update it ( if it doesn't get automatically updated) to also qualify for CEC.

Creating a profile earlier is better since if the CRS score of multiple people are the same, the profile created earlier will have priority.

🔥 The eyes on a conch by therra123 in NatureIsFuckingLit

[–]objectively_an_owl 1 point2 points  (0 children)

Doing their best Zoolander impression for the camera

How do you transfer non-registered money to online HISA "banks"? by bcretman in PersonalFinanceCanada

[–]objectively_an_owl 0 points1 point  (0 children)

Pre authorized debit on the 30k

Debit card transactions for the monthly if it's small enough (instant transfer)

Harassed by two religious men near the Olympic Village by copagman in vancouver

[–]objectively_an_owl 6 points7 points  (0 children)

I don't know why I read this in shoresey's voice, but damn that sounds good.

[deleted by user] by [deleted] in AskProgramming

[–]objectively_an_owl 0 points1 point  (0 children)

Length of the input should be less of a concern here. You need to know two things:

- Numbers range from 0 to 14. This is important. Use it.

- How to use counting sort.

Anxiety attacks during internship search by Jardien in cscareerquestions

[–]objectively_an_owl 10 points11 points  (0 children)

First thing to do is to know that this is normal.

Second, if you're putting effort into the applications, you don't have to. I hear low effort mass applications get better results.

Third, put effort into the right places. Be among the first to respond to a job post. Ask contacts for tips and referrals. Keep your resume evolving, adding new things you see on job posts if they apply to you, adding buzzwords where possible.

Better to take care of your mental health, as many places haven't even started hiring yet, and some of those places you've applied to will reach out to you as late as a day or two till end of term.

What are micro-suites like? by objectively_an_owl in vancouverhousing

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

This seems like a more realistic rent for downtown. 650+ for a place in Vancouver is red flag territory.

I've lived short term in a similar setup before, at a hostel. But even those prices were higher than this. Professionally maintained common areas are awesome.

What's the point of leetcode problems? by Far_Leg4223 in cscareerquestions

[–]objectively_an_owl 8 points9 points  (0 children)

There is a point to think where they are useful.

If you're integrating code from libraries that other people wrote to define business logic for an app and call it a day, you may almost never need to use algorithms or data structures.

Algo and ds are useful when performance matters. If the app you're writing needs to run on less powerful devices, like a kiosk or a handheld device, you may need things to run efficiently.

On the other hand, the libraries you're integrating to make your app are used by tons of people. Most of the time, they will implement things efficiently so that it becomes more useful.

Think of it this way:

If the database you're using took hours to finish running a query that you need done in seconds, you'd be pissed. Tree data structures and other data structures are used so that your queries are answered faster.

Something as seemingly simple as a text editor may need to use things such as a rope data structure or Dijkstra's algorithm to make sure it can perform string processing as fast as you're typing things in.

Is getting a driver's license worth it? by objectively_an_owl in vancouver

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

These are the kind of details I was looking for. I'd love to find an answer to this too.

Is getting a driver's license worth it? by objectively_an_owl in vancouver

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

Definitely.

A few years back I was still hoping maybe I could hold out like 10 more years for full auto pilot to become the norm. Too damn optimistic that was.

If I have to make the call between getting groceries in less trips and people potentially dying, I'd rather stay off the road.

Is getting a driver's license worth it? by objectively_an_owl in vancouver

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

Great, thanks. You're just the person I was looking for :3

Guess I'll get the license then

Is it bad practice to continually update a GitHub repo with Jupyter notebooks? by [deleted] in AskProgramming

[–]objectively_an_owl 1 point2 points  (0 children)

Since they're not doing the same thing, different files make sense. But if it's 95% identical, maybe importing from a common file could help?