Search results

0
0
0
0
0
0

Is your website missing out on one of ’s easiest yet most powerful tools? The lang attribute takes just seconds to add, but it makes a massive difference for , SEO, and how your content displays. @webi18nW3C Internationalization, i18n

In this video, @xfqFuqiao Xue, who leads @w3cWorld Wide Web Consortium's activity, breaks down exactly what the language attribute does and demonstrate why skipping it can have real consequences. @webi18nW3C Internationalization, i18n

🎬 youtu.be/G3OwTPJo_Kw

Chinese vs Japanese font comparison for the Unicode character "U+76F4" (meaning "straigth, direct, honest"). The kanji is displayed differently in Chinese (lang="zh-Hans") and Japanese (lang="ja")
0

Definisjonsliste, type HTML

Fra HTML-standardens eksempler for dl-elementet

Café ou Chocolat Liégeois
3.50 <data itemprop="priceCurrency" value="EUR">€</data>
2 boules Café ou Chocolat, 1 boule Vanille, sauce café ou chocolat, chantilly
Américaine
3.50 <data itemprop="priceCurrency" value="EUR">€</data>
1 boule Crème brûlée, 1 boule Vanille, 1 boule Caramel, chantilly

eller

Apartment, n.
An execution context grouping one or more threads with one or more COM objects.
Flat, n.
A deflated tire.
Home, n.
The user’s login directory.
0

@nixCraftnixCraft 🐧 Hm.
<3h later> 💾 💻 :computerfairies:

I wrote myself a "tool" using 3 languages (all none C#)-based to resolve and translate "proficient" to my language.

Then I nodded & smiled, while inventing `$poems-o-code` in whitespace-and-esoteric-languages: brain-and-🤪f*ck
meets Shakespeare;

github.com/imihajlow/emojifuck

Slowly coming down: From Python to Perl to Ba(t)sh - then Markup, then -down, 1-2-3-4-5 even then
{ pause(); }

Eh...
> What was your question again?
> 🤓 😎 ❓

0

Introduction

Graduate work - Comparative Literature at U of in the early 90s; first forays into World Wide Web
lachance.artsci.utoronto.ca

Landed a position in the civil service; kept abreast of humanities computing ( aka ) via Humanist Discussion List
dhhumanist.org

Known for in the
cogdogblog.com/2003/11/bloggin

Later settling up a of my own "Berneval" on
berneval.hcommons.org

Learnt by hand coding my
lachance.artsci.utoronto.ca/BR

Happy to have observed over the course of the years that the world over has become more porous and to those that are . Happy too to have used as "to think is often to sort, to store and to shuffle: humble, embodied tasks".




Looking forward to the fostered by the ... to us all.

0

"One notable difference between and is the case of “Gray” and its variants.

In , “Gray” is specifically reserved for the 128 triplet (50% gray). However, in X11, “gray” was assigned to the 190 triplet (74.5%), which is close to W3C “Silver” at 192 (75.3%), and had “Light Gray” at 211 (83%) and “Dark Gray” at 169 (66%) counterparts.

As a result, the combined 3.0 color list that prevails on the web today produces “Dark Gray” as a significantly lighter tone than plain “Gray”, because “Dark Gray” was descended from X11 – for it did not exist in HTML nor CSS level 1 – while “Gray” was descended from HTML."

0
0

Dear Mastodon,

I am writing to tell you all about my wonderful and brand new HW HTML Drafting Project. It is an drafting software that works directly inside of the browser. It is available on GitHub at:

github.com/dckimMysteryAuthor/

It is also available in the form of a full featured demo at both:

dckim.com/HW_project_online.ht

and

HDUB.neocities.org

It's a wonderful program used to draw HTML just like a traditional drafting program.

Keyboard Like VI, Drag Images In

-dckimGUY

0

How many times have you changed your primary programming language in your career?

As a follow up question, for those who changed 6+ times, what was the motivator?

@raiderrobertRobert Roskam I guess it's rather that I'm collecting new languages, depending on the problem at hand.
I.e. while I still do lots of coding for efficiency at runtime, now is entering for efficiency during development time.
Then there is all that web stuff (, , , and still as backend) for interactive display.
And since about five years Verilog for programming.

I wouldn't call any of these a "permanent" change.

0

What about using rel="share-url" to expose sharing intents?

shkspr.mobi/blog/2025/08/what-

<html><head></head><body>

Let's say that you've visited a website and want to share it with your friends. At the bottom of the article is a list of popular sharing destinations - Facebook, BlueSky, LinkedIn, Telegram, Reddit, HackerNews etc.

Screenshot. "Share this page on" followed by colourful icons for popular social networks.

You click the relevant icon and get taken to the site with the sharing details pre-filled.

Screenshot of the Telegram sharing page.

The problem is, every different site has a different intent for sharing links and text. For example:

  • https://www.facebook.com/sharer.php?u=…&t=…
  • https://www.linkedin.com/sharing/share-offsite/?url=…
  • https://bsky.app/intent/compose?text=…
  • https://www.threads.net/intent/post?url=…&text=…
  • https://www.reddit.com/submit?url=…&title=…

As you can see, some only allow a URL, some text and a URL, and some just a plain text which could contain the URl. A bit of a mess! It's probably impossible to get every site to agree on a standard for their sharing intent. But there could be a standard for exposing their existing sharing mechanism.

That's the proposal from Ben Werdmuller with "Share Openly".

ShareOpenly knows about most major social networks, as well as decentralized platforms like Mastodon, Bluesky, and Known.

However, if ShareOpenly is having trouble sharing to your platform, and if your platform supports a share intent, you can add the following metatag to your page headers:

<link rel="share-url" href="https://your-site/share/intent?text={text}">

Where https://your-site/share/intent?text= is the URL of your share intent.

The special keyword {text} will be replaced with the URL and share text.

I think that's a pretty nifty solution.

For sites which take a URl and an (optional) title, the meta element looks like:

 HTML<link rel="share-url" href="https://www.facebook.com/sharer.php?u={url}&t={text}"><link rel="share-url" href="https://lemmy.world/create_post?url={url}&title={text}">

For those which only take URl, it looks like:

 HTML<link rel="share-url" href="https://www.linkedin.com/sharing/share-offsite/?url={url}">

It's slightly trickier for sites like Mastodon and BlueSky which only have a text sharing field and no separate URl. The current proposal is just to use the text. For example

 HTML<link rel="share-url" href="https://bsky.app/intent/compose?text={text}">

But it could be something like

 HTML<link rel="share-url" href="https://mastodon.social/share?text={text}%0A{url}">

What Next?

The HTML specification has this to say about adding new link types:

Extensions to the predefined set of link types may be registered on the microformats page for existing rel values.

Adding to that page merely requires a formal specification to be written up. After that, some light lobbying might be needed to get social networks to adopt it.

So, I have three questions for you:

  1. Do you think <link rel="share-url" is a good idea for a new standard?
  2. What changes, if any, would you make to the above proposal?
  3. Would you be interested in using it - either as a sharer or sharing destination?

Please leave a comment in the box - and remember to hit those sharing buttons!

</body></html>

0
0

Hello!

I am an artist and professor of Creative Technologies at Virginia Tech. In my work, I focus on the ways technologies of visualization and control intersect with and threaten lives.

I work in , , , , and more. Lately I have been doing a lot of for my projects and in my teaching.

Earlier this year, I combined my / / teaching resources into a single (free and open) site that I am really proud of:

byhand.website

I am also interested in , , , , , , , , , and .

0
0
0

I published a couple of YouTube shorts with 1-minute CSS/HTML tips and tricks. They are vertical versions of previous non-short movies.

Accent-color: youtube.com/shorts/KyVeQ1FTwOg

Theme color: youtube.com/shorts/_Ru5hHCxqQc

My wife will record some voice over later... something tells me those will be more successful than these ones that are only instrumentals with some jazzy music 😅

0

The new integrated Markdown parser I’ve been implementing in Kitten has been kicking my ass for the past few weeks but I think I finally have it fully working and seamlessly so. Expect a new release this/next week that brings the parsing of Markdown pages (.page.md files) in your apps up to the standard of the recently-improved runtime Markdown parsing in Kitten HTML tagged-template strings (within `<markdown>…</markdown>` blocks).

The coolest thing is I was able to implement this without introducing any new syntax. In fact, I was able to simplify things so that you can now add arbitrary JavaScript to your Markdown pages within a multi-line script block in the YAML front matter (`script: |`) and use JavaScript string interpolation syntax in your Markdown (and, of course, Kitten components and conditionals, which, themselves, rely on string interpolation).

The only place where you have to deviate from standard Markdown in your Markdown pages is if you have JavaScript string interpolations or Kitten components/conditionals in code fences within your Markdown. In that case, you’ll have to escape them (e.g., `<\${Component} />`, `\<if \${something}>something\</if>`, etc.). And, to be fair, the person most impacted by this is likely me as the Kitten documentation at kitten.small-web.org is written in Kitten so I had a lot of escaping to do. But for any other use case, it means that things should just work and work exactly as they do in JavaScript pages (page.js files).

Anyway, so this is going to be a breaking change so I thought I’d give you (the three of you playing with Kitten right now?) a heads up. Of course, I’ll be updating the documentation to reflect all this.

(Remember, Kitten is in pre-release and it’s the framework I’m building/using to create Catalyst – the Small Web hosting solution – and Yarn – a small web – peer to peer – personal site app. So Kitten isn’t the means, not the end. And, at least until the Version 1 API freeze, things can and will break. That said, there’s nothing stopping you from playing with it now and, to be fair, at this point, such breaking changes should become rarer and rarer).

:kitten:💕

0
0
0

@julian So all this is just an elaborate ploy to convince Mastodon devs to display summary? It might make sense, but then I don't understand why it is presented as a protocol problem.

The FEP won't make any difference. I've spent of lot of time tweaking my software in order to make rich content look good across the Fediverse (including Mastodon), and I can confidently say that Long form text FEP is not helpful at all. It is a mix of obvious requirements (which are already present in AP & AS), some arbitrary recommendations (like the set of allowed tags), and bad ideas (like the preview property). This is because it is not written by a developer: the author simply doesn't know what needs to be done in order to render an article across 10 different implementations.

When it comes to long form content, the best resource is @helge 's support tables. For example, there is an analysis of what HTML tags are supported in Article.content: https://funfedi.dev/support_tables/generated/html_tags_article/

No one talks about this project, but it is far more useful than anything done so far by the so called "longformers".

@developer @mikedevMike Macgirvin 🖥️ @jupiter_rowland @feb

@silverpill Who are the longformers anyway?

They're those who either are commercial or looking for professional/commercial users or both. Flipboard. Automattic (WordPress). Ghost. These kinds.

They know themselves. They know each other. And they know Mastodon. And that's it.

None of them has ever heard of Pleroma or Akkoma.

None of them has ever heard of Misskey or the Forkeys.

None of them has ever heard of Mitra.

None of them has ever heard of GoToSocial.

None of them has ever heard of Hollo.

None of them has ever heard of Friendica, Hubzilla, (streams) or Forte, even though Friendica and Hubzilla are both older than Mastodon. And apparently, neither has @Helge. But then again, Friendica and its nomadic, security-enhanced descendants are being overlooked by almost everyone. That's why there's always on-going work for features to be "introduced to the Fediverse" which Friendica has had for a decade and a half.

Granted, the HTML support on Friendica, Hubzilla, (streams) and Forte can be summarised with "yes". But elaborate tables that show what either of them supports how would be very useful.

Also, granted, everything I've mentioned above (normally) uses something else than HTML for formatting in the frontend. For example, Misskey and all Forkeys use MFM ("Misskey-Flavoured Markdown"). Friendica uses extended BBcode with the option to use Markdown instead. Hubzilla uses even more extended BBcode. (streams) and Forte can use the same even more extended BBcode and Markdown and HTML at the same time within the same post, although not all markup languages support all features.

#Long #LongPost #CWLong #CWLongPost #FediMeta #FediverseMeta #CWFediMeta #CWFediverseMeta #Fediverse #Mastodon #Pleroma #Akkoma #Misskey #Forkey #Forkeys #Mitra #GoToSocial #Hollo #Friendica #Hubzilla #Streams #(streams) #Forte #LongFormContent #BBcode #Markdown #HTML #TextFormatting
0
0
0
0

Narrat Game Engine

Narrat 🐀 has been getting a bit of attention again so here's another intro of the engine. I think most people who might be interested in this don't actually know about it so I'm hoping to reach more people for once.

Narrat is a game engine I created to easily make interactive fiction games (narrative RPGs, visual novels etc) for desktop or browser.

I’ve worked on this game engine for some time, mostly to help friends make their games. It’s been used on a few small games, and some bigger ones in progress.

This Tumblr post has more details and could do with a signal boost as it's getting attention tumblr.com/bubbline3456/708071

There's also a Patreon:
patreon.com/NarratEngine

🧵

Narrat Game Engine

🚀 If you just want to try it, , get on the website it’s very quick (get-narrat.com)

Here are some screenshots of games that have been made on it by people (Links to those games are on the website)

I don't really have a big network of followers so the only people can learn about this engine is if other people help spread info about it

0
0
0

Narrat Game Engine

Narrat 🐀 has been getting a bit of attention again so here's another intro of the engine. I think most people who might be interested in this don't actually know about it so I'm hoping to reach more people for once.

Narrat is a game engine I created to easily make interactive fiction games (narrative RPGs, visual novels etc) for desktop or browser.

I’ve worked on this game engine for some time, mostly to help friends make their games. It’s been used on a few small games, and some bigger ones in progress.

This Tumblr post has more details and could do with a signal boost as it's getting attention tumblr.com/bubbline3456/708071

There's also a Patreon:
patreon.com/NarratEngine

🧵

0
0
0
0
0
0

The Invoker Commands API is the new hotness for a declarative solution to the problem “click and see something happen!!”

However…

If we’re inside shadow DOM and the button being clicked is supposed to do a thing via its host component, then uh, nope. 🤨

Thankfully there’s always a workaround in the Wide World of the Web, so I’ve written it up and here it is!

😁 Yay for building directly on top of platform mechanics. 👏

thathtml.blog/2025/07/more-fun

0
0
0

RE
[Por mudanza de cuenta]

, amante de la , del , y de escucho mas que nada Rock y sus variantes (mas cercanas, nada experimental jaja), Metal y Grunge.

Actualmente trabajo como developer para una empresa, principalmente me encargo del CRM, que esta hecho enteramente por mi en , , , y .
Tambien he hecho cosas en para el trabajo, principalmente para IoT con una Raspberry.

Y fan de  !

0

Henlo frens, i have completed my basic studies of HTML and CSS with the help of a local school, now i begin studying Javascript.

But between the JS studies, i want to practice my HTML and CSS skills, what would be the best way to do that?

I believe that trying to clone existing websites would be a cool way to upskill. Do you know of any particular website(s) that i should try and clone as a beginner? I have once worked with cloning amazon.com.

What else can i do as well? I want to focus on styling and structure as well.

Tags:

0