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.

Flutter `build_runner` error: `BuildForInputLogger` missing `Logger.onLevelChanged` implementation due to dependency conflicts

1 February 2026 @ 6:23 pm

Flutter build_runner error: BuildForInputLogger missing Logger.onLevelChanged I’m working on a Flutter project (git-touch-rebrand) and I’m encountering an issue when trying to run: flutter pub run build_runner build --delete-conflicting-outputs I consistently get the following error. Error Output PS D:\Git-Touch\git-touch-rebrand> flutter pub run build_runner build --delete-conflicting-outputs Deprecated. Use dart run instead. Building package executable... (16.8s) Failed to build build_runner:build_runner: /C:/Users/hamda/AppData/Local/Pub/Cache/hosted/pub.dev/build_runner_core-7.2.8/lib/src/logging/build_for_input_logger.dart:13:7: Error: The non-abstract class 'BuildForInputLogger' is missing implementations for these members: - Logger.onLevelChanged Try to either - pr

How does sites like TinyURL, Bitly stop absurd aliases?

1 February 2026 @ 6:22 pm

I am building a URL shortener website for my portfolio: tinyclk.com the v0 version is ready but I wanted to add custom slugs as the next feature; but I have noticed a problem: What if someone owns a site evil.com and arrives at my site to create a custom slug say: tinyclk.com/google This is a major problem and risks brand value. I checked tinyurl.com with these values: google, tomcruise, bombay, delhi, yahoo, stackoverflowand it gave an error: `alias unavailable` How is it that these sites are doing these checks: I am for sure that they aren't storing all the records of all the big companies/places/celebs in the world in some DB. enter image description here

SDL3 does not report SDL_EVENT_WINDOW_MINIMIZED on KDE Plasma

1 February 2026 @ 6:18 pm

I am using SDL3 and I am running on a KDE Plasma DE. I have the following Event Loop: void platform_poll_events(platform_t* p, input_state_t* input) { SDL_Event evt; while(SDL_PollEvent(&evt)) { fprintf(stderr,"%d\n",evt.type); input_event_t input_evt; if(convert_event(&evt, &input_evt)) { input->keys[input_evt.key] = input_evt.value; } else if(evt.type == SDL_EVENT_WINDOW_RESIZED) { int w = evt.window.data1; int h = evt.window.data2; fprintf(stderr,"Resized"); } else if(evt.type == SDL_EVENT_WINDOW_MINIMIZED) { fprintf(stderr,"Minimized"); p->window_state = PLATFORM_MINIMIZED; } else if(evt.type == SDL_EVENT_WINDOW_MAXIMIZED || evt.type == SDL_EVENT_WINDOW_RESTORED) { fprintf(stderr,"Maximized"); p->window_state = PLATFORM_KEEP_RUNNING; } else

Problem using OpenStreetMap integration to flutter project

1 February 2026 @ 6:15 pm

import 'dart:convert'; import 'package:flutter/material.dart'; import 'package:flutter_map/flutter_map.dart'; import 'package:flutter_map_location_marker/flutter_map_location_marker.dart'; import 'package:flutter_polyline_points/flutter_polyline_points.dart'; import 'package:latlong2/latlong.dart'; import 'package:location/location.dart'; import 'package:http/http.dart' as http; class OpenstreetmapScreen extends StatefulWidget { const OpenstreetmapScreen({super.key}); @override State<OpenstreetmapScreen> createState() => _OpenstreetmapScreenState(); } class _OpenstreetmapScreenState extends State<OpenstreetmapScreen> { final MapController _mapController = MapController(); final Location _location = Location(); final TextEditingController _locationController = TextEditingController(); bool isLoading = true; LatLng? _currentLocation; LatLng? _destination; List<LatLng> _route = []; @override void initState() { super.initSt

Implement an arbitrary order to my enum fields?

1 February 2026 @ 5:52 pm

Just started learning Rust and I am trying to implement an order to each field of my enum. So for example if I have the following enum: enum Fruit { Apple, Banana, Kiwi, } How can I assign an order to each of my fruits in such a way that I can use the "sort_by()" method on these fields after putting them in a vector for example? I hope I am clear I tried to implement an Ord trait for my enum but I am not sure to be on the right path and I can't seem to make it work with pattern matching.

Keep SSL while using Dual NGINX [closed]

1 February 2026 @ 5:44 pm

I currently have two instances of NGINX setup on multiple servers within the same physical network One of these NGINX instances is exposing services externally and the other is only exposing them internally, all traffic is using HTTPS, even internally I'm having trouble exposing a service that I already have exposed internally, basically I'm trying to expose it externally as well I'm trying to route from one NGINX to the other while still using HTTPS, I can get it working using port 80 and while not forcing SSL internally, which leads to external HTTPS, but I would like all internal traffic to be SSL as well, if I'm forcing SSL it leads to a this page isn't redirecting properly

DateTime.parse in flutter is converting passed string to UTC time

1 February 2026 @ 4:58 pm

I am calling an API from a flutter application. That API returns a DateTime field in a JSON object. That DateTime field contains local time, this way: 2026-02-01T13:43:08.3568212-03:00 The returned time is 13:43 which is local time. The API returns, in fact, the local time. When I run, in flutter, DateTime dtField = DateTime.parse(json['fechaHora']) This is what is assigned to ´dtField´ DateTime (2026-02-01 16:43:08.356821Z) How can I solve this in order the ´dtField´ to be assigned the correct time?

Convert Excel spreadsheet calculator to JavaScript web application

1 February 2026 @ 4:51 pm

I want convert a simple Excel spreadsheet calculator to web application, use jQuery forms. The resulting calc should look like this HTML page, two input fields and result field, plus "Reset" button below the "Total" field. I want use the OnChange event to execute logic when a field value changes. Excel formulas are just multiply and sum, but I'm not sure about JavaScript equivalent of Excel =ROUNDDOWN(B7+B8;2). Excel calculator: I don't know how to specify in HTML page all that spreadsheet calculation cells that should be hidden in web page (i.e. to specify value of Excel cells for each row using jQuery).

iFrame got blocked after update WordPress 6.9

1 February 2026 @ 4:42 pm

I'm facing trouble with displaying an iframe from my subdomain on the main domain. It was working well until I updated WP core to 6.9 What didn't work for me put the code into the wp-config.php use different priority for the hook use different hooks ('wp', 'wp_head', 'wp_foter', 'plugins_loaded') add_action('init', function(){ if( ($_SERVER['HTTP_SEC_FETCH_DEST'] ?? "") != 'iframe' ) { return; } $app_domain = 'https://example.com'; if (strpos($_SERVER['HTTP_REFERER'], $app_domain) !== false){ header("Content-Security-Policy: frame-ancestors " . $app_domain ); } else { header("Content-Security-Policy: frame-ancestors 'self' "); } }, PHP_INT_MAX); Any idea to what this may be related to?

Confusion about lambda and xlookup

1 February 2026 @ 4:39 pm

I am trying to solve the following issue, but I cannot get any formula to run. Imagine a table containing tasks, the tasks dependencies and a status "done" for each row. The dependencies column contains a string with comma separated task numbers. The formula in column C "dependencies solved" should contain true or false, depending on the done status of the referenced tasks. The column "done" will be filled in after each task has been done. Task [A1] dependencies [B1] dependencies solved [C1] done [D1] 1 TRUE 2 1 FALSE 3 1 TRUE 4 2,3 FALSE Now I want to calculate the value for the c

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.