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.

inputs from fields on form output to print on image

26 April 2026 @ 10:11 pm

Years ago I worked for a place where we had an application form that was done on our website. The fields, Name, Address, phone, etc were overlayed based on coordinates to a copy of the application we had so we could actually read the applications and the information was placed so we could print. I cannot for the life of me remember the script or coding for it. Thanks

Will copilot studio allow different free technologies to work within one application? [closed]

26 April 2026 @ 10:00 pm

I am building a custom AI, that need scale and customization. I am unsure which stack to choose - Copilot Studio or .net. I have researched that Copilot studio can connect different Microsoft technologies. However, customisation is limited.

how to add table in tsx zad1 Sed ut perspiciatis unde omnis iste natus error

26 April 2026 @ 9:39 pm

import { useInfiniteQuery, useMutation } from '@tanstack/react-query'; import { useDebouncedValue } from '@tanstack/react-pacer'; import { useForm } from 'react-hook-form'; import { useQueryState } from 'nuqs'; import { useState } from 'react'; import z from 'zod'; import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow, } from '@/components/ui/table'; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from '@/components/ui/dialog'; import { Spinner } from '@/components/ui/spinner'; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from '@/components/ui/select'; import { Skeleton } from '@/components/ui/skeleton'; import { Trash2 } from 'lucide-react'; import { fetchCourses, createCourse, deleteCourse, type Course, } from '@/api/courses'; import { toast } fro

Designing a Thread-Safe, High-Performance Logging System in Modern C++ (C++17/20)

26 April 2026 @ 9:19 pm

I’m currently working on a medium-sized C++ project where I need to implement a custom logging system. The requirements go beyond basic logging, and I’d like to validate my design decisions before going too far. Context The logger is intended to be: Thread-safe (used across multiple worker threads) Low-latency (minimal blocking in hot paths) Flexible (support multiple output sinks like console and file) Extensible (easy to add new log levels or sinks later) Current Approach Right now, I have: A singleton-style global logger instance (getGlobalLogger()) A mutex-protected std::ostream-like interface Optional file output using std::ofstream Message formatting via std::stringstrea

What are the best practices for Common Lisp/SBCL via Docker, especially with multithreading?

26 April 2026 @ 9:01 pm

I'm serving my application via Docker for testing purposes. It's written in Common Lisp and runs in SBCL. I'm running into a few, so to speak, silly issues and would love your thoughts on best practices. In particular, I'd love to know your thoughts on the simplest, most straightforward way to load my package, bypassing the following snags: Docker images must be built by running a series of steps non-interactively, so QuickLisp's step that requires the user to "hit enter" at the end of the installation process is not possible (I think). Is there a way to bypass this? My application includes a webserver (Hunchentoot) and is thus multithreaded, does this mean I can't save my image via "save-lisp-and-die" and load in the container build process? Thank you so much, as always!

Convergence of integral using complex integration

26 April 2026 @ 8:32 pm

in the second part of Statistical Physics of Landau and Lifshitz they mention the integral: enter image description here They get to that result by contour integration, but I am not quite sure if the integral actually converges. At the upper limit it clearly goes to zero like exp(-z), but at the lower limit the denominators saturates to 1, while the numerator oscillates. Does anyone have any clue?

Confusing Behavior of ALL Subquery in Apache IoTDB

26 April 2026 @ 8:13 pm

I'm using the ALL syntax in Apache IoTDB 2.0.6 table model for a query, but the returned result is inconsistent with expectations. Minimal Reproducible Data CREATE TABLE main_data ( `time` TIMESTAMP `TIME`, device_id STRING TAG, value INT32 FIELD ); CREATE TABLE detail_data ( device_id STRING TAG, ref_value INT32 FIELD ); INSERT INTO main_data VALUES (2024-01-01T00:00:00, 'D1', 30), (2024-01-01T01:00:00, 'D1', 40), (2024-01-01T02:00:00, 'D1', 50); INSERT INTO detail_data VALUES (2024-01-01T00:00:00, 'D1', 30), (2024-01-01T01:00:00, 'D1', 40), (2024-01-02T00:00:00, 'D1', `NULL`); Query Statement SELECT * FROM main_data WHERE device_id = 'D1' AND value > ALL (SELECT ref_value FROM detail_data WHERE device_id = 'D1'); Returned Result

Split integer into chunks to monitor workflow

26 April 2026 @ 7:11 pm

I am using python and gspread to manipulate a google sheet and want to be able to track how many rows have been processed. I can pull then number of rows in the sheet by doing num_rows = len(sheet.get_all_values()). Now I want to take that integer and split it into even chunks of 500 (except for the final chunk) and iterate over those chunks so that I can print out the progress the code is making as it works. How would I do that?

Can someone explain to me why we use surrogate keys for joining some fact/dim tables?

26 April 2026 @ 6:13 pm

I'm new to SQL and I was looking at dimensional and fact tables, I was told that apparently we use surrogate keys to connect the fact and dim tables, but why not just use the natural key then? I tried to shorten the code with ... so it's less to read. -- create gold customer information dimensional view create view gold.dim_customers as select -- creating a surrogate key for joining purposes row_number() over (order by cst_id) as customer_key, ..... from silver.crm_cust_info ci left join silver.erp_cust_az12 ca on ci.cst_key = ca.cid left join silver.erp_loc_a101 la on ci.cst_key = la.cid; -- create gold product information dimensional view create view gold.dim_products as select row_number() over(order by pn.prd_start_dt, pn.prd_key) as product_key, -- surrogate key for connecting data model ..... pn.prd_start_dt as start_date from silver.crm_prd_info pn left join silver.erp_px_cat_g1v2 pc on pn.cat_id = pc.id where prd_end_dt is null; -- filter out all hi

UDP transmission Not working in new phone but working in old one

26 April 2026 @ 5:21 pm

I am new in Android. I made an app that controls a WROOM-02 board containing an esp8266 microcontroller in AP mode. I am using the WROOM module as it comes, with the original AT firmware. I could make it work mostly with code I found here in a moto e7. When I installed the same app in a RedmiNote 13 it doesn't work, but if I send an UDP packet from my laptop the WROOM receives it. I also tried using a UDP sender I downloaded to my phone and the WROOM doesn't receive the packet. I tried the following: Connecting the laptop and the cellphone to my router I can send and receive messages between the laptop and the cellphone. Connecting the laptop and the cellphone to the WROOM AP I can send and receive messages in the laptop, but in the cellphone I receive messages but when I send something to the laptop I don't receive it. As I am usin 3rd party apps and standard AT firmware in the WROOM I don't know if any of my code will be useful to you. Her

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

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

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

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.