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.

Should I use Blender to make a 2D animation intended for websites?

23 February 2026 @ 8:50 pm

I've seen that Blender is capable of creating animations, obviously in 3D and some in 2D, but what I want to know is that is it recommended, or even possible to create animations meant for websites? For example, the Grease Pencil tool allows the ability to draw in the 3D editor environment. I haven't used it myself much, but I know it's an already existing feature for that one specifically. If not, I was wondering if it would be worth it to try Rive but I'm unsure on it. I'm only considering it because from what I've read, it seems to be a good way to make animations that are used in websites. If there's anyone who has experience creating a 2D animation through Blender or Rive this way, (even better, if the animation was done specifically for websites), I'd love to hear how it went

VisualStudio documentation reduce IntelliSense list spacing

23 February 2026 @ 8:48 pm

I like my code documented. But sometimes, visual studio won't show me information the way I want. The <list> tag is one of the annoying ones. If you have one or more item to display, the tooltip will be huge. Has anyone found a solution to remove spacing between visual studio list items documentation ? The hack I found was to use <br/> instead, but it wont resprensent what I want to express with external documentation tools like Doxygen.

Openquery Detecting IP Addresses as Decimal Data Type

23 February 2026 @ 8:39 pm

I created a stored procedure that imports data from a linked server. The linked server uses the MS Office 16.0 Access DB Engine with a provider string of N'Text; IMEX=1; TypeGuessRows=0; ImportMixedTypes=TEXT' and is linked to a directory of CSV files. The source files come from various systems we use and contain device information, including IP addresses. I cannot control the format of the CSV files from these systems and the IP addresses are not surrounded by quotes. As a result, Openquery is not detecting the addresses at text, but rather decimals. The results are truncated IP addresses such as 108.8914, 206.511, 47.2425, etc. When I manually modify the file and surround the IP addresses with quotes, they appear in my query in the expected format. Is this just something I just have to live with, or does someone know the trick to getting Openquery to detect this data as text? I can use a PowerShell script to surround that field if necessary, I was just curious if the

Java app classloader not seeing Tomcat JARs

23 February 2026 @ 8:17 pm

I’m running a Java application with Tomcat involved, and I’m confused about class loading. I expected my application’s class loader AppClassLoader to be able to load classes from Tomcat’s JARs (Especially in parallel stream) like under $CATALINA_HOME, but it can’t. I’m seeing ClassNotFoundException

I have two installers that update the same file , how does windows decide to update or not update a file?

23 February 2026 @ 8:07 pm

Here is the scenario I am looking at - Install software Av11.0 , this updates a file in installation folder say file X. lets say, This version of X is 10.0.0.0. Install software Bv8.0 , this was released two years back (say) , and have Xv8.0. I am seeing that the file X is getting updated ("downgraded actually) to v8.0.0.0 rather than staying the same since the existing version was v10.0.0.0. I am using installshield and on both the softwares , I have set shared as "yes" and made sure that the GUID Component ID of the folder containing the file is same in both the installers. I have tried toggling Multiple package shared component and that doesn't help. (Important note :: in my software . X doesn't have any version and I am thinking it should just be used as modified date).. What options am i setting incorrectly here ?

I am trying to make a PPM file and I am only getting a singular pixel. How do I fix this?

23 February 2026 @ 8:01 pm

I was following along with the "ray tracing in a weekend" e-book and I was attempting to do the first task of making a ppm file to produce an image. I have written some code but it only outputs a single red pixel. Could anyone help me fix it? # graphics helo world nx = 200 ny = 100 touch("image.PPM") open("image.PPM", "w") do image write(image,"P3\n" , string(nx) , " " , string(ny) , "\n" , string(255) , "\n") for i in ny for j in nx r = i / ny g = j / (200 - nx) b = 0.2 ir = string(Integer(round(255.99*r))) write(image, ir , " ") ig = string(Integer(round(255.99*g)))

Packaging native DLLs alongside CPP/CLI .NET8 project for consumption in .NET8 C# Project

23 February 2026 @ 7:48 pm

I have: 1. A native dll myNativeLib.dll compiled with MSVC (produced via .vcxproj project) 2. A .NET8 targeting CPP/CLI project which produces myInteropLib.dll (produced via .vcxproj project) I publish the dlls together using a nuspec file: <?xml version="1.0" encoding="utf-8"?> <package> <metadata> <!-- Redacted --> <version>0.0.1</version> <frameworkAssemblies /> <dependencies> <group targetFramework="net8.0-windows7" /> </dependencies> </metadata> <files> <file target="runtimes/win-x64/native" src="../../../bin/win64/Ijwhost.dll" /> <file target="runtimes/win-x64/native" src="../../../bin/win64/myNativeLib.dll" /> <file target="lib/net8.0-windows7" src="../../../bin/win64/myInteropLib.dll" /> </f

Android app freezes when another app runs a timer

23 February 2026 @ 7:40 pm

I'm developing an Android app, which I test on a physical device. Recently, I downloaded a mutli-timer app and I noticed that certain apps (including the app I'm developing) on my phone frequently freeze whenever a timer (of the multi-timer app) is running. I also noticed that some apps (like YouTube) continue working more smoothly than other when a timer is running in the foreground or not. How can I make my app 'immune' and not freeze when there are timers running in the foreground? Why does this even happen?

macOS ignoring hardware single step bit in MDSCR_EL1

23 February 2026 @ 7:33 pm

I am implementing a debugger for aarch64 macOS. I am doing this from scratch (without using lldb as the backend) mainly to explore some low level debugging techniques. I have implemented instruction step over (equivalent to lldb "ni" command) Here is the overview of the process: if the instruction is a branch link (bl or derivatives) put a breakpoint (brk instruction) right after it continue execution when the brk get's hit check if we are at the correct stack depth if so, we are done. if we are not at the correct stack depth (we have a recursive function) we need to transparently skip over this breakpoint. Transparent skip logic: 7. put back the original instruction 8. enable hardware single step 9. continue execution 10. when we get the single step exception put the brk back and then continue normally (waiting for the brk to hit again) The problem: In the recur

Google Sheets - 2D Lookup Returning the Associated Column Header Within an Array Formula

23 February 2026 @ 7:32 pm

Here's a basic idea of what I'm trying to do here: I have a bunch of tokens in a column (let's say range B2:B). These tokens should be present somewhere in a large 2D area (let's say range D2:Z1000), grouped by headers in Row 1. I'm looking for an array formula that lists the column headers of each token in that B2:B column. I have a few edge cases already covered with an IFS statement. I came very close with a result from This Google Support Thread, but it doesn't look to be compatible with array formulas, and always returns the first column header: =ARRAYFORMULA( IFERROR( IFS( ISBLANK(B2:B), "", COUNTIF(INDIRECT("D2:Z1000"), B2:B) = 0, "Invalid", COUNTIF(INDIRECT("B2:B"), B2:B) > 1, "Duplicate", LEN(B2:B), HLOOKUP(1,{SORTN(SEARCH(B2:B,INDIRECT("D2:Z1000")));INDIRECT(&quo

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.