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.

cmake rust crate doesn't install header files and libraries to /usr/local/{include, lib} paths

9 March 2026 @ 5:11 pm

In my project, the Rust binary rust-bin needs to link to a C++ shared library sub-project cpp-lib, for which I'm using cmake rust crate as a build depedency. The entire project builds fine, but the C++ shared library is not getting installed to /usr/local/lib and also the library header files not getting installed to /usr/local/include, instead they are getting installed in the C++ sub-project cpp-lib path. Project Hierarchy . ├── CMakeLists.txt ├── Cargo.lock ├── Cargo.toml └── rust-bin ├── Cargo.toml ├── build.rs ├── cpp-lib │ ├── CMakeLists.txt │ ├── inc │ │ └── lib.hpp │ └── src │ └── lib.cpp └── src └── main.rs CMakeLists.txt cmake_minimum_requ

Love in channel loving

9 March 2026 @ 5:11 pm

Y jismein love hai love ke sath Lo aur bhi enemies rahenge jisse ki Ham sab ek dusre ko maar bhi sakte hain usmein real estate rahana chahie Kimi aur bhi range enemy going to ek dusre anime ko Bahut hi din graphics acchi honi chahie realistic honi chahie aur bhi give mein acchi acchi quality a rahi hai gan bhi Raha

Buildroot: Is this defconfig correct for running a Raspberry Pi Zero W hotspot?

9 March 2026 @ 5:03 pm

I am trying to build a minimal Buildroot image for a Raspberry Pi Zero W that should run a WiFi hotspot. I want to use "hostapd" and "dnsmasq" to provide the access point functionality. Before continuing with the setup, I would like to verify if my current kernel configuration fragment and Buildroot defconfig look correct or if I am missing something important. Here is my kernel configuration: # ===================================== # SYSTEMD CORE REQUIREMENTS (Wasserdicht) # ===================================== CONFIG_CGROUPS=y CONFIG_CGROUP_FREEZER=y CONFIG_CGROUP_DEVICE=y CONFIG_CGROUP_CPUACCT=y CONFIG_CGROUP_PIDS=y CONFIG_CGROUP_BPF=y CONFIG_NAMESPACES=y CONFIG_USER_NS=y CONFIG_PID_NS=y CONFIG_NET_NS=y CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS_MOUNT=y CONFIG_FHANDLE=y CONFIG_AUTOFS4_FS=y CONFIG_SIGNALFD=y CONFIG_TIMERFD=y CONFIG_EPOLL=y CONFIG_INOTIFY_USER=y CONFIG_SYSFS=y CONFIG_PROC_FS=y CONFIG_DMIID=y CONFIG_UNIX=y C

Makefile for compiling all LaTeX files

9 March 2026 @ 5:02 pm

I have a directory with a bunch of .tex files in various subdirectories. I want to compile them all with latexmk -pdf -pdflatex="pdflatex --shell-escape %O %S", with the generated files (PDFs and intermediate outputs) being in the same subdirectory as the source file. The reason for this is that some TeX files have the same file name in different subdirectories, e.g. ./foo/baz.tex and ./bar/baz.tex should be compiled to ./foo/baz.pdf and ./bar/baz.pdf respectively. The .tex files are currently all 2 subdirectories deep (./foo/bar/baz.tex) but ideally I'd like for this solution to work for TeX files at any depth in this directory. I wanted to make a Makefile for this repo, but am a bit stuck. At the moment I have: LATEXMK = latexmk -pdf -pdflatex="pdflatex --shell-escape %O %S" SRCS := $(shell find -na

How can I apply tail/tails to a string of text in a unicode-aware manner?

9 March 2026 @ 4:57 pm

This "warning sign" character, ⚠️, corresponds to the sequence of codepoints U+26A0 U+FE0F (if I understand correctly, it is ⚠ followed by a variation selector character), so I can render it in Haskell as "\x26a0\xfe0f". Unfortunately, functions like take/drop/tail/head and similar, are not aware that those two codepoints should always stay together. λ> Data.List.tails "\x26a0\xfe0f" ["\9888\65039","\65039",""] Initially, upon reading The ultimate guide to Haskell Strings, I thought that

MS Graph to add event into shared calendar using c#

9 March 2026 @ 4:49 pm

I am using MS Graph to add a calendar entry into shared calendar. It's showing this error: IUserEventsCollectionRequestBuilder does not contain a definition for PostAsync I can't find any other similiar method like PostAsync. What I'm actually trying to do is an event into a shared calendar with MS Graph (in an ASP.NET C# web application). Can please someone guide me ? Below is my code - private async Task<IUserCalendarsCollectionPage> Add() { var requestBody = new Event { Subject = "TEST", Body = new ItemBody { ContentType = BodyType.Html, Content = "TESTING", }, Start = new DateTimeTimeZone { DateTime = "2026-03-15T12:00:00", TimeZone = "Pacific Standard Time", }, End = new DateTimeTimeZone { DateTime = "

I'm going to do progress bar from moviepy on UI. I got problem about use data from moviepy when write_videofile

9 March 2026 @ 4:48 pm

I gen this code from gemini. It can run UI progress bar and "start" button. but it will error on clip.write_videofile("output.mp4", progress_bar=update_progress) line. it got an unexpected keyword argument 'progress_bar'. I don't know the collect way to use data from/when clip.write_videofile is running and use threading. What is problem on this code? import tkinter as tk from tkinter import ttk from moviepy import VideoFileClip import threading def start_processing(): # Function that work on thread def process(): clip = VideoFileClip("input.mp4") # use "progress_bar" from update "progress bar" in tkinter clip.write_videofile("output.mp4", progress_bar=update_progress) # start thread threading.Thread(target=process).start() def update_progress(current, total): # calculate % percent = (current / total) * 100 progress_bar['value'] = percent root.update

reference a <div>/<img> that sent onClick in JS script

9 March 2026 @ 4:43 pm

new to HTML and a bit stuck on what to do and cannot find any resources to help me. I want to make it so whenever I click an image, it scales, I've got the onclick working but I'm not sure on how to let the script know what image I'm clicking. any help is really appreciated ! HTML: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="style.css"> <title>Photography</title> <script type="text/javascript" src="gallery.js"></script> </head> <body> <header> <h1>hi everybody my name is markiplier</h1> </header> <div class="container"> <div class="imggallery"> <div class="imgcolumn">

Syncfusion Grid DateTimePicker submits value offset by 6 hours (timezone issue) in .NET 8 MVC batch editing

9 March 2026 @ 4:15 pm

I'm using Grid component in my .NET 8 project that dynamically configures, displays and edits columns of a SQL table. It's working impressively so far. At the moment, I'm encountering just one issue. When I go to edit a value that uses the Syncfusion.EJ2.Calendars.DateTimePicker,  If it helps to know, the Data for the rows is a public IEnumerable<dynamic> Data { get; set; } property. What happens is when I go to the table, it does display the date property. Even when I click to edit it, make the edit, and unclick the cell, everything is still good. The issue occurs when I click Update button to actually preform the edit. The action receives the date and I can see the date is offset forward by 6 hours. After update if I refresh the page, I see the 6 hours time added. So if date was 2025-12-31 00:00:00 ​and I entered 2025-12-31 06:00:00, ​upon update and refresh it displays 2025-12-31 12:00:00. I tried to add m

.NET 10 MacOS Development Environment

9 March 2026 @ 3:41 pm

On my friend's MacOS system, .NET 10 isn't recognizing that it should be running in the Development environment. Executing: dotnet run --project ./Path/To/Project.csproj --environment DOTNET_ENVIRONMENT=Development --configuration Debug still runs in the Production environment. We also tried setting the environment variable by just doing DOTNET_ENVIRONMENT=Development and not just passing it to the --environment option and that still didn't work. On Linux the above script is working just fine. Originally we set the environment variable via --environment Development but after updating to .NET 9.0.304 or higher that ended up not working anymore and changing it to --environment DOTNET_ENVIRONMENT=Development fixed the issue. I'm not sure if that's related or not and it seems odd to me as I don't believe the .NET docs show setting the environment that way. Why is i

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

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.

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