nicholas.cloud

Hacktoberfest 2019 Workshop

Running a Hacktoberfest workshop at Monash University

Posted October 20, 2019 with tags #open-source #presentations #reflections

Last week I had the opportunity to run a workshop with at Monash University in celebration of Hacktoberfest. The night itself focused on exploring open source software development. Exploring what open source software is, the implications it has for the world of software development and IT systems, and how contributions can be made. We also had a little security spin, examining how projects that are open source make tradeoffs in security.

You can find out the full rundown on the event at the workshop site.

The Hacktoberfest 2019 logo and sponsors

Thanks and Support

First of all it can’t go without mention that this event would not have been possible without the support of MonSec in organising a room and managing logistics, and the support of WIRED Monash in covering food costs on the night.

With the help from the Melbourne tech community, we ended up with literal kilograms of stickers on hand to pass out to students, as well as plenty of Git guides/resources to help them polish up any rusty Git skills. These came courtesy of GitHub and GitHub Community Manager Michelle Mannering. It was all lent to me from the awesome team at JuniorDev, leftovers from when they ran their own Hacktoberfest workshop earlier in the month.

A last shoutout also goes to the Draga and April for promoting the workshop in the IT Faculty and DiversIT newsletters respectively.

Preparation

I’d been considering running a Hacktoberfest event at Monash since around the start of the semester. However in between the flood of work in a university semester and several other major events in July/August (Tutoring at Monash’s programming bootcamp, the VBL State Championships, the Bit by Bit Hackathon with WIRED and DDD Melbourne), the idea got lost in the currents for a while.

The thought resurfaced in early October, just after Hacktoberfest kicked off. So I set about organising and reaching out around Monash. Fortunately, MonSec runs weekly workshops and were looking for potential ideas when I spoke with them.

Just like that, a Hacktoberfest event was scheduled for next week, Monday the 14th. There’d still be weeks after the workshop ran for participants to get their four contributions in and earn a shirt.

It was just a week later though. Only seven days away. I had my work cut out for me!

The first few days were spent confirming details and creating an event to promote to the student body. On the Thursday prior I started getting the workshop content together.

Amidst assignment work, it wasn’t until the weekend (and the day of) that I was able to get a full presentation together, as well as a guide to help students make their pull requests.

In the end up I was very happy with the final event site. Attendees could contribute their details by adding their own file, a setup I intentionally went with to avoid dealing with merge conflicts. With the use of GitHub Actions I could also have changed deployed in the space of minutes!

My goal was to create a project where contributions were easy to make, and had super fast feedback (an updated attendee list). The automated approach also meant I didn’t need to spend long merging pull requests as attendees made them!

I was similarly satisfied with the presentation slides. They covered the basics of open source and Hacktoberfest, showed how to go about contributing to a project, and had a security-flavoured twist that I hope captured the interest of MonSec members.

Execution

There were a few technical and non-technical difficulties when it came presenting on the day.

I lost the dongle to connect my computer to the presenting lecturn (later found!). The screen-mirroring software I used crashed several times when opening links to a new browser page from the presentation slides. I also couldn’t use my presenter notes while mirroring. On the bright side, I was at the very least able to use the screen-mirroring software (a 32-bit app) since I hadn’t upgraded to MacOS Catalina.

As a presenter, I felt I was engaging my audience, but that I didn’t quite have the usual smoothness and sense of direction that I makes me feel comfortable. In hindsight, I could have lessened this with a practice runthrough, or by sitting down with a friend to review my slidedeck.

It would have been good to get a gauge of the audience’s Git skills before I started speaking. The contributing guide I prepared on the workshop site used Git CLI, whereas I feel more people would have been comfortable with GitHub Desktop or GitKraken.

For the live demonstration, I made the impromptu decision to do everything on GitHub itself.

It paid off, as GitHub makes it easy to fork a repository, commit a single file, and make a pull request back upstream. This is what most attendees ended up doing.

Stickers!

I wasn’t lying about a kilogram of stickers!

That’s just about a wrap on everything I wanted to talk about. I hope you’ve been able to pick up something away from my own reflections! Thanks for reading!


Debugging deployments to GitHub Pages

A little offhand thing I learned as well…

When using GitHub Actions to deploy to GitHub Pages, the usual strategy is to push build artifacts to a master or gh-pages branch.

If you use the provided secrets.GITHUB_TOKEN in a token-based approached to push to GitHub, the Pages deployment will fail. You will get a very nondescript “GitHub Pages deployment failed” error message.

From what I can gleam, this is because this specific token does not have the permissions to launch a new job that deploys to GitHub Pages.

Thankfully the workaround is minimal, and you can replace the provided token with one you generate yourself.

Thanks for reading!

I’m a developer with a passion for cloud platforms, web development and automation!

I use this blog to write about my interests. They’re usually tech-related, but there’s also the odd music and gaming piece too.


← Debugging My Terraria Server's Startup

DDD Melbourne 2019 →