I make computers

  • 0 Posts
  • 15 Comments
Joined 11 months ago
cake
Cake day: October 30th, 2023

help-circle







  • This is because each desktop operating system using a different graphics rendering engine—Quartz on macOS and X/Wayland on Linux, for example. In order to write an application that works on all major operating systems, you either need to use a graphics library that has already done the heavy lifting of calling the native frameworks under the hood or you have to do it yourself. Or you can use a web-based graphics library that has also already done that heavy lifting, with the added advantage that you can use languages like HTML, CSS, and Javascript to easily create visual elements. This is attractive when the alternatives like Qt are notoriously difficult to deploy and force you to use C/C++.




  • I do not take personal issue with vaping. Humans have been consuming nicotine for thousands of years, and even though it is unhealthy, I don’t think it’s ever going away. However, the article specifically covers the banning of single-use vapes; and I absolutely agree that these have to go. They are extremely attractive to children and adolescents, and they’re terrible for the environment. I think the best approach toward regulating vapes is to ban flavors and disposables.


  • I bought an old Speak and Spell a few summers ago as a circuit-bending project, and I want to build custom vocabulary ROMS. To this end, I have been working on a bitstream generator for the TMS5220, with the goal of being cross-platform, as the existing tools only run on Windows 3.0 and OSX…

    My first mistake was doing it in C++, although I love the language, since I’ve had the royal displeasure of trying to compile it for Windows. Over the next few weeks, I’m going to throw in the towel and re-write the damned thing in Java. That being said, if you’ve got a Mac or Linux machine, you can check it out here. And if you’ve got a clue how to compile a Qt app for Windows, please submit a PR :')