Skip to content

Instantly share code, notes, and snippets.

View fasiha's full-sized avatar
πŸ’­
πŸ¦β€πŸ”₯

Ahmed Fasih fasiha

πŸ’­
πŸ¦β€πŸ”₯
View GitHub Profile
@fasiha
fasiha / demo.ts
Last active January 3, 2025 15:33
How to efficiently and compactly limit concurrency in JavaScript's Promise.all. A simplified and convincing demo for https://stackoverflow.com/a/51020535/ that you can run on TypeScript Playground
const sleep = (t: number) => new Promise((rs) => setTimeout(rs, t));
/**
* This function will return an array of the same length as the input,
* but not in the same order. It's straightforward to extend it to
* preserve order, but I left it like this because this way the timing
* is clearly visible. This helped me confirm that it works.
*/
async function processArray(input: number[], numWorkers: number) {
const ret: { date: number; description: string }[] = [];
@fasiha
fasiha / hi.txt
Created July 7, 2022 02:16
gist for storing attachments
This is just a gist to let me attach images in comments for a URL.
@fasiha
fasiha / on-mim.md
Created June 25, 2022 20:34
A list of all onomatopoeic or mimetic word in JMDict (as of 2020-09-30)
  1. γ€Œγ‚γ£γ•γ‚Šγƒ»γ‚’γƒƒγ‚΅γƒͺ」| β‘  easily/readily/quickly/flatly (refuse) (βœ‹ onomatopoeic or mimetic word) β‘‘ lightly (seasoned food, applied make-up, etc.)/plainly/simply (βœ‹ onomatopoeic or mimetic word)
  2. γ€Œγ‚γΉγ“γΉγ€| β‘  contrary/opposite/inverse/reverse/back-to-front (βœ‹ onomatopoeic or mimetic word)
  3. γ€Œγ‚γ‚„γ΅γ‚„γ€| β‘  uncertain/vague/ambiguous (βœ‹ onomatopoeic or mimetic word)
  4. γ€Œγ‚€γ‚Έγ‚€γ‚Έγƒ»γ„γ˜γ„γ˜γ€| β‘  hesitantly/timidly/diffidently (βœ‹ onomatopoeic or mimetic word)
  5. γ€Œγ„γγ„γγƒ»γ‚€γ‚½γ‚€γ‚½γ€| β‘  cheerfully/excitedly (βœ‹ onomatopoeic or mimetic word)
  6. γ€Œγ†γ˜γ†γ˜γƒ»γ‚¦γ‚Έγ‚¦γ‚Έγ€| β‘  irresolute/hesitant (βœ‹ onomatopoeic or mimetic word)
  7. γ€Œγ†γ˜γ‚ƒγ†γ˜γ‚ƒγƒ»γ‚¦γ‚Έγƒ£γ‚¦γ‚Έγƒ£γ€| β‘  in swarms/in clusters (βœ‹ onomatopoeic or mimetic word) β‘‘ tediously/slowly (βœ‹ onomatopoeic or mimetic word)
  8. γ€Œγ†γšγ†γšγƒ»γ‚¦γ‚Ίγ‚¦γ‚Ίγ€| β‘  itching to do something/impatient/sorely tempted/eager (βœ‹ onomatopoeic or mimetic word)
  9. γ€Œγ†γžγ†γžγ€| β‘  irrepressibly aroused (esp. sexually)/stimulated (βœ‹ onomatopoeic or mimetic word)
  10. γ€Œγ†γ γ†γ γƒ»γ‚¦γƒ€γ‚¦γƒ€γ€| β‘  going on and on (about inconsequential things)/talking nonsense (βœ‹ onomatopoeic or mimetic word) β‘‘
@fasiha
fasiha / hav.py
Created June 17, 2022 03:11
Haversine and pseudo-Haversine (up to a constant) formula
import numpy as np
from numpy import sqrt, sin, cos
asin = np.arcsin
def simp(rlat1, rlon1, rlat2, rlon2):
dLat = rlat2 - rlat2
dLon = rlon2 - rlon1
return ((sin(dLat / 2)**2 + sin(dLon / 2)**2 * cos(rlat1) * cos(rlat2)))
function filteredLengthAtLeast<T>(
v: T[],
filter: (x: T) => boolean,
min: number,
) {
let nfound = 0;
for (let i = 0; i < v.length, nfound < min; i++) {
nfound += +filter(v[i]);
}
return nfound >= min;

Recall:

  • 2.5% of the year corresponds to 9 days
  • 5% β†’ 18 days
  • 10% β†’ 37 days
  • 50% β†’ 6 months
  • 90% β†’ 47 weeks
  • 95% β†’ 50 weeks
  • 97.5% β†’ 51 weeks (a year has ~52 weeks)
@fasiha
fasiha / pygments-jupyterlab.css
Created March 3, 2022 04:56
Subset of pygments.css generated by Sphinx when using https://github.com/jupyterlab/jupyterlab_pygments
.highlight .hll {
background-color: var(--jp-cell-editor-active-background)
}
.highlight {
background: var(--jp-cell-editor-background);
color: var(--jp-mirror-editor-variable-color)
}

@DavidOBowles

I’ll let you in on a secret. I have a doctorate in education, but the field’s basically just a 100 years old. We don’t really know what we’re doing. Our scholarly understanding of how learning happens is like astronomy 2000 years ago.

Most classroom practice is astrology.


Before the late 19th century, no human society had ever attempted to formally educate the entire populace. It was either aristocracy, meritocracy, or a blend. And always male.

@fasiha
fasiha / lexi_lambda.md
Created October 29, 2021 18:49
@lexi_lambda's Twitter thread on teaching programming using mainstream languages (I literally copy-pasted because Twitter doesn't offer an easy viewing/export view)

https://mobile.twitter.com/lexi_lambda/status/1453866074106105864

Β§ Alexis King @lexi_lambda society if propositional and first-order logic were included in primary and secondary education mathematics curricula

Β§ Alexis King @lexi_lambda sometimes I wonder if this sort of βˆ€-vs-βˆƒ confusion would be less pervasive if students were exposed to literally any formal logic in middle/high school, because first-order logic is very accessible, and it seems a lot more generally useful than, say, matmuls devoid of context