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.

Jarkata cache api

18 March 2026 @ 4:00 pm

Recently trying to migrate spring 5 to 6 where javax.cache into Jakarta.cache but maven dependency is not downloading , if I search for this dependency in maven central not able to find , <dependency> <groupId>jakarta.cache</groupId> <artifactId>jakarta.cache-api</artifactId> </dependency>

How do I delete an entity in a one-to-many relationship?

18 March 2026 @ 3:59 pm

I'm implementing a small e-commerce system, but I've encountered the following problem: I can't delete entities with one-to-many relationships: I have a shopping cart class as follows @Entity @Table(name = "cart") public class Cart extends NameEntity { @OneToMany(mappedBy = "cart",cascade = {CascadeType.ALL},orphanRemoval = true) private List<Item> items = new ArrayList<>(); public void addItem(Item item) { item.setCart(this); this.items.add(item); } public BigDecimal getTotal() { if (items.isEmpty()) return BigDecimal.ZERO; double total = 0; for (Item item : items) { total += item.getCount() * item.getProduct().getPrice().doubleValue(); } return BigDecimal.valueOf(total); } public Item get(Integer id) { for (Item item : items) { if (Objects.equals(item.getId(), id))

Unable to load the service index for source when compiling VS2026 project

18 March 2026 @ 3:59 pm

I am trying to work on an existing dotnet project that uses telerik. I get this error when I try to compile the project:enter image description here When I click the VS2026 Menu -> extensions -> telerik -> licensing -> download key I get this error: enter image description here I have also tried downloading a telerik key manually. Then I create a "Telerik" folder and place the key there. But I still get the first error: enter image description here How can I resolve this problem?

MYSQL server don't start with xampp on win 7 32 bits

18 March 2026 @ 3:55 pm

I can't to start mysql server (xampp 7.3.2 win 7 32 bits) I note the following 1- The mysql service window do not start (the service is enable from panel---green color) In this case only I can see handing or automatic (not start/stop)...showing the message ...Error 87: wrongs parameters.... 2- From win console (cmd + Enter) I can see this ....(10061 "Unknow error") Before that I installing this xampp version ...I was have insatlled mysql 5.6, php5.6 and apache 2.2...I was remove this and later add the xampp 7.3.2..and I do not know if this was a problem too. 3- From the Netstat button in the control panel....do not show nothing about mysql conection or wath happen in 3306 port Anyway....I can't start mysql server and the installation is ok....I write localhost in the browser and the wellcome xampp page is ok I write mysql --version command in the win console and is ok Thanks for your attention Best regar

Is there a mechanism in TCP/IP to limit the number of unacknowledged packages?

18 March 2026 @ 3:54 pm

I am currently working on a project using Adam Dunkels uIP on a very restricted system. But i'm running into the following issue: When my PC sends data to the uIP Stack on the microcontroller - i made sure that the MAC sends and receives the packets correctly - it sometimes happens, that it sends two small packets, without waiting for the acknowledgement of the first. Usually this would not be a problem for a more powerful TCP/IP stack to handle, but uIP is limited to one unacknowledged packet at a time. This leads to uIP not responding with the correct Sequence-Number. The official uIP reference manual states in 1.8.3.2: ...uIP allows only a single TCP segment per connection to be unacknowledged at any given time. and in 1.2: In uIP, all RFC requirements that affect host-to-host communication are implemented.

Moving existing Firebase Storage files to the GCP Archive tier via lifecycle rules?

18 March 2026 @ 3:49 pm

I'm looking to optimize cloud storage costs for my iOS app. The app generates a lot of data that is essentially "write once, seldom read." Right now, everything is sitting in the default Standard tier in Firebase Cloud Storage. Since Firebase is just a wrapper for Google Cloud Storage under the hood, I'm planning to go into the GCP Console and set up an Object Lifecycle rule to transition files to the Archive pricing tier after 30 days. I have two main questions before I pull the trigger on this: 1. Is it safe to modify Firebase buckets directly in GCP? Is this officially supported, or am I risking breaking the Firebase SDK's connection to the bucket by messing with storage classes under the hood? I want to make sure my app can still instantly fetch archived files. 2. How does this affect existing files? If I create this 30-day lifecycle rule toda

Why cant Eclipse find jakarta.mail.Authenticator?

18 March 2026 @ 3:44 pm

When my program runs, it throws an error: Error: Unable to initialize main class javaEmailCleaner.JavaEmailCleaner Caused by: java.lang.NoClassDefFoundError: jakarta/mail/MessagingException It baffles me, I can't see why this class can't be found. Please see screenshot Any Ideas? All (printable) answers appreciated..

JT400 In VS Code Not Being Recognized

18 March 2026 @ 3:43 pm

enter image description hereI have been trying to use JT400 in VS Code to connect to an IBM iSeries. I have added JT400 to the Referenced Libraries - also tried putting JT400 in the LIB as well as add the direct reference in settings.json - all with the same result: package com.ibm.as400.access does not exist. I have attached a screen shot showing the 13 line code. When typing in com.ibm.as400.access, the intellisense does popup to show it recognizes the reference. Any suggestions on how to proceed is appreciated.

JMenuItem rendering offset with 1.8.0_481

18 March 2026 @ 3:39 pm

After updating from 1.8.0_291 to 1.8.481 I noticed that JMenuItems are now rendered with a big offset on the left side, when using the Windows LAF (did not test on other platforms so far). In some cases this even results in the content not being rendered completely and in general it looks really ugly. Here are 2 images as comparission correct rendering rendering with offset The accelerator/mnemonic is pushed to the right without any padding and the icon is hunched up against the text. I tried setting alignment, text position and gap (suggested by different AI agents and online search) but to no avail menuItem.setHorizontalAlignment(SwingConstants.LEFT); menuItem.setHorizontalTextPosition(SwingConstants.RIGHT); menuItem.setIconTextGap(4);

Facing issues in deploying NestJS backend in Google Cloud Run

18 March 2026 @ 3:36 pm

I'm trying to host my NestJS backend on Google Cloud Run, but I keep getting this error consistently. How to resolve this issue? ERROR: (gcloud.run.services.update) The user-provided container failed to start and listen on the port defined provided by the PORT=8080 environment variable within the allocated timeout. This can happen when the container port is misconfigured or if the timeout is too short. The health check timeout can be extended. Logs for this revision might contain more information.

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

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

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

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.