- Oct 2024
-
docdrop.org docdrop.orgview1
-
With an income of more than $300,000, Alexander's family was able to spend far more money on Alexander's education, lessons, and other enrichment activities than Anthony's parents could devote to their son's needs.
When it comes to education, one's socioeconomic status plays a big influence in their educational journey. Education is an area where the government cannot control equal opportunities because people will always be looking for the "best ways" for their children to learn. Even with public schools, living in richer areas will raise a students chances of going to college based on the facilities being offered.
-
- Sep 2023
- Aug 2023
-
developer.chrome.com developer.chrome.com
-
You can mark topics provided by request headers as observed by setting an Observe-Browsing-Topics: ?1 header on the response to the request. The browser will then use those topics to calculate topics of interest for a user.
-
-
github.com github.com
-
A spec to optimize ad targeting (respectful of privacy, they say... 😂🤣).
Fuck you Google with your dystopian API:
```js // document.browsingTopics() returns an array of BrowsingTopic objects. const topics = await document.browsingTopics();
// Get data for an ad creative. const response = await fetch('https://ads.example/get-creative', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify(topics) });
// Get the JSON from the response. const creative = await response.json();
// Display the ad. (or not) ```
-
- Jul 2023
-
github.com github.com
-
developer.chrome.com developer.chrome.com
-
```js // Log the full user-agent data navigator .userAgentData.getHighEntropyValues( ["architecture", "model", "bitness", "platformVersion", "fullVersionList"]) .then(ua => { console.log(ua) });
// output { "architecture":"x86", "bitness":"64", "brands":[ { "brand":" Not A;Brand", "version":"99" }, { "brand":"Chromium", "version":"98" }, { "brand":"Google Chrome", "version":"98" } ], "fullVersionList":[ { "brand":" Not A;Brand", "version":"99.0.0.0" }, { "brand":"Chromium", "version":"98.0.4738.0" }, { "brand":"Google Chrome", "version":"98.0.4738.0" } ], "mobile":false, "model":"", "platformVersion":"12.0.1" } ```
Tags
- http:header=sec-ch-ua-platform
- <meta http-equiv="accept-ch"/>
- http:header=user-agent
- http:header=sec-ch-ua-mobile
- http:header=sec-ch-ua-platform-version
- wikipedia:en=HTTP_Client_Hints
- http:header=sec-ch-ua
- mobile
- http:header=accept-ch
- http:header=sec-ch-ua-full-version
- http:header=sec-ch-ua-bitness
- http:header=sec-ch-ua-arch
- js
- conneg
- http:header=sec-ch-ua-model
- cito:cites=urn:ietf:rfc:8942
- cito:cites=urn:ietf:rfc:1945
- http
- http:header=sec-ch-ua-full-version-list
Annotators
URL
-
-
developer.mozilla.org developer.mozilla.org
-
- Note: Client hints can also be specified in HTML using the <meta> element with the
http-equiv
attribute.
html <meta http-equiv="Accept-CH" content="Width, Downlink, Sec-CH-UA" />
- Example:
http HTTP/1.1 200 OK Content-Type: text/html Accept-CH: Sec-CH-Prefers-Reduced-Motion Vary: Sec-CH-Prefers-Reduced-Motion Critical-CH: Sec-CH-Prefers-Reduced-Motion
- Note: Client hints can also be specified in HTML using the <meta> element with the
Tags
- http:header=sec-ch-prefers-reduced-motion
- <meta http-equiv="accept-ch"/>
- conneg
- http:header=critical-ch
- cito:cites=urn:ietf:id:draft-davidben-http-client-hint-reliability
- wikipedia:en=HTTP_Client_Hints
- http:header=vary
- cito:cites=urn:ietf:rfc:8942
- mobile
- http
- http:header=accept-ch
Annotators
URL
-
-
developer.mozilla.org developer.mozilla.org
-
http Sec-CH-UA-Mobile: ?1
-
-
wicg.github.io wicg.github.io
-
```idl dictionary NavigatorUABrandVersion { DOMString brand; DOMString version; };
dictionary UADataValues { DOMString architecture; DOMString bitness; sequence<NavigatorUABrandVersion> brands; DOMString formFactor; sequence<NavigatorUABrandVersion> fullVersionList; DOMString model; boolean mobile; DOMString platform; DOMString platformVersion; DOMString uaFullVersion; // deprecated in favor of fullVersionList boolean wow64; };
dictionary UALowEntropyJSON { sequence<NavigatorUABrandVersion> brands; boolean mobile; DOMString platform; };
[Exposed=(Window,Worker)] interface NavigatorUAData { readonly attribute FrozenArray<NavigatorUABrandVersion> brands; readonly attribute boolean mobile; readonly attribute DOMString platform; Promise<UADataValues> getHighEntropyValues (sequence<DOMString> hints ); UALowEntropyJSON toJSON (); };
interface mixin NavigatorUA { [SecureContext] readonly attribute NavigatorUAData userAgentData ; };
Navigator includes NavigatorUA; WorkerNavigator includes NavigatorUA; ```
Tags
- http:header=sec-ch-ua-platform
- http:header=user-agent
- http:header=sec-ch-ua-wow64
- http:header=sec-ch-ua-mobile
- http:header=sec-ch-ua-platform-version
- wikipedia:en=HTTP_Client_Hints
- http:header=sec-ch-ua
- http
- mobile
- http:header=accept-ch
- http:header=sec-ch-ua-full-version
- http:header=sec-ch-ua-bitness
- conneg
- http:header=sec-ch-ua-form-factor
- http:header=sec-ch-ua-model
- cito:cites=urn:ietf:rfc:8942
- http:header=sec-ch-ua-arch
- http:header=sec-ch-ua-full-version-list
Annotators
URL
-
-
-
```js exports.handler = async (event) => { if (event.headers != undefined) { const headers = toLowerCaseProperties(event.headers);
if (headers['sec-websocket-protocol'] != undefined) { const subprotocolHeader = headers['sec-websocket-protocol']; const subprotocols = subprotocolHeader.split(','); if (subprotocols.indexOf('myprotocol') >= 0) { const response = { statusCode: 200, headers: { "Sec-WebSocket-Protocol" : "myprotocol" } }; return response; } } } const response = { statusCode: 400 }; return response;
};function toLowerCaseProperties(obj) { var wrapper = {}; for (var key in obj) { wrapper[key.toLowerCase()] = obj[key]; } return wrapper; } ```
-
- Apr 2023
-
developer.mozilla.org developer.mozilla.org
-
developer.mozilla.org developer.mozilla.org
Tags
- cito:cites=urn:ietf:rfc:7230
- http:header=sec-websocket-version
- http:header=sec-websocket-protocol
- cito:cites=urn:ietf:rfc:6455
- http:header=connection:upgrade
- websocket
- http:header=sec-websocket-key
- http:header=sec-websocket-accept
- http:header=sec-websocket-extensions
- http
- http:header=upgrade:websocket
- cito:cites=urn:ietf:rfc:7540
Annotators
URL
-
- Jun 2022
-
www.google.com www.google.com
-
Apr 5, 2022 — MicroStrategy (MSTR), a bitcoin-accumulating business-intelligence software company, said it bought another 4,167 BTC for around $190.5 million.microstrategy bitcoinmicrostrategy bitcoin holdingsmicrostrategy bitcoin holdings chartmicrostrategy bitcoin purchase historymicrostrategy selling bitcoinbitcoin pricePeople also search for
-
- Apr 2022
-
threadreaderapp.com threadreaderapp.com
- Jan 2022
-
-
CDC. (2020, March 28). COVID Data Tracker. Centers for Disease Control and Prevention. https://covid.cdc.gov/covid-data-tracker
-
- Apr 2021
-
commercialpropertiesnoida.com commercialpropertiesnoida.com
-
food courts
Superb construction, exclusive design, and modern architecture are some of the unique features of the project Gulshan One129 project recently launched by Gulshan Homz. From office space to commercial food court space in Noida, the mall caters to all your requirements. Each retail shop is excellently designed for better visibility and space utilization. If you are looking for a commercial property in Noida sector 129, book your space now and get the possession on or before June 2021.
-
- Oct 2020
-
www.peta2.com www.peta2.com
-
GIF
lacks actual evidence. Only relies on shock value to appeal to ethos. Opinion based, no facts.
Tags
Annotators
URL
-
- May 2019
-
search-proquest-com.ezproxy.neu.edu search-proquest-com.ezproxy.neu.edu
-
The results of the study indicate that education of the future business leaders calls for a contextualized approach to business ethical dilemmas.
The main goal of this article is to understand how the perspective about business ethics between business student and non-business students differ, and the results show that we indeed do need contextualized approach to business ethical dilemmas
-