Posts tagged video
React Workshop
2022-03-29React is a free and open source Javascript library for building user interfaces based on UI components.
Firebase Workshop
2022-03-28Firebase is a backend replacement produced by Google which helps developers write fully featured web apps without having to handle things like databases and authentication directly. This workshop deals with the basics of using firebase
Creating a GitHub Pull Request (video)
2019-03-21I just uploaded a video showing how to create a fork and a pull request in GitHub. This is a little more complicated than pull requests within the same repository because a repository owned by somebody else typically doesn’t allow you to push commits directly to it. Check out the 9-minute video, or read on for details.
Migrating HTML markup into code with Clojure and Hiccup
2018-09-29In the previous post, I implemented a graphic design as HTML and CSS. But the HTML will need to vary depending on what’s being displayed. We could simply duplicate the page for every variation, but this is cumbersome and leads to brittleness. Instead, we want to transition the HTML markup to a more malleable medium: code.
Implementing a graphic design in HTML and CSS
2018-09-28A common scenario professional web developers encounter is getting a graphic design and needing to implement it as a web page in HTML and CSS. I encountered this scenario with the Clem project, and I captured about 2 hours of video capturing my (unrehearsed) attempt to solve it.