- Dec 2023
-
hypothes.is hypothes.is
Tags
Annotators
URL
-
-
mastodon.social mastodon.social
-
bbycroft.net bbycroft.net
-
-
www.allocine.fr www.allocine.fr
- Nov 2023
-
moment.github.io moment.github.io
-
-
www.centrepompidou.fr www.centrepompidou.fr
Tags
Annotators
URL
-
-
-
✅ We can actually use a neat trick which basically consists in making a CSS grid with a single grid item. All we really have to do then, is taking our grid-template-rows and make it transition from 0fr to 1fr: this way, our grid item will transition from 0 to its "natural" height. It's THAT simple:
```css .accordion - body { display: grid; grid - template - rows: 0 fr; transition: 250 ms grid - template - rows ease; }
.accordion: hover.accordion - body { grid - template - rows: 1 fr; }
.accordion - body>div { overflow: hidden; } ```
-
-
flaviocopes.com flaviocopes.com
-
```js import path from 'path'; import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); ```
Tags
Annotators
URL
-
-
pnote.eu pnote.eu
Tags
Annotators
URL
-
-
www.larevuedupraticien.fr www.larevuedupraticien.frAccueil1
-
www.lequotidiendumedecin.fr www.lequotidiendumedecin.fr
-
apitracker.io apitracker.io
-
-
alan.norbauer.com alan.norbauer.com
Tags
Annotators
URL
-
-
www.librarything.com www.librarything.com
Tags
Annotators
URL
-
-
blog.librarything.com blog.librarything.com
-
www.librarything.com www.librarything.com
-
-
dave.cheney.net dave.cheney.net
Tags
Annotators
URL
-
-
ontobee.org ontobee.orgOntobee1
Tags
Annotators
URL
-
-
ontobee.org ontobee.orgOntobee1
-
-
github.com github.com
-
schema.org schema.org
Tags
Annotators
URL
-
-
schema.org schema.org
Tags
Annotators
URL
-
-
web.resource.org web.resource.org
Tags
Annotators
URL
-
-
asistdl.onlinelibrary.wiley.com asistdl.onlinelibrary.wiley.com
-
soundcloud.com soundcloud.com
-
developer.chrome.com developer.chrome.com
-
<div itemscope itemtype="http://schema.org/Code"> ```js let db; const DBOpenRequest = window.indexedDB.open("toDoList", 4); DBOpenRequest.onsuccess = (event) => { db = DBOpenRequest.result; }; const transaction = db.transaction( ['toDoList'], 'readwrite', { durability: 'strict' }); ``` </div>
-
-
bjork.bandcamp.com bjork.bandcamp.com
-
bjork.bandcamp.com bjork.bandcamp.com
-
css-tricks.com css-tricks.com
Tags
Annotators
URL
-
-
podcast.ausha.co podcast.ausha.co
-
developer.mozilla.org developer.mozilla.org
- Oct 2023
-
webauthn.wtf webauthn.wtf
Tags
Annotators
URL
-
-
www.npmjs.com www.npmjs.com
-
community.cloudflare.com community.cloudflare.com
-
stackoverflow.com stackoverflow.com
-
soundcloud.com soundcloud.com
-
soundcloud.com soundcloud.com
-
www.allocine.fr www.allocine.fr
Tags
Annotators
URL
-
-
soundcloud.com soundcloud.com
-
hbz.github.io hbz.github.io
Tags
Annotators
URL
-
-
cran.r-project.org cran.r-project.org
-
github.com github.com
-
docs.atomicdata.dev docs.atomicdata.dev
Tags
Annotators
URL
-
-
perso.liris.cnrs.fr perso.liris.cnrs.fr
-
w3c.github.io w3c.github.io
-
www.baeldung.com www.baeldung.com
Tags
Annotators
URL
-
-
open-ui.org open-ui.orgHome1
Tags
Annotators
URL
-
-
developer.chrome.com developer.chrome.com
-
Now, you can add <hr> (horizontal rule) elements into the list of select options and they will appear as separators to help visually break up the options
<div itemscope itemtype="http://schema.org/Code"> ```html <label for="major-select">Please select a major:</label> <br/> <select name="majors" id="major-select"> <option value="">Select a major</option>
<option value="arth">Art History</option> <option value="finearts">Fine Arts</option> <option value="gdes">Graphic Design</option> <option value="lit">Literature</option> <option value="music">Music</option>
<option value="aeroeng">Aerospace Engineering</option> <option value="biochemeng">Biochemical Engineering</option> <option value="civileng">Civil Engineering</option> <option value="compeng">Computer Engineering</option> <option value="eleng">Electrical Engineering</option> <option value="mecheng">Mechanical Engineering</option> </select> ``` </div>
Tags
Annotators
URL
-
-
www.mixcloud.com www.mixcloud.com
-
soundcloud.com soundcloud.comN.E.M.1
-
infra.spec.whatwg.org infra.spec.whatwg.org
-
-
chrome.google.com chrome.google.com
-
developer.chrome.com developer.chrome.com
-
rdf.insee.fr rdf.insee.fr
-
datatracker.ietf.org datatracker.ietf.org
-
hypothes.is hypothes.is
-
-
gist.github.com gist.github.com
-
www.dnb.de www.dnb.de
-
www.dnb.de www.dnb.de
-
www.dnb.de www.dnb.de
-
www.dnb.de www.dnb.de
-
research.securitum.com research.securitum.com
-
developer.chrome.com developer.chrome.com
Tags
Annotators
URL
-
-
blacksmithgu.github.io blacksmithgu.github.io
-
blacksmithgu.github.io blacksmithgu.github.ioFields1
-
nota-lang.org nota-lang.org
-
-
typst.app typst.app
-
-
nota-lang.org nota-lang.org
Tags
Annotators
URL
-
-
dl.acm.org dl.acm.org
-
Tags
Annotators
URL
-
-
beta.next.ink beta.next.inkNext1
Tags
Annotators
URL
-
-
www.dataversity.net www.dataversity.net
-
owl.man.ac.uk owl.man.ac.uk
-
blog.rolandl.fr blog.rolandl.fr
-
blog.cloudflare.com blog.cloudflare.com
-
While the interface among services is HTTP, the networking is not. In fact, there is no networking! Unlike the typical “microservice architecture,” where services communicate over a network and can suffer from latency or interruption, service bindings are a zero-cost abstraction. When you deploy a service, we build a dependency graph of its service bindings, then package all of those services into a single deployment. When one service invokes another, there is no network delay; the request is executed immediately.This zero-cost model enables teams to share and reuse code within their organizations, without sacrificing latency or performance.
-
-
developers.cloudflare.com developers.cloudflare.com
-
digitalriceprojects.pbworks.com digitalriceprojects.pbworks.com
-
www.wipo.int www.wipo.int
-
www.w3.org www.w3.org
-
www.w3.org www.w3.org
Tags
Annotators
URL
-
-
github.com github.com
-
www.ifla.org www.ifla.org
-
webdoc.sub.gwdg.de webdoc.sub.gwdg.de
-
www.learningsparql.com www.learningsparql.com
Tags
Annotators
URL
-
-
vega.github.io vega.github.ioOverview1
-
vega.github.io vega.github.io
-
developer.data.world developer.data.world
-
docs.data.world docs.data.world
Tags
Annotators
URL
-
-
data.world data.world
Tags
Annotators
URL
-
-
developer.data.world developer.data.world
Tags
Annotators
URL
-
-
datatracker.ietf.org datatracker.ietf.org
-
www.rfc-editor.org www.rfc-editor.org
-
developer.mozilla.org developer.mozilla.org
-
<div itemscope itemtype="http://schema.org/Code"> ```abnf Alt-Svc: clear Alt-Svc: <protocol-id>=<alt-authority>; ma=<max-age> Alt-Svc: <protocol-id>=<alt-authority>; ma=<max-age>; persist=1 ``` </div> <div itemscope itemtype="http://schema.org/Code"> ```http Alt-Svc: h2=":443"; ma=2592000; Alt-Svc: h2=":443"; ma=2592000; persist=1 Alt-Svc: h2="alt.example.com:443", h2=":443" Alt-Svc: h3-25=":443"; ma=3600, h2=":443"; ma=3600 ``` </div>
-
-
datatracker.ietf.org datatracker.ietf.org
-
github.com github.com
-
www.bortzmeyer.org www.bortzmeyer.org
-
datatracker.ietf.org datatracker.ietf.org
-
blog.cloudflare.com blog.cloudflare.com
-
www.sitepoint.com www.sitepoint.com
Tags
Annotators
URL
-
-
pugjs.org pugjs.org
Tags
Annotators
URL
-
-
datatracker.ietf.org datatracker.ietf.org
-
code.visualstudio.com code.visualstudio.com
-
wordpress.com wordpress.com
Tags
Annotators
URL
-
-
spec.commonmark.org spec.commonmark.org
-
commonmark.org commonmark.org
-
epydoc.sourceforge.net epydoc.sourceforge.net
-
firefox-source-docs.mozilla.org firefox-source-docs.mozilla.org
-
``` { version: 4,
info: { reason: <string>, // what triggered this ping: "saved-session", "environment-change", "shutdown", ... revision: <string>, // the Histograms.json revision timezoneOffset: <integer>, // time-zone offset from UTC, in minutes, for the current locale previousBuildId: <string>, // null if this is the first run, or the previous build ID is unknown
sessionId: <uuid>, // random session id, shared by subsessions subsessionId: <uuid>, // random subsession id previousSessionId: <uuid>, // session id of the previous session, null on first run. previousSubsessionId: <uuid>, // subsession id of the previous subsession (even if it was in a different session), // null on first run. subsessionCounter: <unsigned integer>, // the running no. of this subsession since the start of the browser session profileSubsessionCounter: <unsigned integer>, // the running no. of all subsessions for the whole profile life time sessionStartDate: <ISO date>, // hourly precision, ISO date in local time subsessionStartDate: <ISO date>, // hourly precision, ISO date in local time sessionLength: <integer>, // the session length until now in seconds, monotonic subsessionLength: <integer>, // the subsession length in seconds, monotonic addons: <string>, // obsolete, use ``environment.addons``
},
processes: {...}, simpleMeasurements: {...},
// The following properties may all be null if we fail to collect them. histograms: {...}, keyedHistograms: {...}, chromeHangs: {...}, // removed in firefox 62 threadHangStats: [...], // obsolete in firefox 57, use the 'bhr' ping log: [...], // obsolete in firefox 61, use Event Telemetry or Scalars gc: {...}, fileIOReports: {...}, lateWrites: {...}, addonDetails: {...}, UIMeasurements: [...], // Android only slowSQL: {...}, slowSQLstartup: {...}, } ```
-
-
firefox-source-docs.mozilla.org firefox-source-docs.mozilla.org
-
``` { type: <string>, // "main", "activation", "optout", "saved-session", ... id: <UUID>, // a UUID that identifies this ping creationDate: <ISO date>, // the date the ping was generated version: <number>, // the version of the ping format, currently 4
application: { architecture: <string>, // build architecture, e.g. x86 buildId: <string>, // "20141126041045" name: <string>, // "Firefox" version: <string>, // "35.0" displayVersion: <string>, // "35.0b3" vendor: <string>, // "Mozilla" platformVersion: <string>, // "35.0" xpcomAbi: <string>, // e.g. "x86-msvc" channel: <string>, // "beta" },
clientId: <UUID>, // optional environment: { ... }, // optional, not all pings contain the environment payload: { ... }, // the actual payload data for this ping type } ```
-
-
firefox-source-docs.mozilla.org firefox-source-docs.mozilla.org
-
firefox-source-docs.mozilla.org firefox-source-docs.mozilla.org
-
docs.telemetry.mozilla.org docs.telemetry.mozilla.org
Tags
Annotators
URL
-
-
connect.mozilla.org connect.mozilla.org
-
-
developer.mozilla.org developer.mozilla.org
-
-
```css :root { color-scheme: light dark; }
body { background: light-dark(#333, #ccc); } ```
-
-
Tags
Annotators
URL
-
-
bookdown.org bookdown.org
Tags
Annotators
URL
-
-
shiny.posit.co shiny.posit.co
Tags
Annotators
URL
-
-
rmarkdown.rstudio.com rmarkdown.rstudio.com
Tags
Annotators
URL
-
-
developer.mozilla.org developer.mozilla.org
-
```js const url = "https://path_to_large_file.mp4";
try { const res = await fetch(url, { signal: AbortSignal.timeout(5000) }); const result = await res.blob(); // … } catch (err) { if (err.name === "TimeoutError") { console.error("Timeout: It took more than 5 seconds to get the result!"); } else if (err.name === "AbortError") { console.error( "Fetch aborted by user action (browser stop button, closing tab, etc.", ); } else if (err.name === "TypeError") { console.error("AbortSignal.timeout() method is not supported"); } else { // A network error, or some other problem. console.error(
Error: type: ${err.name}, message: ${err.message}
); } } ```
-
-
djfricktion.bandcamp.com djfricktion.bandcamp.com
-
djfricktion.bandcamp.com djfricktion.bandcamp.com
-
soundcloud.com soundcloud.comJogi1
-
markdoc.dev markdoc.dev
-
-
-
-
www.typescripttutorial.net www.typescripttutorial.net
-
-
theheatwave.bandcamp.com theheatwave.bandcamp.com
-
jamaldefsquad.bandcamp.com jamaldefsquad.bandcamp.com
-
data.bnf.fr data.bnf.fr
Tags
Annotators
URL
-
-
levelup.gitconnected.com levelup.gitconnected.com
-
www.slideshare.net www.slideshare.net
-
www.topicmaps.org www.topicmaps.org
-
www.w3.org www.w3.org
Tags
Annotators
URL
-
-
ontopia.net ontopia.net
-
ontopia.net ontopia.net
-
-
-
www.mixcloud.com www.mixcloud.com
-
Tags
Annotators
URL
-
-
www.loc.gov www.loc.gov
-
www.w3.org www.w3.org
-
-
jena.apache.org jena.apache.org
Tags
Annotators
URL
-
-
networkedplanet.com networkedplanet.com