41 weeks in one SFML News? Well it certainly has been a while and I’ll be painting with big brushes here. SFML 2.6.1 As previously hinted at, we did end up releasing SFML 2.6.1 in November 2023 and have since then accumulated a few more tiny fixes, including just the other day a 13 years […]
Tag: GitHub
SFML News – Week 26-27 (2023)
SFML 2.6.1 Looking at the last three minor releases, it was forseeable, that we would be releasing a patch version for SFML 2.6 some time soon. So far we’ve merged four fixes: The C++11 header issue was found, while getting the Conan package ready, which has since been merged. The OpenGL extension bug, was reported […]
SFML News – Week 16 & 17 (2023)
SFML Development Update I haven’t invested as much time into SFML development in the past two weeks, which makes it feel like less work was being done, but luckily we have other and even new contributors stepping up, so that feeling is not actually true! Also keep an eye on some very exciting upcoming changes […]
Build C# Project with GitHub Actions
Continuous integration (CI) as done with GitHub Actions serves multiple purposes. You get to continuously check that newly integrated code still works correctly and when it comes to cross-platform development, it also allows you to ensure that new code doesn’t just “works on my machine”, but also on platforms you might not even have the […]
SQL Server on GitHub Actions
Besides SFML, I’ve also taken on the maintenance of Jobbr, a .NET JobServer developed by some co-workers some time ago. With the help of some more people, we managed to migrate the whole machinery from .NET Framework to .NET 6. At the end of the migration, I went ahead and set up GitHub Actions for […]
Black Holes of Information
Over the last decade or so, we’ve witnessed a continued ramp up of the information age. Social media has become the “social” place. These days, YouTube publishes 3.7 million videos a day, that’s 271’000 hours every single day. We’re bombarded with information from all directions day in and day out, so much so, that we […]
SFML News – Week 6 & 7 (2023)
SFML 2.6 Updates There haven’t been large changes or concrete movements for the release itself, but we did fix two minor things: SFML 3.0 Updates Some feature discussions were also opened, feel free to provide your insights – it generally is useful to hear other people’s perspectives. SFML Games & Projects Zitrone First up, we […]
How To Report Bugs Effectively
As software engineer, you will write and receive many bug reports over the years. When bugs are reported with low quality, everyone loses, as the reporter will be asked “annoying” questions, the software engineer has to spend extra time to find out all the details, and overall the eventual fix will be delayed. Here are […]
GitHub Keyboard Shortcuts
Just a very brief post, as I just found out that GitHub offers quite a few nice keyboard shortcuts. Official GitHub Keyboard Shortcuts Documentations It’s a long list which I find feels overwhelming so I rarely actually pick up any and just close the page. To counter this, here are a few I found quite […]
Fetch GitHub Pull Requests Locally
It’s by no means a secret thing and Google will be the first to tell you, but by the off chance that someone hasn’t thought about it, here’s just the command how to do it. git fetch origin pull/<id>/head:<branch> <id> refers to the pull request id on GitHub<branch> refers to a custom branch name of […]