10-0 Use Caution
10-1 Signal Weak
10-2 Signal Good
10-3 Stop Transmitting
10-4 Message Received
10-5 Relay
10-6 Station is busy
10-7 Out Of Service
10-8 In Service
It's hard to quarrel with that ancient justification of the free press: "America's right to know." It seems almost cruel to ask, ingenously, "America's right to know what, please? Science? Mathematics? Economics? Foreign languages?"
None of those things, of course. In fact, one might well suppose that the popular feeling is that Americans are a lot better off without any of that tripe.
There is a cult of ignorance in the United States, and there always has been. The strain of anti-intellectualism has been a constant thread winding its way through out political and cultural life, nurtured by the false notion that democracy means that "my ignorance is just as good as your knowledge."
Politicians have routinely striven to speak the language of Shakespeare and Milton as ungrammaticaly as possible in order to avoid offending their audiences by appearing to have gone to school. Thus, Adlai Stevenson, who incautiously allowed intelligence and learning and wit to peep out of his speeches, found the American people
/* eslint-env browser */ | |
import type {IRequestWorker} from "./worker.ts"; | |
const worker = new Worker(new URL("./worker.ts", import.meta.url)) as IRequestWorker; | |
// Receive from the worker | |
worker.onmessage = ({data: {myresponse}}) => { | |
console.log(myresponse); | |
}; |
texassemble cube -w 1024 -h 1024 -o cubemap.dds px.jpg nx.jpg py.jpg ny.jpg pz.jpg nz.jpg | |
texconv cubemap.dds -m 0 -y -f BC1_UNORM |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
- Relationship Lessons from Trees
- Beginnings at the End of Love: Rebecca West’s Extraordinary Love Letter to H.G. Wells in the Wake of Heartbreak
- Patti Smith’s Imaginative Remedy for Insomnia
- Bertrand Russell on How to Heal an Ailing and Divided World
- Nature’s Lessons in Gender Equality, Gender Diversity, and True Love: The Male Pregnancy of the Seahorse and the Fearless Trans Fish of the Coral Seas
- Edward Weston on the Most Fruitful Attitude Toward Life, Art, and Other People
- [Abraham Lincoln on Equality and the Slippery Slope of Exclusion](https:
- https://github.com/trekhleb/homemade-machine-learning There are two folders homemade and notebook, homemade contains all well commented low level code and doc explaining maths. Notebook is like a more of API use.
- https://github.com/Avik-Jain/100-Days-Of-ML-Code It contains more pictorial explanation with just API usage, worth seeing, might come in handy to revise quickly
- https://github.com/rushter/MLAlgorithms This contains fundamental implementation of bit more advanced algorithms.
- https://github.com/topics/machine-learning-algorithms I went there and scrolled, you can do that too
Install HF Code Autocomplete VSCode plugin.
We are not going to set an API token. We are going to specify an API endpoint.
We will try to deploy that API ourselves, to use our own GPU to provide the code assistance.
We will use bigcode/starcoder
, a 15.5B param model.
We will use NF4 4-bit quantization to fit this into 10787MiB VRAM.
It would require 23767MiB VRAM unquantized. (still fits on a 4090, which has 24564MiB)!
// HTML index.html | |
// <div id="myCanvasContainer"></div> | |
// JS sketch.js | |
// Inside setup() function | |
let canvasDiv = document.getElementById('myCanvasContainer'); | |
let width = canvasDiv.offsetWidth; | |
let height = canvasDiv.offsetHeight; | |
let sketchCanvas = createCanvas(width,height); |