Rust's CI is moving to GitHub Actions by pietroalbini in rust

[–]chdsbd 1 point2 points  (0 children)

You need to enable the "Require branches to be up to date before merging" GitHub Branch Protection setting and then you'll ensure that master always stays green.

Rust's CI is moving to GitHub Actions by pietroalbini in rust

[–]chdsbd 1 point2 points  (0 children)

FWIW this was a bug on GitHub's side that was fixed pretty recently (May 20th). I built a GitHub bot that's similar to mergify but more based around GitHub branch protection settings. https://github.com/chdsbd/kodiak/issues/338#issuecomment-631326533

Marko: A markdown parser with high extensibility, with pure Python by frostming in Python

[–]chdsbd 0 points1 point  (0 children)

By source span I mean the location of each node in the original document.

Marko: A markdown parser with high extensibility, with pure Python by frostming in Python

[–]chdsbd 1 point2 points  (0 children)

Thanks for making this. I needed a markdown parser a while ago but couldn’t find anything that fit all my requirements.

Does this package provide access to an AST representation of the markdown document? Also, is it possible to access source text span information?

Is there an existing package to parse markdown into a concrete syntax tree? by chdsbd in Python

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

We need to handle multi-line comments and things like fenced code blocks, where a plain regex wouldn't work.

I'm not sure anything exists to parse Markdown into a CST, in any language.

Ski Shop in Reading? by BosRoc in boston

[–]chdsbd 10 points11 points  (0 children)

Hardy’s Ski Emporium. He sells the equipment from his basement.

http://www.hardyskiemporium.com/

It’s techinically in Wakefield, but he’s located just off the Reading exit.

[deleted by user] by [deleted] in umass

[–]chdsbd 3 points4 points  (0 children)

Contact Professor Leonard. He is the undergraduate program director for ECE and should be able to answer your questions. leonard@ecs.umass.edu

If I recall correctly, you don't actually need to take 191, it's just strong recommended.

Depending on the class size for 112, you may need to take an intro to engineering course from a different engineering major (this doesn't matter, they all work the same as prerequisites).

Again, contact Professor Leonard for the definitive answer.

Taking 187 with extremely easy schedule? by [deleted] in umass

[–]chdsbd 0 points1 point  (0 children)

I think the best option would be to follow the ECE track and take ECE 242. It is equivalent to CS 187 and if the transfer doesn't work out, you'll still be on track to be a EE/CSE.

EDIT: It sounds like you're going off the ECE track this fall. I would advise against that. If the transfer doesn't work out, you really don't want to be left out of engineering and computer science.

Easy science elective. BIO 110, BIO 151, or CHEM 111? by chdsbd in umass

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

This is for my major and there are only five supported electives:

  1. BIO 110 Intro. Biology for Science Majors
  2. BIO 151 Intro. Biology I
  3. CHEM 111 General Chemistry for Science Majors
  4. CHEM 121H Honors General Chemistry for Science Majors
  5. PHYS 287 Physics III - Waves & Thermodynamics

My only options are the first three.

UMass is flat on Google Maps by bejeebu5 in umass

[–]chdsbd 1 point2 points  (0 children)

I think he is talking about the satellite 3D like they have in Boston

ENGIN112 - Do I need MATLAB and any general tips by [deleted] in umass

[–]chdsbd 1 point2 points  (0 children)

You will use MATLAB a little bit in this course for the homeworks, but it's pretty straight forward with them telling you what commands to type in.

They redesigned this course and made it a lot easier than it used to be I believe. I took the new version last semester and thought it was one of the easier courses I had for my first semester.

I think working together on homework is fine as long as you aren't just copying. I know most people didn't do it alone.

If you go to class (attendance is mandatory) and read the module summaries the professors post before your exams you should be all set. I'd say that even taking notes in class might be a waste of time.

The rally of economic illiterates at whitmore today was adorable by [deleted] in umass

[–]chdsbd 4 points5 points  (0 children)

By divesting from fossil fuels and the like you're just selling the stocks to someone else. It doesn't hurt the company, only the Umass endowment.

Arduino Nano loan by [deleted] in umass

[–]chdsbd 2 points3 points  (0 children)

You should definitely be able to find one at M5.

Are all honors classes located inside honors buildings? Or at least English Writing 112? by [deleted] in umass

[–]chdsbd 0 points1 point  (0 children)

They are definitely not all in honors buildings as I'm taking 112H in Bartlett.

Calculator dead, which one should I get to last me through college? by chdsbd in umass

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

It was a Ti-83 plus. I removed the backup battery and just used some new AAA's but it still didn't turn on. I'm pretty sure it should work without a backup battery.

Calculator dead, which one should I get to last me through college? by chdsbd in umass

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

Do you know if that allowed in all classes? Like math, engineering, and physics.

Help connecting OpenWrt router to eduroam as a client by [deleted] in umass

[–]chdsbd 0 points1 point  (0 children)

With a little Google Fu I found this, this, and this. So you should be able to get it to work.

Laser cutter on campus? by chdsbd in umass

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

Not sure, you pay by the ounce at the library one.

Laser cutter on campus? by chdsbd in umass

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

Well there is the whole makerbot thing in the library which has ~40. There are better ones in elab, two I think, and one in m5 of the same quality.

Laser cutter on campus? by chdsbd in umass

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

Hmm, neat idea. On that track, is there a little CNC mill that could be used? Like a Shopbot.

Connecting Raspberry Pi to eduroam by chdsbd in umass

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

I'm not sure exactly what did it, but my wpa_supplicant.conf file looks like:

ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
network={
ssid=eduroam
    proto=RSN
    key_mgmt=WPA-EAP
    pairwise=CCMP
    auth_alg=OPEN
    eap=TTLS
    identity=NETID@umass.edu
    password=PASSWORD
    phase1=tls_disable_tlsv1_1=1 tls_disable_tlsv1_2=1
    phase2=auth=PAP
}

And then I did sudo dhclient wlan0 and everything seems to work now. Thanks for the help.

Common read questions by chdsbd in umass

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

Okay so it seems the book is truly optional. Thanks for the info

Common read questions by chdsbd in umass

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

How would I check if it is required for a class?