- Apr 2024
-
arxiv.org arxiv.org
-
implementedtransition system (henceforth – specification),
specification
is an implementation of a TS by a TS'.
Tags
Annotators
URL
-
- Dec 2023
- Jun 2023
-
www.semanticscholar.org www.semanticscholar.org
-
European Law Identifier (ELI) and the European Case Law Identifier (ECLI), which provide technical specifications for Web identifiers and suggestions for vocabularies to be used to describe metadata pertaining to legal documents in a machine readable format. Notably, these ECLI and ELI metadata standards adhere to the RDF data format which forms the basis of Linked Data, and therefore have the potential to form a basis for a pan-European legal Knowledge Graph.
ELI (european law identifier) ECLI (European case law identifier) technical specification for web identifiers suggested vocabularies for metadata goal : legal documents in machine readable format.
But some counties don't have this implemted and that stands in the way of a pan-European legal Knowledge Graph.
-
- Dec 2022
-
docs.docker.com docs.docker.com
-
Introduction of the Compose specification makes a clean distinction between the Compose YAML file model and the docker-compose implementation.
-
- Nov 2022
-
webmonetization.org webmonetization.org
-
Web Monetization
Web Monetization official site with motivation, wallets, providers, browsers, search engines, tools, documentation link, explainer link, specifications link, awesome list link, github link
Tags
- tessy
- gridsome
- web monetization
- gatsby
- documentation
- specification
- standard
- javasript
- currency
- vuepress
- hugo
- money
- mojeek
- jekyll
- pipe web
- ledger
- awesome
- github
- list
- 11ty
- uphold
- plugin
- ngx
- revenue
- motivation
- explainer
- monetization
- svelte
- w3c
- wallet
- mozilla
- protocol
- donations
- infinity search
- moodle
- interledger
- coil
- micro-payment
- ilp
- edge
- gatehub
- puma
- chrome
Annotators
URL
-
- Oct 2022
-
schema.org schema.org
-
CuraciónProductos
GestiónLABioinformación
DanielaParedesCrisanto
-
- Sep 2022
-
-
As a reminder, the JSON Schema is not the source of truth for the Specification. In cases of conflicts between the Specification itself and the JSON Schema, the Specification wins.
-
-
github.com github.com
-
without a schema, you do not have a spec, you have an aspiration.
annotation meta: may need new tag: you don't have a _; you have a _
-
I'd also love to see a JSON schema along with the specification. I don't really trust myself to be able to accurately read the spec in its entirely, so for 2.0 I fell back heavily on using the included schemas to verify that what I'm generating is actually intelligible (and it worked, they caught many problems).
-
-
github.com github.com
-
OAS 3.1 uses all of JSON Schema draft 2020-12 including unevaluatedProperties. You won't find direct references to unevealuatedProperties in the OAS spec because it links to the JSON Schema spec instead of duplicating it's contents.
-
-
-
This object is a superset of the JSON Schema Specification Draft 2020-12.
-
-
github.com github.com
-
As a reminder, the JSON Schema is not the source of truth for the Specification. In cases of conflicts between the Specification itself and the JSON Schema, the Specification wins. Also, some Specification constraints cannot be represented with the JSON Schema so it's highly recommended to employ other methods to ensure compliance.
-
-
github.com github.com
-
JSON Schema allows for additionalProperties both a boolean or an object value. true is interpreted as "additional properties follow no restrictions", false means "no additional restrictions", and an object is interpreted as a JSON schema applied to the property values (the empty object is thus equivalent to true).
-
- Mar 2022
-
momentjs.com momentjs.com
-
not all modern implementations have implemented this specification correctly (e.g., Safari)
-
- Feb 2022
-
www.jacobsen.no www.jacobsen.no
-
Hence an email address/mailbox/addr-spec is "local-part@domain"; "local-part" is composed of one or more of 'word' and periods; "word" can be an "atom" which can include anything except "specials", control characters or blank/space; and specials (the *only* printable ASCII characters [other than space, if you call space "printable"] *excluded* from being a valid "local-part") are: ()<>@,;:\".[] Therefore by the official standard for email on the internet, the plus sign is as much a legal character in the local-part of an email address as "a" or "_" or "-" or most any other symbol you see on the main part of a standard keyboard.
-
"+" is a completely valid character in an email address; as defined by the internet messaging standard published in 1982(!) RFC 822 (page 8 & 9)... Any website claiming anything else is wrong by definition, plus they are prohibiting me and many fellow anti-spam activists from tracking where inbound spam comes from:
-
-
distributed-text-services.github.io distributed-text-services.github.io
- Oct 2021
-
www.kylehq.com www.kylehq.com
-
QueueStore
-
export interface QueueInterface { count(): number; dequeue?(): any; enqueue(...args: any): void; flush(): any[]; reset(): void; setFifo(fifo: boolean): void; setLifo(lifo: boolean): void; truncate(length: number): void; } export class queue { protected elements: any[]; protected fifo = true; constructor(…args: any) { this.elements = […args]; } count() { return this.elements.length; } dequeue?(): any { if (this.fifo) { return this.elements.shift(); } return this.elements.pop(); } enqueue(…args: any) { return this.elements.push(…args); } // Like dequeue but will flush all queued elements flush(): any[] { let elms = []; while (this.count()) { elms.push(this.dequeue()); } return elms; } setFifo(fifo = true) { this.fifo = fifo; } setLifo(lifo = true) { this.fifo = !lifo; } reset(): void { this.truncate(0); } truncate(length: number) { if (Number.isInteger(length) && length > -1) { this.elements.length = length; } } } export default queue;
-
- Mar 2021
-
en.wikipedia.org en.wikipedia.org
-
Use cases, user stories, functional requirements, and visual analysis models are popular choices for requirements specification.
-
- Feb 2021
-
github.com github.com
-
It's an implementation of the command pattern in Ruby.
-
-
stackoverflow.com stackoverflow.com
-
never care and try to understand design standards
-
- Jan 2021
-
www.emailonacid.com www.emailonacid.com
-
The Gmail Android app that comes pre-installed with most new Android phones contains a feature to access non-Google accounts using POP and IMAP. Unfortunately, emails accessed through this setup lack the embedded style (<style>) support as well as the support for background images.
-
-
css-tricks.com css-tricks.com
-
overflow-wrap: break-word; makes sure the long string will wrap and not bust out of the container. You might as well use word-wrap as well because as the spec says, they are literally just alternate names for each other. Some browsers support one and not the other.
-
-
medium.com medium.com
-
In my opinion, it can sometimes look odd. Very interestingly, this is by design and is part of the Material design specification. This article isn’t to argue whether it should be this way or not, though; it’s just to change yours such that your MenuItem(s) show below the menu selection, like so:
-
- Dec 2020
-
github.com github.com
-
I personally think that starting from google's components makes easier to keeping update to material specs updates.
-
-
pubs.opengroup.org pubs.opengroup.org
- Nov 2020
-
stackoverflow.com stackoverflow.com
-
All browers handle 302 incorrectly. Chrome 30, IE10. It became the de facto incorrect implementation; that cannot be changed because so many web-sites issue mistakenly issue 302. In fact ASP.net MVC incorrectly issues 302, depending on the fact that browsers handle it incorrectly.
-
-
github.com github.com
-
This is not an MDC Web component. It is an addition that SMUI provides.
-
- Oct 2020
- Sep 2020
-
www.dublincore.org www.dublincore.org
- Aug 2020
-
github.com github.com
-
The problem is that opting out of mime type negotiation simply because there is a catch-all in there is wrong according to the specifications of HTTP.
-
-
github.com github.com
-
Yeah, so I believe what we want is.. If an action has no templates defined at all, AND it has no respond_to { ... } block, then it should do a 204 If an action has certain templates defined, AND it has no respond_to { ... } block, then it should do a 406 for formats with no templates If an action has a respond_to { ... } block, then it should do a 406 for formats not in the list
-
- May 2020
-
www.digital-democracy.org www.digital-democracy.org
-
Don’t go to code academy, go to design academy. Be advocates of the user & consumer. It’s not about learning how to code, it’s about translating real-world needs to technological specifications in just ways that give end users agency and equity in design, development and delivery. Be a champion of user-centric design. Learn how to steward data and offer your help.
The importance of learning to design, and interpreting/translating real-world needs.
-
-
kantarainitiative.org kantarainitiative.org
- Apr 2020
-
github.com github.com
-
The aim of this list is to document all Markdown syntax variations (rather than implementations).
-
-
github.com github.com
-
commonmark.org commonmark.org
Tags
Annotators
URL
-
-
github.github.com github.github.com
-
accessgudid.nlm.nih.gov accessgudid.nlm.nih.gov
-
unidad_COVID2019
-
-
apps.who.int apps.who.int
-
unidad_COVID2019
-
-
-
unidad_COVID2019
-
-
www.fallingrain.com www.fallingrain.comFR1
-
unidad_COVID2019
-
-
www.gazetteer.org.uk www.gazetteer.org.uk
-
unidad_COVID2019
Tags
Annotators
URL
-
-
www.equator-network.org www.equator-network.org
-
unidad_COVID2019
-
-
www.niso.org www.niso.org
-
unidad_COVID2019
Tags
Annotators
URL
-
-
-
unidad_COVID2019
Tags
Annotators
URL
-
-
utils.mucattu.com utils.mucattu.com
-
unidad_COVID2019
-
- Mar 2020
-
elifesciences.org elifesciences.org
-
unidad_COVID2019
Revisión por pares
-
-
www.nih.gov www.nih.gov
-
unidad_COVID2019
Reproducibilidad
-
-
www.nejm.org www.nejm.org
-
www.w3.org www.w3.org
-
PUT method requests that the enclosed entity be stored
-
-
science-sciencemag-org.elibrary.jcu.edu.au science-sciencemag-org.elibrary.jcu.edu.au
-
Misguided drug advice for COVID-19
-
-
www.labcorp.com www.labcorp.com
-
la prueba
-
-
www.cdc.gov www.cdc.gov
-
unidad_COVID2019
-
-
jamanetwork.com jamanetwork.com
-
unidad_COVID2019
-
-
www.idsociety.org www.idsociety.org
-
unidad_COVID2019
-
-
coronavirus.jhu.edu coronavirus.jhu.edu
-
unidad_COVID2019
-
-
www.nejm.org www.nejm.org
-
unidad_COVID2019
Tags
Annotators
URL
-
-
-
www.cdc.gov www.cdc.gov
-
unidad_COVID2019
-
-
www.thelancet.com www.thelancet.com
-
unidad_COVID2019
-
-
www.who.int www.who.int
-
unidad_COVID2019
-
-
www.who.int www.who.int
-
unidad_COVID2019
-
-
www.opensciencefair.eu www.opensciencefair.euhome1
-
unidad_COVID2019,ciencia_abierta
Tags
Annotators
URL
-
-
www.ncbi.nlm.nih.gov www.ncbi.nlm.nih.gov
-
unidad_COVID2019
-
-
www.salud.gob.mx www.salud.gob.mxLibro11
-
unidad_COVID2019
-
-
www.encodeproject.org www.encodeproject.org
-
unidad_COVID2019
-
-
www.wikidata.org www.wikidata.org
-
unidad_COVID2019
-
-
disease-ontology.org disease-ontology.org
-
unidad_COVID2019
-
-
icd.who.int icd.who.int
-
unidad_COVID2019
-
-
www.diseasesdatabase.com www.diseasesdatabase.com
-
unidad_COVID2019
-
-
meshb.nlm.nih.gov meshb.nlm.nih.gov
-
unidad_COVID2019
-
-
www.wikidata.org www.wikidata.org
-
unidad_COVID2019
-
-
www.wikidata.org www.wikidata.org
-
unidad_COVID2019
-
-
www.ncbi.nlm.nih.gov www.ncbi.nlm.nih.gov
-
unidad_COVID2019
-
-
browser.ihtsdotools.org browser.ihtsdotools.org
-
unidad_COVID2019
-
- Jan 2020
-
files.zotero.net files.zotero.net
-
This is the OAIS blah blah this is a page-level annotation.
Tags
Annotators
URL
-
-
github.com github.com
Tags
Annotators
URL
-
- Dec 2019
-
github.com github.com
- Nov 2015
-
www.w3.org www.w3.org
-
If you have a copy of the ReSpec repository handy, you may see that there is also a respec2html.js tool under tools/. Feel free to try using it instead of the above process, but please note that it is not used much currently and may behave in a somewhat experimental manner (experiences with it vary — but it's worth a shot if you're looking for a way to generate ReSpec output from the command line).
Respec (sadly) doesn't quite have a command line tool...at least not one comparable to a browser's output.
Maybe PhantomJS (which Respec uses for tests) would do a better job?
Tags
Annotators
URL
-