- Last 7 days
-
stackoverflow.com stackoverflow.com
-
lider-project.eu lider-project.eu
-
www.w3.org www.w3.org
Tags
Annotators
URL
-
-
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
-
www.ischool.berkeley.edu www.ischool.berkeley.edu
-
-
stackoverflow.com stackoverflow.com
-
These are the key parameters.
prop=revisions&rvprop=content&rvsection=0
rvsection = 0
specifies to only return the lead section.
-
-
podcasts.apple.com podcasts.apple.com
-
hypothes.is hypothes.is
Tags
Annotators
URL
-
-
hypothes.is hypothes.is
-
-
signed-exchange-testing.dev signed-exchange-testing.dev
-
-
developer.chrome.com developer.chrome.com
-
For creating SXGs for testing purposes, you can create a self-signed certificate and enable chrome://flags/#allow-sxg-certs-without-extension to have your Chrome process the SXGs created with the certificate without the special extension.
Tags
Annotators
URL
-
-
web.dev web.dev
-
-
wicg.github.io wicg.github.io
-
www.fun-mooc.fr www.fun-mooc.fr
-
-
schema.org schema.org
Tags
Annotators
URL
-
-
hypothes.is hypothes.is
-
-
-
The clientHeight property returns the inner height of an element in pixels. The property includes padding but excludes borders, margins and horizontal scrollbars.Alternatively, you can use the offsetHeight property, which returns the height of the element in pixels, including vertical padding and borders.
```js useEffect(() => { setDivHeight(ref.current.offsetHeight); console.log('height: ', ref.current.offsetHeight);
console.log('width: ', ref.current.offsetWidth); }, []); ```
Tags
Annotators
URL
-
-
-
www.youtube.com www.youtube.com
-
-
hypothes.is hypothes.is
-
-
www.youtube.com www.youtube.com
-
-
hypothes.is hypothes.is
-
-
github-did.com github-did.com
-
-
w3c-ccg.github.io w3c-ccg.github.io
-
-
www.w3.org www.w3.org
Tags
Annotators
URL
-
-
www.nasa.gov www.nasa.gov
Tags
Annotators
URL
-
-
pudding.cool pudding.cool
-
hypothes.is hypothes.is
-
-
musicbrainz.org musicbrainz.org
-
bash curl -H 'Accept: application/ld+json' https://musicbrainz.org/artist/20ff3303-4fe2-4a47-a1b6-291e26aa3438
Tags
Annotators
URL
-
-
www.youtube.com www.youtube.com
-
soundcloud.com soundcloud.com
-
goldhiphop.pro goldhiphop.pro
-
-
hackernews.api-docs.io hackernews.api-docs.io
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.comReddit1
Tags
Annotators
URL
-
-
www.biostars.org www.biostars.org
Tags
Annotators
URL
-
-
hypothes.is hypothes.is
-
-
felixgerschau.com felixgerschau.com
Tags
Annotators
URL
-
-
lavillette.com lavillette.com
-
jazzalavillette.com jazzalavillette.com
Tags
Annotators
URL
-
-
agrovoc.fao.org agrovoc.fao.org
Tags
Annotators
URL
-
-
www.fao.org www.fao.org
Tags
Annotators
URL
-
-
hypothes.is hypothes.is
-
-
www.meteck.org www.meteck.org
Tags
Annotators
URL
-
-
people.cs.uct.ac.za people.cs.uct.ac.za
-
hypothes.is hypothes.is
-
- Aug 2022
-
www.w3.org www.w3.org
Tags
Annotators
URL
-
-
www.france.tv www.france.tv
-
indieweb.org indieweb.org
Tags
Annotators
URL
-
-
ostatus.github.io ostatus.github.io
-
www.salmon-protocol.org www.salmon-protocol.org
-
aaronparecki.com aaronparecki.com
-
codeontime.com codeontime.com
-
-
-
stackoverflow.com stackoverflow.com
-
www.youtube.com www.youtube.com
-
datatracker.ietf.org datatracker.ietf.org
Tags
Annotators
URL
-
-
developer.twitter.com developer.twitter.com
-
If your site is using multiple widgets you can set up Twitter widgets in your pages once, which will make your site faster, and widgets such as embedded Tweets will be more reliable for authors when using content management systems.
```html
<script>window.twttr = (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], t = window.twttr || {}; if (d.getElementById(id)) return t; js = d.createElement(s); js.id = id; js.src = "https://platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs); t._e = []; t.ready = function(f) { t._e.push(f); }; return t; }(document, "script", "twitter-wjs"));</script>```
-
-
stackoverflow.com stackoverflow.com
-
```js export function Tweet({ tweetID, }) { const tweetRef = useRef(null); const [isLoading, setIsLoading] = useState(true);
useEffect(() => { const tweetEl = tweetRef?.current if (window.twttr && tweetEl) (async() => { await window.twttr.ready(); await window.twttr.widgets.createTweet( tweetID, tweetEl, { align: 'center', conversation: 'none', dnt: true, } ); setIsLoading(false); console.log('Tweet loaded') })(); return () => { tweetEl?.remove(); } }, [tweetID, tweetRef]);
return ( <div ref={tweetRef} className="w-full bg-gray-100 h-fit animate-fadeIn" id={tweetID}> {isLoading &&
🐦
} </div> ); }; ```
-
-
Tags
Annotators
URL
-
-
rahuulmiishra.medium.com rahuulmiishra.medium.com
-
medium.com medium.com
-
soundcloud.com soundcloud.com
- Jul 2022
-
soundcloud.com soundcloud.comMorning1
-
soundcloud.com soundcloud.com
-
isamatov.com isamatov.com
Tags
Annotators
URL
-
-
kentcdodds.com kentcdodds.com
Tags
Annotators
URL
-
-
mathewlowry.medium.com mathewlowry.medium.com
-
A Solid Social Knowledge GraphBy networked these second brains together via the Fediverse, the MyHub.ai toolkit creates a distributed Social Knowledge Graph for each Hub Editor.
-
Your Hub’s CMS: a Thinking Management System for writersEach Hub’s content management system (CMS) is actually a “Thinking Management System”: a thinking tool based on a Personal Knowledge Graph (PKG) which is custom-designed to support thinking and writing.
-
-
stackoverflow.com stackoverflow.com
-
```js const versions = [ { version: 1, data: 1}, { version: 3, data: 3}, { version: 17, data: 17}, { version: 95, data: 95} ];
function getNextVersion(v) { return versions.slice(0).reduceRight((a , b, i , arr) => b.version <= v ? (arr.length = 0, b) : b) } ```
-
-
soundcloud.com soundcloud.com
-
www.youtube.com www.youtube.comSacatela1
-
ricardometring.com ricardometring.com
-
Here's a complete function that removes accents, replaces special characters with hyphens, also removing additional hyphens:
```js const replaceSpecialChars = (str) => { return str.normalize('NFD').replace(/[\u0300-\u036f]/g, '') // Remove accents .replace(/([^\w]+|\s+)/g, '-') // Replace space and other characters by hyphen .replace(/--+/g, '-') // Replaces multiple hyphens by one hyphen .replace(/(^-+|-+$)/g, ''); // Remove extra hyphens from beginning or end of the string }
console.log(replaceSpecialChars('This is a sentence!!!')); ```
-
-
stackoverflow.com stackoverflow.com
-
```js function replaceDiacritics(s) { var s;
var diacritics =[ /[\300-\306]/g, /[\340-\346]/g, // A, a /[\310-\313]/g, /[\350-\353]/g, // E, e /[\314-\317]/g, /[\354-\357]/g, // I, i /[\322-\330]/g, /[\362-\370]/g, // O, o /[\331-\334]/g, /[\371-\374]/g, // U, u /[\321]/g, /[\361]/g, // N, n /[\307]/g, /[\347]/g, // C, c ];
var chars = ['A','a','E','e','I','i','O','o','U','u','N','n','C','c'];
for (var i = 0; i < diacritics.length; i++) { s = s.replace(diacritics[i],chars[i]); }
document.write(s); } ```
-
-
developer.mozilla.org developer.mozilla.org
-
hypothes.is hypothes.is
-
-
hypothes.is hypothes.is
-
-
hypothes.is hypothes.is
-
-
podcast.ausha.co podcast.ausha.co
-
notify.coar-repositories.org notify.coar-repositories.org
Tags
Annotators
URL
-
-
developers.cloudflare.com developers.cloudflare.com
-
www.w3.org www.w3.org
-
-
perso.liris.cnrs.fr perso.liris.cnrs.fr
Tags
Annotators
URL
-
-
www.webtips.dev www.webtips.dev
Tags
Annotators
URL
-
-
www.yomo.run www.yomo.runYoMo1
-
-
web.dev web.dev
Tags
Annotators
URL
-
-
www.w3.org www.w3.org
Tags
Annotators
URL
-
-
datatracker.ietf.org datatracker.ietf.org
-
datatracker.ietf.org datatracker.ietf.org
-
www.allocine.fr www.allocine.fr
-
www.youtube.com www.youtube.com
-
soundcloud.com soundcloud.com
-
www.w3.org www.w3.org
-
-
hearthis.at hearthis.at