45 Matching Annotations
  1. Aug 2023
  2. Jul 2023
  3. Jun 2023
  4. Mar 2023
  5. Jul 2022
  6. Mar 2022
    1. Programs that repeatedly reference the same variables enjoy good temporallocality..For programs with stride-k reference patterns, the smaller the stride, thebetter the spatial locality. Programs with stride-1 reference patterns have goodspatial locality. Programs that hop around memory with large strides havepoor spatial locality..Loops have good temporal and spatial locality with respect to instructionfetches. The smaller the loop body and the greater the number of loop it-erations, the better the locality.

      locality 总结起来的特点是什么?

  7. Jan 2022
  8. Oct 2021
    1. This function allows you to modify (or replace) a fetch request for an external resource that happens inside a load function that runs on the server (or during pre-rendering). For example, your load function might make a request to a public URL like https://api.yourapp.com when the user performs a client-side navigation to the respective page, but during SSR it might make sense to hit the API directly (bypassing whatever proxies and load balancers sit between it and the public internet).
  9. Jul 2021
  10. Jun 2021
  11. May 2021
  12. Mar 2021
    1. the Hypothes.is extension called “Fetch”:

      Browser extension for fetching and formatting Hypothes.is annotations into markdown bullet points, ready for copying into Roam, Notion or similar apps.

      Here are our annotations so far fetched by Fetch:

      • Muse Matters

        • Source: https://impedagogy.com/wp/blog/2021/03/19/muse-matters/

          • ^^Please respond in any way you wish to the blog post. I will take our responses and share them in another blog post as well as use the responses for remix, sharing, and other creative uses. Please tag your responses if it seems appropriate.^^
            • Muse
          • ^^Reminded of Chapter 11 in The Odyssey: I am likely going to retire this year and I find resonance in this as it appears that I will be accepting a "voluntary" buyout at the end of this fiscal year. My long sea journey, 25 years worth in teaching, will be officially over. Hence...the appeal to propitiate the gods, to let all the pain go, to ask forgiveness of the implacable Poseidon. ^^
            • then convert that
          • "then have them convert that"
            • describe how you might go about creating a poem, short story, or play from the blog post. 
          • ^^I am always a little surprised by how few students choose this option. I should ask them. ^^
  13. Nov 2020
  14. Sep 2020
  15. Apr 2020
  16. javascript.info javascript.info
  17. Dec 2019
    1. If your only reason for using Axios is backward compatibility, you don’t really need an HTTP library. Instead, you can use fetch() with a polyfill like this to implement similar functionality on web browsers that do not support fetch(). To begin using the fetch polyfill, install it via npm command: npm install whatwg-fetch --save
  18. Oct 2018
  19. Sep 2018
    1. // Download a json but don't reveal who is downloading it fetch("sneaky.json", {referrerPolicy: "no-referrer"}) .then(function(response) { /* consume the response */ }); // Download a json but pretend another page is downloading it fetch("sneaky.json", {referrer: "https://example.site/fake.html"}) .then(function(response) { /* consume the response */ }); // You can only set same-origin referrers. fetch("sneaky.json", {referrer: "https://cross.origin/page.html"}) .catch(function(exc) { // exc.name == "TypeError" // exc.message == "Referrer URL https://cross.origin/page.html cannot be cross-origin to the entry settings object (https://example.site)." }); // Download a potentially cross-origin json and don't reveal // the full referrer URL across origins fetch(jsonURL, {referrerPolicy: "origin-when-cross-origin"}) .then(function(response) { /* consume the response */ }); // Download a potentially cross-origin json and reveal a // fake referrer URL on your own origin only. fetch(jsonURL, {referrer: "https://example.site/fake.html", referrerPolicy: "origin-when-cross-origin"}) .then(function(response) { /* consume the response */ });
  20. Feb 2018