Four-Byte Burger
Four-Byte Burger
What Color is Player 1?
DOOM maps to SVG to laser cutter
Sega 3-D Glasses: How did they work?
https://
That's pretty cool!
Normally, submitting an app to app stores requires a lot of work, including writing code in languages web developers may not necessarily be familiar with, creating app icons, configuring various settings, and testing the app across different devices and operating systems. PWABuilder takes care of many of these tasks automatically, reducing the amount of time and effort required to publish apps.
Espresso and open source hardware?
Making an espresso machine from (almost) scratch.
https://
The majority of internet users aren't developers, so outputting the HTTP error code and its name (503 Service Unavailable) isn't good enough.
System font stack CSS organized by typeface classification for every modern OS
WebGL2 from the ground up. No magic.
This is a really impressive feat, and the ultimate asymmetrical VR experience!
The process of making a multiplayer-cross-platform video game that has parts that run on everything from a tiny microcontroller to a high end VR setup
This is how the cover art of Defender of the Crown (1986) was made
https://
I've posted a short blog post about shutting down Dingoonity.org after 14 years https://
I've jumped on the ChatGPT bandwagon lately. Using Open AIs implementation. I can see how conversational interfaces are going to revolutionize the way we use search.
Take my example from today - I wanted to batch convert a directory of PDF files to PNG:
Me:
How can I easily convert a directory of pdf files to png
AI:
You can use an open-source command-line tool called "ImageMagick" to easily convert a directory of PDF files to PNG images. Here's how to do it:
Install ImageMagick: You can download ImageMagick from their official website and install it on your computer.
Open a command prompt or terminal: Navigate to the directory where your PDF files are located.
Run the following command:
magick mogrify -format png *.pdf
This command will convert all the PDF files in the current directory to PNG format. The converted PNG files will have the same name as the original PDF files, but with the .png extension.
If you want to convert the PDF files to a different image format, such as JPEG, you can simply replace "png" in the command with "jpg" or the desired image format.
Note that ImageMagick can also be used to convert individual PDF files to PNG images by using the "convert" command. Here's an example:
magick convert example.pdf example.png
This will convert the file "example.pdf" to a PNG image called "example.png".
Me:
how would I set the output resolution?
AI:
To set the output resolution for the converted PNG files, you can add the -density option to the ImageMagick command. The -density option specifies the number of pixels per inch (PPI) for the output image. Here's how to set the output resolution to 300 PPI:
magick mogrify -density 300 -format png *.pdf
This command will convert all the PDF files in the current directory to PNG images with a resolution of 300 PPI. You can adjust the resolution to a different value by changing the number after the -density option.
Note that the output image size will depend on the original PDF file's dimensions and the resolution you set. If the PDF file is large, the output PNG file may also be large in size. You can also use the -resize option to resize the output image to a specific size after converting it.
Me:
How would I make the transparent areas of the converted images be white?
AI:
To make the transparent areas of the converted images be white, you can use the -background and -alpha options in the ImageMagick command. Here's an example command that sets the transparent areas to white:
magick mogrify -background white -alpha background -flatten -density 300 -format png *.pdf
This command does the following:
-background white
: sets the background color of the image to white.-alpha background
: tells ImageMagick to treat transparent areas as background.-flatten
: merges the alpha channel with the background color to create a fully opaque image.-density 300
: sets the resolution of the output image to 300 PPI.-format png
: sets the output format to PNG.
Visual design rules you can safely follow every time
I finally got around to publishing a blog post about the movies I watched in 2022.
Open UI: The missing industry standard definition of UI
Will Wright on Designing User Interfaces to Simulation Games
https://
The Mystery of the Dune Font
Putting a name to the typeface that defined the visual identity of the science fiction series and its author, Frank Herbert
https://
This seems like a useful tool. Lots of information that is usually a pain to compare!
Carsized: Compare car design and dimensions in a Virtual Showroom
I spent some time this evening fiddling with the UX of VR website. Pruned some dead links, de-Twittered the site, and added some multi-column goodness for wider screens.
I really wish I had the time/energy to add more content these days, but alas.
Anyway, check it out here: https://
💯
Create better designed games with these comprehensive guidelines that feature classic design principles combined with modern accessibility standards.
This really does seem handy!
Shopify/handy: The eastiest way to mocap your hands! We developed this tool in order to streamline the process of capturing hand movements from Meta Quest headsets and bringing them into Blender for use in animations.
https://
Remaking Old Computer Graphics With AI Image Generation Can AI Image generation tools make re-imagined, higher-resolution versions of old video game graphics?