How to generate image previews / thumbnails of various files
A tutorial on using iOS's Quick Look framework to generate thumbnail previews for various file types like PDFs, documents, and 3D models.
A tutorial on using iOS's Quick Look framework to generate thumbnail previews for various file types like PDFs, documents, and 3D models.
A guide to advanced string comparison and locale-aware sorting in Swift, covering case-insensitive checks, diacritic removal, and proper ordering.
A developer shares non-sponsored book recommendations for improving iOS development skills, covering Core Data, AutoLayout, and Swift.
A developer shares their experience and troubleshooting steps while deploying a Gatsby site to Azure Static Web Apps, highlighting build issues and solutions.
The author details integrating and reviving Storybook for DEV's design system, enabling component development and deployment via Netlify.
A tutorial on using CSS custom properties (variables) to create reusable values, improve code maintainability, and easily manage themes in stylesheets.
An introduction to callback functions in JavaScript, explaining how they are passed as arguments and executed within other functions.
A humorous guide to logging ASP.NET Core application messages directly to a Notepad window using a custom NuGet package.
Explores methods for handling errors in JavaScript async/await functions without using bulky try/catch blocks.
A guide to creating and using custom error classes in JavaScript for both new errors and third-party errors.
A PowerShell script to check if backup is configured for Azure WebApps across a subscription, helping identify missing configurations.
A tutorial on building a non-English text classification model using BERT and Simple Transformers, demonstrated with German tweets.
A technical guide on creating an Azure Key Vault and securely storing PSCredential objects using PowerShell for automation solutions.
A technical case study on A/B testing the instant.page prefetching library using Netlify's split testing and SpeedCurve for performance measurement.
A technical guide on configuring macOS to send kernel core dumps over a wired network to a second Mac for debugging purposes.
A developer investigates macOS kernel panics, explores core dumps, and details steps for enabling kernel debugging to capture crash data.
Explains how to run k6 load tests from the cloud, including using custom Docker images and AWS ECS/Fargate for private or complex scenarios.
Microsoft's Azure Static Web App service for hosting static JavaScript apps with GitHub integration and Azure Functions support.
Explores the 'IKEA Effect' cognitive bias in software development, where excessive attachment to one's own code can hinder progress and better solutions.
Explores various methods for waiting on concurrent coroutines in Python's asyncio, comparing await, tasks, gather(), wait(), and TaskGroup.