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.

The closing square bracket within a charlist in the Like statement in Microsoft Access

5 April 2026 @ 5:41 pm

The closing sqare bracket can't be enclosed within the square brackets and thus can't be used also within a charlist, for example: Like "*[#?]]*" Is any other way to to insert the closing square bracket into a charlist, not adding it separately, like this: Like "*[#?]*" Or Like "*]*" ?

Need to Understand how to find work after ISO certifications

5 April 2026 @ 5:28 pm

I am thinking of doing the following 9001,27001,22701,22301 and 42001 Can some one guide me where to find work after the certifications and certifications are by IRCA and Tuv Sud. Don't know more, Ai said I need to go to Registrars and get registered as Independent contractor and do shadow other Lead Auditors for 20-35 and then get Letter of Authorization . I am really new to the field of Auditing during my tenure I have helped my Teams to prepare for Audit and that all I know . If someone can guide me the process it will be a major advice.

Directory dissapeared Debian [closed]

5 April 2026 @ 5:27 pm

Is it possible for a directory to disappear on Linux due to an error, maybe in the file system? I went to access a directory that I use most days and it was gone. It's possible that I deleted it by accident but I don't remember anything. I've tried looking at logs and I can't find anything. All I can find is a record of the last file that I used in that directory in the recently-used file. I've checked smartctl for any SSD errors but it looks ok. The window manager is xfce.

The correlation between declarative and imperative programming and the complexity of abstraction in coding

5 April 2026 @ 4:49 pm

Is it possible to say that "all high-level programming languages are mostly declarative" and vice versa, "all low-level programming languages are mostly imperative" (with some degree of convention)? I mean, when you write (in a hypothetical python), you're writing a set of high-level instructions (sometimes even too high-level) for an interpreter, and it comes down to literally specifying what you want to achieve in the end (i.e., ultimately resulting in declarative programming): from operator import add items = [(0, 1), (2, 3)] print([add(*item) for item in items]) While in lower-level programming languages (C, C++, ...) you specify a set of instructions to the compiler at a low level in a predominantly imperative approach to obtain the desired result: #include <stdio.h> #include <stdlib.h

How to make changes in a .tpp template implementation file trigger recompilation in a Makefile?

5 April 2026 @ 4:23 pm

I'm using .tpp files to store template implementations. However, modifying a .tpp file does not trigger recompilation, because Make does not generate an .o file from a .tpp source. Still, these changes affect the compilation of .cpp files that include the corresponding .hpp. How can I make Make recompile when a .tpp file is changed? Minimal Reproducible Example MRE.hpp #pragma once #include <iostream> template <typename T> class MRE { T a; public: void write(std::ostream&); }; #include "MRE.tpp" MRE.tpp template <typename T> void MRE<T>::write(std::ostream& os) { os << "initial message"; } TestMRE.cpp

Is Pub/Sub a good choice for long-running async workflows (3–5 day response)?

5 April 2026 @ 3:56 pm

I’m designing a centralized platform using Google Cloud Pub/Sub serving multiple applications. 1)Client publishes request to a topic 2)Platform processes and sends to a 3rd-party system 3)3rd party responds after 3 to 5 days 4) Platform then publishes response to another topic for client consumption Looking for feedback from the community on: Correctness of this architecture Suitability of Pub/Sub for long-running workflows

`/usr/share/doc/util-linux/getopt-example.bash`: when is `Internal error!` useful?

5 April 2026 @ 3:26 pm

After finding out about getopt (and being disappointed it seems to have to work with eval no matter what, which means function inputs have to be filtered for security), I have nevertheless been using the example as suggested by man getopt: #!/bin/bash # A small example script for using the getopt(1) program. # This script will only work with bash(1). # A similar script using the tcsh(1) language can be found # as getopt-example.tcsh. # Example input and output (from the bash prompt): # # ./getopt-example.bash -a par1 'another arg' --c-long 'wow!*\?' -cmore -b " very long " # Option a # Option c, no argument # Option c, argument 'more' # Option b, argument ' very long ' # Remaining arguments: # --> 'par1' # --> 'another arg' # --> 'wow!*\?' # Note that we use "$@" to let each command-line parameter expand to a # separate word. The quotes around "$@" a

How to send terminal errors directly to GitHub Copilot Chat in VS Code without manual copy-paste

5 April 2026 @ 2:32 pm

I am doing little bit of vibe coding in Python. I am using VS Code IDE with Github Copilot chat. When any error comes after running a code, i copy it from terminal and paste it to chat window. Is there any workaround, for the time? I read that new release .115 will solve this problem but its still not available for download.

How can i develop a fullstack android app within 6 hours?

5 April 2026 @ 2:26 pm

So we have this codefest competition, a 6 hour hackathon and there is a machine problem to follow, our development time is only 6 hours. Now currently we're using viewBinding, sqlite openhelper, java, xml, recyclerview, textinput, cardview, image view, buttons. Thats it, we're not allowed to import dependencies or anything. The team is compose of one fullstack, one database/backend, one design, three (3) members in total. Our biggest challenge is some requirements are hard to implement. some takes a lot of time to setup. Our app is always incomplete no matter what we do. We ditched components like chips, viewpager, fragments, bottom navigations, everything is just jumping from one activity to another When developing we always start with database schema, then flowchart, then thats it, we create the database via sqliteopenhelper, then develop the login and register quickly no design, the competition provides us with 2 PCs with shared folder for file transfer, How can we improve our

Get a value of non-default-constructible type `T` from a byte array without undefined behavior

4 April 2026 @ 2:02 pm

I'm messing with FFI between Rust and C++ and I happen to know that some particular array of bytes pointed by a std::byte * pointer is a valid C++ object of type T, which can be anything for what concerns this question. How do I get back a valid value of type T from this array of bytes? What does not work: reinterpret_cast does not work because of the strict aliasing rules, apparently: template<typename T> T transmute(std::byte *ptr) { return *reinterpret_cast<T *>(ptr); // UB } memcpy works but requires T to be default constructible. template<typename T> T transmute(std::byte *ptr) { T value; // requires a default constructor memcpy(&value, ptr, sizeof(T)); return value; } the latter is usually suggested (also on the

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.