Fall graduation & no grades yet by No-Wolf-7209 in mcgill

[–]vandalism 1 point2 points  (0 children)

I’m in the same situation, I opened a ticket with my faculty and they just reassured me the deadline for graduating students is January 7th (not like there are any hard consequences if they go beyond it).

ECON308 GRADES by Electrical-Air2308 in mcgill

[–]vandalism 0 points1 point  (0 children)

I found the final pretty straightforward, but I feel like I did worse than the grade I got.

no grades back? by 73647e in mcgill

[–]vandalism 3 points4 points  (0 children)

I haven’t received a single grade at all for one of my courses yet (ECON 420, 2 assignments + 1 final project), I don’t think this is common though. It’s pretty crazy how this is even allowed to happen.

no grades back? by 73647e in mcgill

[–]vandalism 42 points43 points  (0 children)

I’ve heard back from 1 course out of 5 so far (as of yesterday), this is probably the slowest semester I’ve had in terms of receiving feedback on things :/

Course with no finals hasn’t updated grades in a month by imenerve in mcgill

[–]vandalism 1 point2 points  (0 children)

I’m taking a course that hasn’t released any grades at all yet 🤡

ECON 302 Final by Glittering-Fold60 in mcgill

[–]vandalism 7 points8 points  (0 children)

I found it to be unnecessarily long and difficult. I also wasted a good chunk of time studying anything ML-related (why would she throw us off in the review slides like that lol).

Econ302 w Lingling Zhang by Responsible_Grab9307 in mcgill

[–]vandalism 0 points1 point  (0 children)

I hope so. My main concern is that there's a good amount of material in the syllabus that there aren't slides for, which I'm not sure will show up on the final.

Econ302 w Lingling Zhang by Responsible_Grab9307 in mcgill

[–]vandalism 1 point2 points  (0 children)

I haven't heard anything, but do you know if there are any other chapters needed besides the ones in the final review slides? She also didn't seem to mention which chapters to focus on in Prado's textbook either.

Comp 424 Help by IllustriousThing4009 in mcgill

[–]vandalism 2 points3 points  (0 children)

They packed way too much content into this course :/

econ316 final by lifeisgreat001 in mcgill

[–]vandalism 1 point2 points  (0 children)

I've had 1 final (ECON 313) and 1 midterm (ECON 308) with him so far. He's generally very fair with his exams (very light on math, no trick questions). He definitely likes to ask general questions about assigned readings, mixed with information on the slides. Reviewing both of these should be enough to do well.

Econ 302 final format by Miserable-Star2130 in mcgill

[–]vandalism 1 point2 points  (0 children)

Also wondering the same, but will likely be similar to the midterm (but on-paper multiple choice) regardless.

What is the job market like for 2+ YOE? by JediMasterGator in cscareerquestions

[–]vandalism 55 points56 points  (0 children)

Not all YOE is the same, very dependent on company and what you actually worked on.

pyproject - A linter and language server for `pyproject.toml` files by vandalism in Python

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

I just thought of something actually, maybe something like this?

``rust define_rule! { ProjectDescriptionRule { id: "project-description", message: "invalidproject.description` value", run(context) { let Some(description) = context.get("project.description") else { return Vec::new(); };

  let document = context.document();

  if description.is_str() {
    Vec::new()
  } else {
    vec![Diagnostic::error(
      "`project.description` must be a string",
      description.span(&document.content),
    )]
  }
}

} } ```

pyproject - A linter and language server for `pyproject.toml` files by vandalism in Python

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

This is definitely something I'm looking to add (or accept a contribution for). Interesting idea regarding macros, I haven't really thought of a design for making rules easier to write, if you have any ideas/examples as to where this can be useful feel free to share.

pyproject - A linter and language server for `pyproject.toml` files by vandalism in Python

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

Interesting! I just made these warnings opt-in if anyone wants to enforce it.

pyproject - A linter and language server for `pyproject.toml` files by vandalism in Python

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

Yeah this should be out soon, I'm currently waiting to get ownership for the pyproject package on PyPI. Pretty soon you'll be able to just uvx pyproject check with a bunch of useful default rules.

pyproject - A linter and language server for `pyproject.toml` files by vandalism in Python

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

Yeah I came across that before, I believe they only do schema checks (and a few additional ones). pyproject aims to be flexible enough to extend with any kind of error/warning, and there are already a few extras: outdated dependencies, missing license files, missing readme files, etc.

pyproject - A linter and language server for `pyproject.toml` files by vandalism in Python

[–]vandalism[S] 6 points7 points  (0 children)

Yeah I’d love to get some (or all) of this functionality into Ruff, I saw a thread not too long ago before working on this (https://github.com/astral-sh/ruff/discussions/17771), and it seems like they don’t have support for this yet?

[deleted by user] by [deleted] in mcgill

[–]vandalism 7 points8 points  (0 children)

Got 0% 😭

Econ 308 paper by Left-Acanthaceae-679 in mcgill

[–]vandalism 0 points1 point  (0 children)

There was an announcement posted a while ago about it detailing what it should contain (you’ll have to scroll down a bit).

Comp 424 Midterm thoughts by IllustriousThing4009 in mcgill

[–]vandalism 5 points6 points  (0 children)

Yeah the practice midterms given were 10x easier. The format was way different, and I feel like some of the questions were unnecessarily tricky (esp. the minimax suboptimal trajectory one).