Masthash

#semantic

Mastodon Migration
3 days ago

@markigra More disciplines currently supported by the Find Academics on Mastodon (https://find.sciences.social/) tool.

#Philosophers and Philosophy Teachers
#Political Scientists
#Psychology
#Public Policy
#Science and Technology Studies (STS)
#Semantic Web+
#Sociology

3/
#twittermigration

Knowledge Zone
5 days ago

#ITByte: Semantic HTML : Using the correct #HTML elements to describe your document content.

#Semantic #HTML elements are those that clearly describe their meaning in a human- and machine-readable way.

https://knowledgezone.co.in/posts/613c5e83ed2f31744586b1bd

Chaser Systems
6 days ago
n_to
3 weeks ago

I'm tinkering with an own CV-Webpage as I'm a bit fed up with my current employer and want some place which I can reference when dealing with recruiters and HR departments.

Question:
Is there a standard for the usage of semantic html in CVs? (e.g. some best practice when to use <section> and <article> or some guidelines for a structure that can be easily processed by recruiting software)

#boost #followerpower #semantic #semanticweb #html #cv #homepage

I worked on #AI research since 1980 and have seen a lot. So when Geoff #Hinton resigns from #Google to warn people about the very technology he doggedly pursued for decades, I have to take notice. This is especially true since I (and many others in AI of that era) did not and do not believe it is the most powerful approach to AI. We are on the cusp of integrating these techniques in powerful new hybrid systems that combine #statistical #associative methods with #semantic #conceptual methods. /1

T. T. Perry
1 month ago

If you need to do a #semantic search on some documents, this tool called Semantra is really slick! Installation and start-up were easy, and it feels like a magic spell to use.

via @dylan

https://journa.host/@dylan/110250571550600923

EllisGL
1 month ago

If I use #MermaidJS to create a #SequenceChart of a #RESTfulAPI, is there a set of rules that give more #semantic meaning to it?

benteh
1 month ago

hey all #semantic #ally #accessibility #wcag peeps!

it is a TRAVESTY that there are so few – and so BAD a11y memes!

seriously _someone_ needs to take responsibility, this will simply not do!

Itamar Medeiros
1 month ago

By imbuing enormous vectors with #semantic meaning, we can get #machines to reason more abstractly — and efficiently — than before. https://flip.it/s-hz0e #ArtificialIntelligence #Computation via @QuantaMagazine

katch wreck
2 months ago

https://www.sciencedirect.com/science/article/pii/S0933365723000374

"By transforming complex and multidimensional phenotypes from the Human Phenotype Ontology (HPO) format into vectors, our proposed method enables efficient representation of these phenotypes for downstream tasks that require deep phenotyping. This is demonstrated in a patient similarity analysis and can further be applied to disease trajectory and risk prediction."

#ontology #semantic #knowledgeBase #phenotype #graphEmbedding #representations #dataAnalysis

Knowledge Zone
2 months ago

#ITByte: A #Semantic #Data #Layer is a middleware between the data sources and your data application.

Know more...

https://knowledgezone.co.in/posts/642a7d8329dfcd4a107ff990

John C. Duff
2 months ago

My article, “Gettier Unscathed for Now,” has been #published in Logos & Episteme. I demonstrate that Mizrahi’s anti #Gettier argument essentially proves the veracity of Gettier cases.

https://doi.org/10.5840/logos-episteme202213325

#philosophy #epistemology #analyticphilosophy #peerreview #knowledge #justifiedtruebelief #semantic #kripke

Daniel
2 months ago

Just inspected Google Docs UI out of curiosity and was met with this monstrosity: No semantic HTML, everything is a div 🤦‍♂️

You would think the company building the most popular web browser knows how to properly design a web application.

#google #docs #semantic #html #accessibility #web #development #design #fail

A screenshot showing an open empty Google Docs document on the left hand side and open Firefox Developer Tools on the right hand side with the inspector panel open.

The input for selecting the text heading style is being inspected at the moment. The inspector panel shows that not only this element, but also other interactive elements are solely being made out of generic HTML div elements.
DrUKff
2 months ago

Theum AG - Investors page - Theum is offering opportunities for investments
PROJECT CONSULT is running the "Essentials" AI-based Knowledge Base on Theum.

http://bit.ly/3Zrm2NZ

#Theum #Investor #investment #AI #KI #KM #Knowledgemanagement #intelligent #investorspage #ArtificialIntelligence #Semantic

Giulio
2 months ago

Calling #openai API for #semantic #search through #vector #database #integration

https://zilliz.com/doc/integrate_with_openai

My "contribution": simply running this exercise from #github #codespaces (see the retrieval https://github.com/openai/chatgpt-retrieval-plugin repo). Well, I also like the colors of poetry install in my Konsole! (screenshot while #grpc io is preparing... https://github.com/openai/chatgpt-retrieval-plugin/issues/90 )

Read about embeddings https://platform.openai.com/docs/guides/embeddings

Dictionnaire des francophones
2 months ago

On a fait quelques petites modifications dans le code et améliorer l'intégration des données grâce au travail titanesque de @mnemotix. Données toujours hébergées par @Huma_Num.
D'autres ressources ont vu leurs jeux de données grossir cette année...
Ainsi près de 8000 définitions qui viennent du Grand Dictionnaire Terminologique (cc @OQLF), de #FranceTerme (cc @languesFR), de l'Inventaire (cc @auf_org) et de la BDLP (cc @universitelaval)

#web3 #semantic

David Delgado Vendrell
2 months ago

"good data quality is vital, but so too are the interpretability and correctness of results"

https://www.oxfordsemantic.tech/blog/chatgpts-snow-white-problem-the-danger-of-common-knowledge

#pkm #semantic #chatGPT #AI

Josiah Winslow
2 months ago

Working on adding more #semantic tags to my #website.

I just learned that, if you use a <fieldset> tag for a set of input fields, you can optionally provide a caption with a <legend> tag. I probably won't use <legend> here, but that's pretty neat.

#webdev #webdevelopment #HTML

<form action="../php/mail.php" method="POST">
  <fieldset>
    <legend>Contact Form</legend>

    <label for="name">Name</label>
    <input name="name" type="text"
        placeholder="Name"
        maxlength="50"
        autocomplete="off"
        required autofocus>

    <label for="email">Email</label>
    <input name="email" type="email"
        placeholder="email@addr.es"
        maxlength="50"
        autocomplete="off"
        required>

    <!-- etc... -->
  </fieldset>

  <div class="input-row">
    <button type="submit">
      <i class="bi bi-send-fill"></i>
      <span>Send</span>
    </button>
  </div>
</form>
A contact form.

Its input fields are inside a box with a gray border, with the caption "Contact Form" overlapping the top border to the left. The fields are labelled "Name", "Email", "Subject (Optional)", and "Message".

A "Send" button is at the bottom, with an icon of a paper airplane.
MJ
2 months ago

@ceperez

Limits exist for reasons though, and there's not a straight line from inputs to #semantic memory building.

Also, the #chatbots aren't responsible for creating more #information than we can consume, that comes from the digital revolution- computers, internet, etc.

So from that starting point (info overload), these #digital search assistants (DA) can help reduce search & reading time considerably, if used with careful consideration.

After receiving the filtered summary of relevant info (then converted to written notes), we can switch the frame of reference of our #DA to that of a tutor, asking for a series of questions in conversation style meant to illicit the correct answers from us rather than giving them directly.

I imagine their ability to ask questions from the POV of our teacher will be as great as their ability to answer our endless trivia questions, and much more beneficial.

#KM #Knowledge #Autodidact #Education #Research

Yuna
2 months ago

semver-info-action 1.1.9 🎉 Added 'change_type' output. Try it out! https://github.com/marketplace/actions/semver-info-action #GitHubActions #semantic #workflow #semver #githubactions #githubaction @github

Yuna
2 months ago
EUPublicationsOffice 🇪🇺
2 months ago

Local level internationalisation in #Armenia and #Georgia via open infrastructure and citizen science
#ENDORSE2023 track 2: #Semantic technologies in our everyday lives - Tangible impacts
https://op.europa.eu/en/web/endorse-2023/join-us-live

🐦🔗: https://n.respublicae.eu/EULawDataPubs/status/1636366465338322945

ENDORSE2023
EUPublicationsOffice 🇪🇺
2 months ago

Public #libraries , free to access, familiar, serving a large and diverse population... they have their role to play!
#semantic technologies can simplify information searching and seeking , enhance usage of digital libraries and more!
#ENDORSE2023 track 2

🐦🔗: https://n.respublicae.eu/EULawDataPubs/status/1636357224615346177

ENDORSE2023
EUPublicationsOffice 🇪🇺
2 months ago

Librarians! At #ENDORSE2023 Asmaa Bouaamri @ELTE_UNI explains how #semantic technologies can help public libraries serve their users with easy-to-use tools and applications. Prompt searching for example. Join live now at #ENDORSE2023 track 2:
https://europa.eu/!tNcV4W

🐦🔗: https://n.respublicae.eu/EULawDataPubs/status/1636353910586716162

ENDORSE 2023 conference - track 2
EUPublicationsOffice 🇪🇺
2 months ago

At #ENDORSE2023 track 2
Flores Bakker @Financien presents a #holographic architecture using #semantic technologies, the 'norm engine'➡️ https://europa.eu/!tNcV4W
#Lawtech

🐦🔗: https://n.respublicae.eu/EULawDataPubs/status/1636044016276971520

EUPublicationsOffice 🇪🇺
2 months ago

This was an important paper, beneficial to both academics working on PS #semantic #interoperability and practitioners aiming to migrate existing PS catalogues exploiting CPSV-AP!
Links will be provided for further study.
Thank you and continue the good work!
#endorse2023

🐦🔗: https://n.respublicae.eu/EULawDataPubs/status/1636004407279071233

EUPublicationsOffice 🇪🇺
2 months ago

#Semantic conversion is a difficult step.

@ontotext’s Vladimir Alexiev @valexiev1 presents their ʻRDF by exampleʼ approach to create semantic transformations from acceptable and understandable semantic models. #ENDORSE2023 track 2

Follow live! http://europa.eu/!tNcV4W

🐦🔗: https://n.respublicae.eu/EULawDataPubs/status/1635667069365624832

Alireza Dehbozorgi
2 months ago

A wonderful conversation with Dr. Raphaël Millière @raphaelmilliere (https://raphaelmilliere.com/) on #linguistics, & several other interesting and significant topics in #cognition & #artificial #intelligence, such as #semantic #competence, #grounding, #compositionality, & #LLMs, and different modes of #understanding.

Credit: Dr. Tim Scarfe.

https://www.youtube.com/watch?v=fhn6ZtD6XeE

Yuna
3 months ago

Semver-Info-Action 1.1.0 🎉 reads now "version.txt" files.
Try it out! https://github.com/marketplace/actions/semver-info-action
#GitHubActions #semantic #workflow #semver #githubactions #githubaction @github

Semver Info Action output example
data.europa.eu
3 months ago

RT @InteroperableEU: Looking for a way to evaluate key #interoperability aspects of your public services from a #semantic point of view? At day 1 of #ENDORSE2023 (15:45-16:05), our policy officer #RaulM_Abril will introduce you to #SIMAPS!

Register for the conference here!
👉https://op.europa.eu/en/web/endorse?pk_campaign=ENDORSE2023_160223_teaser_medium=tw

🐦🔗: https://n.respublicae.eu/EU_opendata/status/1634135801939259392

EC_DIGIT
3 months ago

Don't miss the start of #ENDORSE2023 with Director-Generals of EC DIGIT and EU Publications Office!

Follow the event live and discover the ground-breaking efforts that the 🇪🇺 makes in #semantic interoperability.

Register here 👉 https://europa.eu/!h69c48

The visual contains the photos of Veronica Gaffey, Director General for Informatics at the EC, and Hilde Hardeman, Director General of the Publication Office of the EU. The text says The European Data Conference on Reference Data and Semantics - ENDORSE, 14-16 March2023, online. Day 1, 14 March 2023, Opening speech, 13.45-13.55 CET.
Yuna
3 months ago

Semver-Info-Action 1.0.0 🎉 Cleans, parses, and compares semantic versions, providing essential insights into versioning. Try it out! out! https://github.com/marketplace/actions/semver-info-action
#GitHubActions #semantic #workflow #semver #githubactions #githubaction @github

Github Avtion Semver example

[Veille] "European Journal of Taxonomy: a deeper look into a decade of data" - sur @hal_fr@twitter.activitypub.actor Creating FAIR data from a publication results in an average multiplication factor of 166" https://hal.science/hal-04006527
#data #FAIRisation #semantic #researchdata #biodiversity #FAIRprinciples

mgladdish
3 months ago

Of all the batshit craziness of trying to write #semantic #html, perhaps the inability to include lists inside paragraphs bothers me the most.

Can anyone enlighten me on *why* this decision was taken? It seems super-arbitrary and limiting.

EUPublicationsOffice 🇪🇺
3 months ago

How can we extract deep #semantic attributes (entities, relations, categories, emotions, stylometric attributes …) from unstructured content to help us reason and make decisions?
Find out with @ExpertAILUX’s Gianluca Sensidoni at #ENDORSE2023:
➡️ https://europa.eu/!xRxkbp

🐦🔗: https://n.respublicae.eu/EULawDataPubs/status/1630968009693986843

#ENDORSE2023 conference, day 1, track 1

Testing #Semantic #Linkbacks now…

Shusaku Egami
3 months ago

I found out about a very interesting tool called SemApps, but I couldn't find related academic papers. Does anyone know of any papers that discuss the future and potential of SemApps?
https://semapps.org/
#semanticweb #semantic

#semantic #html #ux

Is there documentation or good practices on which copy to write for <details><summary></summary></details>, when the summary is intended to represent the contents of "details", given that it may be interpreted as an action button?

Perhaps it's the arrows that masquerade it for an action button, and representing expand/collapse with "+" and "-" might be a better implementation?

Here's more context on why I ask: https://github.com/w3c/tr-design/issues/266

data.europa.eu
3 months ago

The second workshop on #PersonalDataSpaces will take place soon. The objective of this workshop is to identify how personal data spaces can ensure #Semantic and technical #Interoperability by working hands-on on a use case.

👉 Read more: http://bit.ly/3RnCnRi

#EUOpenData

🐦🔗: https://n.respublicae.eu/EU_opendata/status/1624332460308987906

Harald Sack
4 months ago

An ode to the #Semantic Web - via ChatGPT

On the semantic web, all data is linked
It's organized and easy to think
No more clicking through pages and pages
Just type in your query, and bam, it engages
Thanks to the semantic web, search is improved
And finding what you need is finally removed
From the realm of the impossible and wild
Now information is organized and filed
On the semantic web, everything's clear
And finding what you need is no longer a fear

#AIart #AIpoetry

"An image of the Semantic Web, which is an extension of the World Wide Web through the provision of explicit semantics via ontologies to make Internet data machine-understandable."
Steps: 27 | Guidance: 9 | Sampler: k_euler_a | Model: Anything Diffusion | Seed: 4001048384 | Karras: true
Jacob Torrey
4 months ago

An interesting use case for #ChatGPT: Using it to summarize natural language into #RDF #semantic #web content for easier automated access. I don’t know a ton about RDF, but it seems like given a blog post and getting something like this out would be a good start:

@prefix talk: <http://example.com/talk/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix ex: <http://example.com/schema#> .

talk:presentation1
  a ex:Talk ;
  dcterms:title "A Neat Trick to Break Out of Virtual Memory as Kernel Shellcode" ;
  ex:describes "A technique used to solve the problem of accessing arbitrary physical memory or MMIO regions in a ring 0 privileged environment, without knowing the virtual address (VA) of the page tables, but only the physical address (PA). The solution involves accessing the physical memory location for PCI configuration space via the PCIe Extended Configuration Access Mechanism (ECAM) and modifying the Scratch-pad Data (SKPD) register using port IO." ;
  ex:timeline "8/2010 and presented 8/2014" .

For #semantic #linkeddata your preferred formats doing actual work are?

Soto²
4 months ago

"Information" in Shannon-Weaver sense should clearly be differentiated with living "𝐒𝐞𝐧𝐬𝐞-𝐦𝐚𝐤𝐢𝐧𝐠". But how to spread this important lucid point into the (scientific and technologic) community?
#Scybernethics #Information #Enaction #SenseMaking #Meaning #Semantic
---
RT @g_m_hodgson
@ki_cog Are you confining the term information to human communicators? What word should we use to describe “info” in genomes or in computers?
https://twitter.com/g_m_hodgson/status/1619974775685910529

Knowledge Zone
4 months ago

#ITByte: #Semantic is a development #Framework that helps create beautiful, responsive layouts using human-friendly HTML.

A brief overview of #SemanticUI and how it compares against #Bootstrap?

https://knowledgezone.co.in/posts/63d0cc01c187be4df9c665c3

Jörg Preisendörfer
4 months ago

@helge @factotum @lapingvino

Relax, no one is seeking to re-invent any wheel.

This thread is more about usability than it is about implementation.

No one can make use of #semantic properties in a vocabulary as long as they do not show up in frontends.

So, rather than deter consideration, let's keep the dialogue going.

🌺

🏷️ #OLC #QTH #SemanticFediverse #ActivityPub #Mastodon #Friendica #Pixelfed #Fediverse #Geocode #Geocoding #Georef #Georeferencing #OpenLocationCode #PlusCode #Maidenhead

How to implement Q&A against your documentation with GPT3, embeddings and Datasette

https://simonwillison.net/2023/Jan/13/semantic-search-answers/
‘…
What we want here is #semantic #search—we want to find documents that match the meaning of the user’s search term, even if the matching keywords are not present.

#OpenAI have a less well-known API that can help here…”

@edsu This usefully updates the ‘full-text vs. #metadata’ search arguments from 20+ years ago (with some Python!)

Shelly Blake-Plock
5 months ago

Hi there. New here, so quick #introduction. My work falls across three primary areas: #music production (mostly #electronic and #ambient and #jazz these days), speculative #fiction (including #horror and #scifi), and #technology (specifically #data and #semantic #tech). Elsewhere here, I post #microfiction and #photography as @Ghostible. I also know how to use a computer.

pandoc
5 months ago

#Pandoc produces "flat" #HTML output by default, placing all header elements on the same level in the document tree. The --section-divs option enables a hierarchical element structure, wrapping headings and the respective contents in <section> elements:

<section class="level1">
<h1>Intro</h1>
<p>Text</p>
<section class="level2">
<h2>Subsection</h2>
<p>More</p>
</section>
</section>

This adds #semantic info and can help with styling.

Jim Fuller
5 months ago

I think knowledge graphs are cool ... but I also think they are quite dangerous as currently designed - https://blog.jim.fuller.name/human-zero-day #humanzeroday #semantic #knowledgegraph

GNU TeXmacs
5 months ago

TeXmacs care a lot about homoglyphs. And you get even several kinds of invisible things. :) #typography #TeXmacs #mathematics #semantic-editing

Jerven
5 months ago

#RDF4j is a #semantic web stack written in #java and a proper #eclipse project. The new java capabilities allow some really sweet code. Some work we did was inspired by #JRuby and @headius. Which seems odd, but their use of invoke dynamic style code also applies to database query languages :D

RomainDavid
6 months ago

This PAPER ANOUNCEMENT on @resdatall blog:

@Romain_DAVID_13 @ERINHA_RI in @SciReports @EoscLife "An iterative and interdisciplinary categorisation process towards FAIRer digital resources for sensitive life-sciences data" #semantic #FAIRdata #Sensitive https://doi.org/10.1038/s41598-022-25278-z

https://www.rd-alliance.org/blogs/eosc-life-paper-interdisciplinary-semantic-between-life-science-research-infrastructures.html

EUPublicationsOffice 🇪🇺
6 months ago

RT @InteroperableEU: "The Interoperable Europe Act proposes a strategic cooperation mechanism, with a #community which we all hope to see you joining!Let’s continue shaping the #semantic aspects of #interoperability together, for a #Europe, fit for the #digital age!"-@AristiNat wrapping up #SEMIC2022

🐦🔗: https://n.respublicae.eu/EULawDataPubs/status/1600181925250879488

Looking for some pithy, slide-worthy #quotes about #semantic #HTML.

Predictably, web searches for "quotes on semantic html" tend to produce articles about <q> and <blockquote>

EC_DIGIT
6 months ago

The head of our #Interoperability Unit at @EC_DIGIT Leontina Sandu:
"#Semantic #Interoperability becomes much more attractive when you see it as 'data diplomacy': negotiating for data access and sharing the soft power of IT!"

Follow us at👉https://semic2022.eu
#SEMIC2022🎇

Leontina Sandu, head of the Interoperability Unit @ Semic Conference
Boiling Steam
6 months ago

Chatter Net: A decentralized semantic web built atop Activity Pub: https://github.com/chatternet/chatternet-client-http #linux #foss #update #release #chatternet #semantic #activitypub

For the record, I am happy to announce this is the first time in 12+ years on my blog, that I have used a thematic break, i.e. the `hr` element.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr
#Semantic #HTML FTW!

La Miscellena
6 months ago

#introduction Hello ! Je profite de cette nouvelle vague pour renaître sous ce nouveau profil, avec cette nouvelle instance (merci les admin au passage !) Mes principaux centres d'intérêts sont inscrits sur mon profil : #sens #semantic #semiotic #signe #iconographie #langage #discours #interaction #music #fiction #image (fixe et animée) et le reste est sans doute déductible de mes abonnements, si j'en ai oublié au passage ;-) J'espère être plus assidue qu'en 2017... A bientôt !

Tane Piper
7 months ago

Is there a term for #convergentEvolution in #softwareEngineering efforts?

Can it be Conway's Convergent Evolution?

Our lead Ontologist is at an event today and another company's team have built pretty much the exact same engineering solution as we have at IKEA for dealing with #Ontology and #semantic data

I guess my point is those networks felt more open, back in the #WildWestInternet days when people were still discovering the power of the tool in front of them.

With #mastodon and #Fediverse it feels like there is an opportunity (at least for a while) to pull away from the current Web and instead build a true #Web3 #Semantic layer where we control our content that #TimBernersLee proposed all those years ago.

Thomas E. Gladwin
7 months ago

Psychology-slash-AI paper about how semantic similarity, as per a language model (word2vec), is statistically associated with behavioural congruence effects at the item level, based on data from an IAT variant:
https://www.tandfonline.com/eprint/HQSV7KQY35BY53BHEW36/full?target=10.1080/16066359.2022.2123474

#Psychology #AI #NLP #semantic #word2vec #IAT #bias #association

KubikPixel™
9 months ago

I don't wan a #JurasicWeb, I wan a #SmallWeb this is fast and not bloated.

I like #JavaScript and all other more modern #techniques for the #web but pls
use it wisely and not on the inflationary dump and #stupid way! Don't load
every #content with JS and never use the #semantic HTML tags. You are silly to
structure your #HTML structure in endless <div> with nonsense class names. HTML
have well defined document #structures.

Don't #design the web, #code & #develop it!

A10N: If you're using #Semantic Web for #Hugo as a module, please be informed that it moved to #Codeberg.

v1.1.2 was also released (back ported a few tweaks from v1.2.0-dev).

Documentation: https://semweb.youronly.one
Source: https://codeberg.org/yelosan/hugo-semantic-web

Back in 2011 when both Google and Stanford University flew me out to do a few talks on Semantic Data and Machine Learning topics. My how time flys.

#Google #STEM #Stanford #MachineLearning #Semantic #Science

Daniel
2 years ago

Nice reminder by Manuel Matuzović that there are 112 HTML elements you can use!

https://www.matuzo.at/blog/element-diversity/

#HTML #semantic #elements

In just an hour we kick off our #LinkedData webinar, where projects funded by @NGIZero and other Next Generation Internet funds (like @pukkamustard's openEngiadina & DREAM) show their progress on #semantic and #metadata technology. Join in, no registration or signup is required. See you at 9.30! -> https://nlnet.nl/events/20210621/LinkedData/index.html

Overhead view of many highways crossing and passing over one another. Source: Unsplash.com.
dnkl :emacs:
2 years ago

Switching from #cedet+#semantic to #lsp. Looking good so far!

But should I use #ccls or #clangd?

#emacs

arkhi
2 years ago

For all the nostalgics, tomorrow is #cssnakedday, just saying… :)

https://css-naked-day.github.io/

#webdev #simpleasure #css #semantic

Daniel
2 years ago

TIL about the `kbd` HTML element:
A semantic element to describe user input, like keyboard shortcuts:

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd

#html #semantic #keyboard #shortcut #command

Ru
3 years ago

Tried to marry #Bootstrap v4 for a landing page I want to make, just for fun and the experience of using it.

I just can't get myself to it.

Vanilla #CSS has Flexbox, Grids, and Custom Variables.

There are projects that work with #semantic #html too!

Ru
3 years ago

I shouldn't excuse the horribly confusing date... but I'm definitely going to try this out. I wonder what's a #semantic commit message for a work in progress feature?

#git

https://seesparkbox.com/foundry/semantic_commit_messages

This is not "contact tracing" app! This is *co-surveillance* app...

#semantic #WordsMatter

Suitably ballyhooed
3 years ago

@esvrld hey!! They're #semantic

Halbeard
3 years ago

is there something like a #semantic #markup #language?

Else I'm calling dibs on the term for my project.

virus.media
4 years ago

@mntmn I really love the https://mntmn.com website.

It looks like, at least parts, are generated from #markdown files but the #HTML output is properly #semantic (section tags for example). I like that, and started poking around to see what tools you might have used to accomplish that.

Is it's code repo public anywhere?

Thanks for all your work, REALLY looking forward to the #Reform2