Nifty Corners Cube

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Rounded corners the javascript way
Nifty Corners Cube

StackOverflow.com

VN:F [1.9.22_1171]
Rating: 8.5/10 (13 votes cast)

Random snippets of all sorts of code, mixed with a selection of help and advice.

High-quality Catalan text-to-speech voices for broadcast-style promo audio [closed]

3 February 2026 @ 9:15 am

What text-to-speech services support high-quality Catalan voices usable for broadcast-style promos

Print layout needs fixes

3 February 2026 @ 9:06 am

export const PrintPatientReport = ({ patient, labResults = [], radiologyResults = [], clinicalNotes = [], selectedSections, reportDate }) => { const headerImg = "/header.png"; const footerImg = "/footer.png"; // Convert lab.result JSON to clean table rows const formatLabResult = (lab) => { try { const data = typeof lab.result === "string" ? JSON.parse(lab.result) : lab.result; if (data.image) { return `<tr><td colspan="2"><img src="${data.image.replace(/\\/g, '/')}" style="max-width:300px;" /></td></tr>`; } return Object.entries(data) .map(([key, val]) => `<tr><td>${key}</td><td>${val}</td></tr>`) .join(""); } catch (err) { return `<tr><td colspan="2&qu

How to use ASAN with msvc in compiler explorer

3 February 2026 @ 8:55 am

I can use sanitizing with gcc and clang in compiler explorer but fail to do so with msvc. Is it possible and how? I'm testing with this simple leaking snippet: class LeakingStruct { public: LeakingStruct() : ptr{new int[42]} {} private: int* ptr; }; int main() { LeakingStruct const s; } // leaking, resource not released LIVE

Designer don't work in new Visual Sudio 2026

3 February 2026 @ 8:48 am

Design window displays errors I'm was using Visual Studio 2019 to edit source code of mission planner (winforms) and after I move to 2026 and try to open any designers I see this errors at System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.EnsureDocument(IDesignerSerializationManager manager) at System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager manager) at Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager serializationManager) at System.ComponentModel.Design.Serialization.BasicDesignerLoader.BeginLoad(IDesignerLoaderHost host) I've already try to rebuild project, clean and build solution, build it on any cpu/x86, run repair of visual studio and delete .vs, obj and bin

How to fix 16 KB page size / ELF alignment error in Flutter on Android 14+

3 February 2026 @ 8:44 am

Flutter APK fails on Android 14+ with 16 KB page size error after SDK upgrade – how to fix 16 KB alignment? What are the required steps to make a Flutter app compatible with Android 14 (16 KB page size)? Specifically: Which Android Gradle Plugin and Gradle versions are required? Do I need a specific NDK version? How do I fix native .so library alignment issues coming from Flutter plugins? Is there a way to identify which dependency is causing the 16 KB error? Any guidance or best practices to fully resolve 16 KB alignment issues in Flutter would be appreciated. PS C:\abhisek\spay> flutter --version Flutter 3.32.4 • channel [user-branch] • unknown source Framework • revision 6fba2447e9 (8 months ago) • 2025-06-12 19:03:56 -0700 Engi

GNOME OSK (gjs-osk) works in main page but hides behind Chromium kiosk window when focus is inside an iframe

3 February 2026 @ 8:44 am

I’m setting up an HMI interface on Ubuntu + GNOME. The application is a web page shown in Chromium kiosk mode. I’m using this on-screen keyboard extension because it’s movable and customizable: https://extensions.gnome.org/extension/5949/gjs-osk/ Problem: On the main page, the keyboard behaves correctly. But when an <input> field is inside an <iframe>, the keyboard appears for a brief moment and then seems to go behind the Chromium kiosk window (so it’s no longer visible / usable). Question: Is there any way to prevent this and force the OSK window to stay on top (above Chromium), even when focus is inside an iframe?

SVN Git Migagration

3 February 2026 @ 8:42 am

I'm trying to migrate an SVN repository to GitLab where the SVN trunk becomes the Git master branch and a specific SVN branch becomes a Git branch. I'm using git svn clone to pull the repository from SVN. The problem is that after cloning, the trunk and branches aren't properly set up as Git branches - instead they appear as remote references that need to be converted. The trunk creates an extra branch instead of becoming master directly, and branches are under refs/remotes instead of being local branches. I need to clean up these references and properly map them before pushing to GitLab.

How to avoid ugly dependency notation in a Gradle Convention Plugin

3 February 2026 @ 8:40 am

I've successfully set up a Gradle Convention Plugin, which streamlines applying always-used dependencies for my android-library-modules: internal class AndroidLibraryConventionPlugin : Plugin<Project> { override fun apply(project: Project) { with(project) { pluginManager.apply { apply("com.android.library") } dependencies { add("implementation", libs.findLibrary("koin-core").get()) add("implementation", libs.findLibrary("androidx-core-ktx").get()) [...] } } } } internal val Project.libs get(): VersionCatalog = extensions.getByType<VersionCatalogsExtension>().named("libs") However, the notation is pretty ugly compared to a "standard" gradle dependency notation (using typesafe project accessors) like: dependencies {

Angular Capacitor Android: Making Password Manager Work with Login

3 February 2026 @ 8:37 am

I’m working on an Android app. I want to make the password manager on Android (Samsung device) usable with my login form. I’m testing the app via USB debugging on an older Samsung phone. According to the logs, autofill service starts but then aborts because no credentials are found. Also, after logging in, the password manager never asks me to save the credentials. My goal is that when I log out or exit the app, I don’t have to type everything again instead, the Samsung password manager should remember my credentials and autofill them next time I open the app. Here is my login method in TypeScript: public doLogin(param: { username?: string; password: string }) { if (this.formIsDisabled) { return; } param = LoginComponent.preprocessCredentials(param.password, param.username); this.formIsDisabled = true; this.websocket.login(new AuthenticateWithPasswordRequest(param)) .finally(() => { this.formIsDisabled = false;

"Provisioned throughput is not enabled for this workspace" [provisioned throughput, model serving endpoint

3 February 2026 @ 8:17 am

When I try to create a provisioned throughput model endpoint for a foundational model hosted by Databricks via the UI (e.g. databricks-gpt-5-mini), I get the error message "Provisioned throughput is not enabled for this workspace.". I tried going through some troubleshooting steps, namely: disable "Enforce data processing within workspace Geography for Designated Services" in Accounting settings --> Workspace --> Security and Compliance --> uncheck box check on Azure Portal that I am not running the Databricks workspace under strict compliance such as HIPAA, which is not the case [EDIT: HIPAA would actually be ok, but in any case I am not running under a strict compliance regime, hence this should not be an issue] The workspace is located in eastus2. I am the only admin / user of that Databricks account and workspace and the user account has execute / manage rights for models / model endpoint. The workspace is r

960.gs

VN:F [1.9.22_1171]
Rating: 8.0/10 (1 vote cast)

CSS Grid System layout guide
960.gs

IconPot .com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Totally free icons

Interface.eyecon.ro

VN:F [1.9.22_1171]
Rating: 6.0/10 (1 vote cast)

Interface elements for jQuery
Interface.eyecon.ro

ThemeForest.net

VN:F [1.9.22_1171]
Rating: 7.0/10 (2 votes cast)

WordPress Themes, HTML Templates.

kuler.adobe.com

VN:F [1.9.22_1171]
Rating: 8.0/10 (1 vote cast)

color / colour themes by design

webanalyticssolutionprofiler.com

VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)

Web Analytics::Free Resources from Immeria
webanalyticssolutionprofiler.com

WebAIM.org

VN:F [1.9.22_1171]
Rating: 4.0/10 (1 vote cast)

Web Accessibility In Mind

2026 Predictions: The Next Big Shifts in Web Accessibility

22 December 2025 @ 11:22 pm

I’ve lived long enough, and worked in accessibility long enough, to have honed a healthy skepticism when I hear about the Next Big Thing. I’ve seen lush website launches that look great, until I activate a screen reader. Yet, in spite of it all, accessibility does evolve, but quietly rather than dramatically. As I gaze […]

Word and PowerPoint Alt Text Roundup

31 October 2025 @ 7:14 pm

Introduction In Microsoft Word and PowerPoint, there are many types of non-text content that can be given alternative text. We tested the alternative text of everything that we could think of in Word and PowerPoint and then converted these files to PDFs using Adobe’s Acrobat PDFMaker (the Acrobat Tab on Windows), Adobe’s Create PDF cloud […]

Accessibility by Design: Preparing K–12 Schools for What’s Next

30 July 2025 @ 5:51 pm

Delivering web and digital accessibility in any environment requires strategic planning and cross-organizational commitment. While the goal (ensuring that websites and digital platforms do not present barriers to individuals with disabilities) and the standards (the Web Content Accessibility Guidelines) remain constant, implementation must be tailored to each organization’s needs and context.   For K–12 educational agencies, […]

Up and Coming ARIA 

30 May 2025 @ 6:19 pm

If you work in web accessibility, you’ve probably spent a lot of time explaining and implementing the ARIA roles and attributes that have been around for years—things like aria-label, aria-labelledby, and role="dialog". But the ARIA landscape isn’t static. In fact, recent ARIA specifications (especially ARIA 1.3) include a number of emerging and lesser-known features that […]

Global Digital Accessibility Salary Survey Results

27 February 2025 @ 8:45 pm

In December 2024 WebAIM conducted a survey to collect salary and job-related data from professionals whose job responsibilities primarily focus on making technology and digital products accessible and usable to people with disabilities. 656 responses were collected. The full survey results are now available. This survey was conducted in conjunction with the GAAD Foundation. The GAAD […]

Join the Discussion—From Your Inbox

31 January 2025 @ 9:01 pm

Which WebAIM resource had its 25th birthday on November 1, 2024? The answer is our Web Accessibility Email Discussion List! From the halcyon days when Hotmail had over 35 million users, to our modern era where Gmail has 2.5 billion users, the amount of emails in most inboxes has gone from a trickle to a […]

Using Severity Ratings to Prioritize Web Accessibility Remediation

22 November 2024 @ 6:30 pm

So, you’ve found your website’s accessibility issues using WAVE or other testing tools, and by completing manual testing using a keyboard, a screen reader, and zooming the browser window. Now what? When it comes to prioritizing web accessibility fixes, ranking the severity of each issue is an effective way to prioritize and make impactful improvements. […]

25 Accessibility Tips to Celebrate 25 Years

31 October 2024 @ 4:38 pm

As WebAIM celebrates our 25 year anniversary this month, we’ve shared 25 accessibility tips on our LinkedIn and Twitter/X social media channels. All 25 quick tips are compiled below. Tip #1: When to Use Links and Buttons Links are about navigation. Buttons are about function. To eliminate confusion for screen reader users, use a <button> […]

Celebrating WebAIM’s 25th Anniversary

30 September 2024 @ 10:25 pm

25 years ago, in October of 1999, the Web Accessibility In Mind (WebAIM) project began at Utah State University. In the years previous, Dr. Cyndi Rowland had formed a vision for how impactful the web could be on individuals with disabilities, and she learned how inaccessible web content would pose significant barriers to them. Knowing […]

Introducing NCADEMI: The National Center on Accessible Digital Educational Materials & Instruction 

30 September 2024 @ 10:25 pm

Tomorrow, October 1st, marks a significant milestone in WebAIM’s 25 year history of expanding the potential of the web for people with disabilities. In partnership with our colleagues at the Institute for Disability Research, Policy & Practice at Utah State University, we’re launching a new technical assistance center. The National Center on Accessible Digital Educational […]

CatsWhoCode.com

VN:F [1.9.22_1171]
Rating: 7.0/10 (1 vote cast)

Titbits for web designers and alike

Unable to load the feed. Please try again later.