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.

UUID Files on Android phone security concern

7 June 2026 @ 12:21 am

I'm finding UUID Files on my Android phone in the internal storage space. Any information on why these are found. I haven't created or placed these files or file types at all. Is this a concern for the security of the phone?

Data Not Being Copied To Another Tab Sheet

7 June 2026 @ 12:18 am

it's me again! I'm having issues transferring data from one sheet to another tab sheet. ClosedRow15 should copy the data ("dataToCopy" and "myDataToCopy" and paste it to "My Data" tab and "var ConsolidatedSheet" but the function only pastes it to "var ConsolidatedSheet". I've already removed the coding below because I suspected that it has already cleared the row before it copies the data, but this is certainly not the case. myDataToCopy.clear({contentsOnly:true}); Here's the full code: function ClosedRow15() { var sheet = SpreadsheetApp.getActiveSpreadsheet() var ConsolidatedSheet = SpreadsheetApp.openById('REDACTED').getSheetByName('Closed Cases'); var source = sheet.getSheetByName('Tracker'); var value = source.getRange('F15').getValue(); var dataToCopy = source.getRange(15,3,1,14); var cellData = source.getRange('F15').getValue(); //SAVES SAME CASE TO &quo

Azure Image Builder Fails to Start Container Instance

6 June 2026 @ 11:51 pm

I created an Azure Image Builder template with two flavors. And I am facing the issue where container instance is inconsistently not getting into running state. The first case is when I create a template with only customization and distribution steps (and no validation). This works well the first time and shares the customized image to image gallery. However, the same template when triggered again, fails to get the customization container instance in the Running state. Hence the image template fails eventually with "internal error occured" The second case is when I create a template with customization, validation, and distribution phases. The customization is successful the first time. However, the validation container instance never goes in Running state. Hence the image template run fails eventually with "internal error occured" Both the cases are using the same source image and settings. I am not providing an

How do I use a function which only returns a promise?

6 June 2026 @ 11:43 pm

I am using the function processOffline exactly as it is defined here: https://github.com/cutterbl/SoundTouchJS/blob/master/packages/formant-correction-worklet/src/processOffline.ts#L102 I assign the return "value" to an object inside an object for ease of access (essentially making it part of the global scope, like so): FX.processors[identifier] = processOffline(options) I look in the console and see that each FX.processors[identifier] has a promise assigned to it. I'm new to promises and can't figure this one out. Can anyone help? What do I want to do, you ask? I have 3 processOffline sources defined, and I want to store them in a variable within the global scope. Ultimately, I want to play all 3 of these so

Next.js build fails at closing </Layout> tag

6 June 2026 @ 11:26 pm

I am deploying a Next.js project to Vercel and the build fails during next build. The error points to the closing </Layout> tag in pages/index.js and shows "Expression expected" and "Unterminated regexp literal". I checked for missing JSX tags, duplicate closing tags, and dependency issues. The component returns JSX inside a Layout component and appears valid. I also removed "use client" since I am using the pages router. Could someone help identify what syntax issue might cause Vercel to report an error at the closing </Layout> tag even when the JSX looks correct? Is there a way to locate hidden syntax errors elsewhere in the file that could trigger this build failure?

How can I add srcset to Blogger featured images without JavaScript?

6 June 2026 @ 11:17 pm

I have a blogger blog and a free domain. I wanted to add the srcset feature to the distinctive images at the beginning of the article, in order to become responsive and give the browser options to choose the right size for each ready. To adjust it from the server side without JavaScript for the speed of the LCP, but why did his grandfather find it out of <Data:post.body/> after that I made this code <img expr: src='data:post.featuredimage' expr: srcset='sourceset(data:post.featuredimage,[256,512,945,1684],)' expr:title='data:post.title' fetchpriority='high' height='720' loading='eager' sizes='(min-width: 1024px) 725px, (min-width: 768px) 70vw, 60vw' width='1280'/> He answers the featured photos and made them separate from <data:post.body/> and put the code above <data:post.body/> Now I downloaded two pictures, the first from our code and the second, in order to prevent the dual loading, the original enveloped between <template> </template>, but th

In Embeddable Common Lisp, how to statically compile code that uses quicklisp libraries?

6 June 2026 @ 11:16 pm

I am using Embeddable Common Lisp and need to compile and statically link my code to produce a standalone executable. This in itself is not a problem. By compiling ECL on Alpine Linux and calling (c:build-program) I can obtain a statically-linked output. I have verified this by creating a basic Hello World program and statically compiling it. I will need to use various Common Lisp libraries in my code, such as iterate. Normally I would use quickload to achieve this. However, when I do this, I get errors in the compiled binary, and/or in the code I use to perform the compilation. How can I import libraries like iterate and still be able to compile my source into a statically-linked standalone binary? test.lisp: (format t "Hello!~%") build-test.lisp: (require 'cmp) (setf c::*user-linker-flags* "-static -static-libgcc -Wl,--no-w

My iOS app was rejected by Apple under: Guideline 4.2 - Design - Minimum Functionality

6 June 2026 @ 10:32 pm

My iOS app was rejected by Apple under: Guideline 4.2 - Design - Minimum Functional... My iOS app was rejected by Apple under: Guideline 4.2 - Design - Minimum Functionality. The app still provides a limited user experience as it is not sufficiently different from a web browsing experience. As such, the experience it provides is similar to the general experience of using a web browser. Including features such as push notifications, Core Location, or sharing do not provide a robust enough experience to be appropriate for the App Store.

How should I grab raw pixel data from a .png file (using Bash)?

6 June 2026 @ 9:17 pm

I've been looking into making a script that grabs the raw pixel data from a .png file & writes it directly to the framebuffer, but how would I actually grab the data? I know PNG files have a bunch of compression, so to my knowledge I cannot just simply grab pixel data, so how would I go about doing this? What's the best way to do so?

I have issues jumping to my kernel in my bootloader

6 June 2026 @ 7:31 pm

I'm having trouble jumping to my kernel in my bootlloader, i read the second sector of the disk and loaded it at 0x8000 after setting up the GDT i far jumped into Protected Mode, then i set up the sement registers again and my stack pointer to 0x90000, but when I tried far jumping to my kernel, it doesn't work it just makes QEMU enter a loop, even a near jump too didnt work, please can anyone help, Here's my code for clarification bits 16 org 0x7c00 KERNEL equ 0x8000 global _start section .text _start: xor ax, ax mov ds, ax mov es, ax mov ss, ax mov sp, 0x6000 mov ax, 0x0003 int 0x10 mov si, msg call print call enable_a20 call rdisk lgdt [gdt_desc] mov si, pm call print mov eax, cr0 or eax, 1 mov cr0, eax jmp 0x08:protected_mode [bits 32] protected_mode: cli mov eax, 0x10 mov ds, eax mov es, eax mov ss, eax mov fs, eax mov gs, eax mov ebp, 0x90000 mov

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

An Extension is Not an Excuse

28 May 2026 @ 9:20 pm

The Department of Health and Human Services recently announced a one-year extension of the compliance dates for web content and mobile app accessibility requirements under Section 504 of the Rehabilitation Act. The requirements themselves are not new in substance: covered recipients of HHS federal financial assistance must make covered web content and mobile apps conform […]

Tolerating Inaccessibility

30 April 2026 @ 5:50 pm

The latest WebAIM Million report shows that detectable homepage accessibility errors increased over the past year. This article considers what those results may reveal about the organizational and societal forces that continue to deprioritize accessibility, and challenges us to imagine a world where inaccessibility is no longer tolerated.

Ask AIMee: An accessible accessibility-focused AI chatbot

31 March 2026 @ 4:49 pm

We’re happy to introduce AIMee – an easy-to-use, AI-powered conversational chatbot focused on accessibility. AIMee has been designed to be highly accessible to users with disabilities. Ask her accessibility questions to get quick answers and guidance. The name “AIMee” plays off of the “AIM” (Accessibility In Mind) from “WebAIM” and also “AI”. Here are some […]

A New Path for Digital Accessibility?

27 February 2026 @ 7:02 pm

Please note This post will explore how an adaptive, intelligent system could empower users with disabilities to optimize their experience in digital environments. Even were such a system available tomorrow, developers of digital content, services, and products would still be responsible for providing equal access to ALL users. Consider a few of the many exciting […]

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 […]

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.