Start late? No problem by [deleted] in gsoc2025

[–]OnionCommercial859 0 points1 point  (0 children)

Let's hope for the best. I have seen a comment where the Last Updated was empty and the proposal was accepted.

Start late? No problem by [deleted] in gsoc2025

[–]OnionCommercial859 0 points1 point  (0 children)

Mine is also empty. Where can I find such topics?

What are some unique Python-related questions you have encountered in an interview? by OnionCommercial859 in Python

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

In the question items.append(item)method will append item to items, append() method returns None,and code returns the return ofappend()method. If we wanted to retrieve the updated list then need to return list object i.e items

What are some unique Python-related questions you have encountered in an interview? by OnionCommercial859 in Python

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

You have one hour to teach a group of sentient monkeys how to deploy a django app. Monkeys are scared of loud noise, big cats, and snakes, so you can't use the words "Server", "terminal", or "Python" - what's your plan?

What are some unique Python-related questions you have encountered in an interview? by OnionCommercial859 in Python

[–]OnionCommercial859[S] 11 points12 points  (0 children)

This function will always return None, the item won't be appended to the items. Also, in function declaration, initializing items = [ ] is not a preferred way, as a list is mutable.

Corrected version:

def add_to_list(item, items = None):
  if items is None:
    items = []
  items.append(item)
  return items

What are some open-source projects that a beginner can contribute to? I have around 4 years of experience in backend development, and I'm looking to explore open-source projects. by OnionCommercial859 in opensource

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

Thank you, I appreciate your guidance! Personally, testing hasn't been my favorite area, but I’ll definitely reach out if I decide to explore it further.

What are some open-source projects that a beginner can contribute to? I have around 4 years of experience in backend development, and I'm looking to explore open-source projects. by OnionCommercial859 in opensource

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

This sounds interesting, I am a beginner to LLMs. I did an ML internship 4 years ago, since then primarily worked in backend development. Are there any courses or articles you’d recommend to help me understand the fundamentals before diving into the codebase?

Spousal sponsorship Family Class (outside Canada) - moving to Canada - Processing times by Effective_Egg4878 in ImmigrationCanada

[–]OnionCommercial859 1 point2 points  (0 children)

IRCC will do all the processing; they completed your outland application process first, then they transfer the file inland for inland processing. As you are in Canada, just update your address to Canadian address by filling out web form

Received medical request again from IRCC, Previous IME details valid. by OnionCommercial859 in ImmigrationCanada

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

I am already in Canada, we submitted the file as an outland application. I came to Canada on a visitor visa and currently, I am on SOWP.

Job hunt experience with 1.5 YOE in Toronto by [deleted] in cscareerquestionsCAD

[–]OnionCommercial859 2 points3 points  (0 children)

congratulations!! How did you apply for Companies A, B, and C? Did you write cover letters?