#attribute

InterData VNinterdatavn
2025-05-13

Attribute là gì? Vai trò và ý nghĩa attribute trong website

Muốn làm chủ HTML và thiết kế trang web chuẩn chỉnh? Bạn cần hiểu rõ về Thuộc tính (Attribute) trong HTML. Đây chính là yếu tố tạo nên sự linh hoạt và hiệu quả cho thẻ HTML. Cùng InterData tìm hiểu về vai trò quan trọng của Attribute, các loại thuộc tính phổ biến và những quy tắc cần nhớ khi sử dụng trong bài viết này.

Xem chi tiết bài viết tại đây: interdata.vn/blog/attribute-la

#laptrinh

2025-04-14

Growing from 5 to 50 people? Congrats! 🥳

With more tasks, staying focused gets harder. Our #Attribute #highlighting feature (Enterprise add-on) helps you organize by using color to spotlight:

🎯 Priorities
📅 Due dates
✅ Status

👉 openproject.org/blog/prioritiz

#OpenProject #TaskManagement #ProjectManagement #OpenSource #Growth #ScaleUp

2025-04-12

Разрабатываем собственный анализатор C++ программы в виде плагина для Clang

Есть много проектов, целью которых является превратить С++ более "безопасный" язык программирования. Но внесение изменений в синтаксис языка обычно нарушает обратную совместимость со старым кодом, который был написан до этого. Недавно вышла новая версия библиотеки memsafe для языка С++, которая превращает его в Rust с помощью плагина Clang добавляет в С++ безопасное управление динамической памятью и контроль инвалидации ссылочных типов данных во время компиляции приложения. Но данная статья не о библиотеке, а об особенностях разработки анализатора программы на С++ в виде плагина для Clang. Можно считать, что это подведение итогов по результатам сравнения нескольких разных способов создания плагина для компилятора С++ , а так же очередной Хабрахак для хранения результатов экспериментов и публикации итоговых выводов, которые я решил сохранить не только для себя, но и в виде статьи на Хабре, что бы результатами моего труда могли воспользоваться и другие хорошие люди :-), которым так же может потребоваться погрузиться в дебри парсинга исходного текста программ.

habr.com/ru/articles/900224/

#clang #clangquery #plugin #memsafe #c++ #attribute

Angie RadtkeAngieRadtke
2025-04-04

inert That's kind of cool, but can certainly lead to nasty misunderstandings and errors web.dev/articles/inert

2025-03-13

"As they say: If in doubt, hide in a cloud." Haribord whispered the ancient proverb and poured some water from his flask onto his open hand. Within seconds, the water started to bubble and fog began to fall to the floor, much more than it had any right to.

The giant cavern filled with unnaturally thick fog in minutes, diffusing the red light from the ember crystals, which grew on the rough ceiling, into a hellish glow. Alarmed voices could be heard echoing on the stone walls.

"Who the fyock says that?" Stora rumbled and risked another peek over the boulder they were hiding behind. "Can we go now?"

"The scholars #attribute the proverb to the witch Haliga and although most people think it means to know when to hide and retreat, it's not actually that."

Haribord had closed his eyes. His face twitched from concentration, which gave him a demonic visage in the red gloom.

"You see, Haliga's cloud is not just a cloud. It is grown from you and thus part of you." Sweat ran down his brow. "You feel all that it touches. It will follow you and go anywhere you want." The fog started to flow and pool in different corners of the cavern. The cries of surprise and fear quickly turned into screams, then gurgles, then silence.

#microfiction #wss366 #writing #tootfic #smallstories

Wandering Shop Storieswss366@wandering.shop
2025-03-13

Today's Wandering Shop Stories #prompt is #attribute. Feel like writing something short and sweet that has the word "attribute" in it? Check out the definitions of the word at: merriam-webster.com/dictionary Join in and tag it with #wss366! #writing #WritingLife #microfiction h/t @tobadzistsini

WordofTheHourwordofthehour
2025-02-25

: to consider (something) as due or appropriate (to)

- French: attribut

- German: das Attribut

- Italian: attributo

- Portuguese: atributo

- Spanish: atribuir

------------

Fill in missing translations @ wordofthehour.org/r/translatio

2024-12-13
🪑Dr Rockstar ♫ajaxStardust@vivaldi.net
2024-12-06

#webdev #wordpress #nofollow #html #http #anchor #attribute #WCAG #webbrowser #extension

While I don't care enough to cite the extension which produces this effect, let me explain.
Oh you've already guessed. The strangely outlined-in-dash elements, shown here, are those which the aforementioned extension (and likely so many duplicate utilities) identified as "No Follow" links.

Can you remind me why that's important to know?
Well. Not really. But, because someone wants to study the data or whatever...
you know what i mean.

mccmcc
2024-12-02

I just for the first time wrote a Rust #[derive()] statement without having to go look up the syntax. I am proud of myself. This is only hard because I have to remember which one is the Rust attribute syntax and which one is the C++ attribute syntax and when I need an exclamation mark. Honestly, the Go equivalent of attributes starts to seem a little appealing just because it doesn't look enough like any other language to get me confused

2024-11-19

style.setProperty vs setStyle

На днях столкнулся с интересным вопросом. Что быстрее element.style.setProperty(свойство, значение) или element.setAttribute('style', 'свойство: значение') ? На первый взгляд ответ кажется очевидным. Логика говорит нам, что setProperty должен устанавливать значение сразу в CSSOM, тогда как setAttribute выставляет сначала атрибут style и уже потом значение атрибута будет разобрано в CSSOM. Таким образом, setProperty должен быть быстрее. Но действительно ли всё так однозначно? Давайте разбираться. Начнем с того, что немного освежим мат. часть. Мы знаем, что стили описываются с помощью языка CSS. Получив строковое описание стилей на языке CSS, браузер разбирает его и составляет объект CSSOM. Интерфейс этого объекта представлен спецификацией w3.org/TR/cssom-1 . Он следует принципам каскадности и наследования, изложенным в w3.org/TR/css-cascade-4 . Из выше указанных спецификаций мы знаем, что основной единицей CSS является "свойство". Свойству присваивается значение, характерное конкретно этому свойству. Если значение не задано явным образом, оно наследуется от выше стоящего стиля или, если нет вышестоящего, будет установлено initial value . Набор свойств для элемента собирается в правила CSSRule . Правила бывают разных типов. Наиболее популярный тип - CSSStyleRule , определяющий свойства элемента. Такое правило начинается с указания одного из валидных селекторов и последующих фигурных скобок с набором свойств и значений <selector>: { ... } Имеются и другие типы правил, например CSSFontFaceRule, описывающий параметры подключаемого шрифта @font-face { ... } , CSSMediaRule - @media { ... } и др. Полный список в спецификации w3.org/TR/cssom-1/#css-rules .

habr.com/ru/articles/859510/

#JavaScript #style #attribute #benchmarks

2024-10-31

"Mia's won’t do what she doesn't want," said Dan. "She won't make a noise about refusing, though."
“You’re right, I can’t just #attribute my happiness to her,” said Tom.
“To our better halves.” Dan raised his glass.
Tom joined the toast. “And to weddings going smoothly.” #vss365

2024-10-31

∴ brushstrokes of midnight—
a canvas of storms and moon
paints my attribute ∴

2024-10-23

Just found this article stating that using the #language #attribute for individual words within a text is not a good idea when you want #ScreenReader users to have a good #UX. It's just overengineered #a11y.

I'm a bit surprised as you always read otherwise (as the article also mentions).

Are some screen reader users here that can share their experiences? I'm really curious now 🤔

netz-barrierefrei.de/en/lang-a

JillyLovesLifeJilly5@mastodonapp.uk
2024-09-21

Well, first of all
I'd like to #attribute this to
How I feel right now!
Discombobulated and woozy!
This is not my best #attribute
But it's what you're getting
Like it or not! 🤔

#attribute #wss366! #writing #WritingLife #microfiction #WritingCommunity

Moved to wandering.shopwss366@botsin.space
2024-09-21

Today's Wandering Shop Stories word is #attribute. Feel like writing something short and sweet that has the word "attribute" in it? Check out the definitions of the word at: merriam-webster.com/dictionary Join in and tag it with #wss366! #writing #WritingLife #microfiction h/t @tobadzistsini

2024-08-13

Yesterday I attended an attribute training session, meant to train yourself to detect single flavor attributes in #beer. We discussed #tasting techniques and trained from a long list of 30 attributes.

Not unhappy with a blind recognition of 3/6, as this is really hard and it had been a while!

#craftbeer #BeerSommelier #Flavor #attribute #beersofmastodon

A flight of beers, spiked with different attributesA special extra attribute: a Grolsch, nine years beyond BBD is full of ethyl phenylacetate.We were hosted by CW BrewsThe cute 70L brewing set of CW Brews
2024-08-12

I’m pretty sure no browser would drop support for this given the widespread usage but, just in case, if anyone here is involved in the spec discussions and can propose to reverse this decision it would be helpful to the Small Web in the future.

#SmallWeb #Kitten #HTML #htmx #hypermedia #anchor #tag #name #attribute

2024-05-02

Python — Дескрипторы(Descriptors)

Если обратиться к документации, то дескриптор — механизм, который позволяет объектам настраивать поиск , хранение и удаление атрибутов. Дескрипторы используются в классах, выступая в роли атрибутов класса(не экземпляра). Думаю, мало кто, хотя бы раз, сам писал дескрипторы в коммерческой разработке, но я уверен, что большинство программистов используют механизмы, которые являются дескрипторами, или используют их "под капотом":

habr.com/ru/articles/811777/

#python #descriptor #class #attribute

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst