Skip to content

Instantly share code, notes, and snippets.

View le-dawg's full-sized avatar
👁️
I may be slow to respond.

dawg le-dawg

👁️
I may be slow to respond.
View GitHub Profile
@le-dawg
le-dawg / FoundInRubbish.bin
Created November 29, 2021 23:04
Motley Fool 2021 Firecrackers Microcap Stock Picks
1stdibs.Com (XNAS:DIBS)
2 Arco Platform (XNAS:ARCE)
3 Bm Technologies (XNYS:BMTX)
4 Boston Omaha (XNAS:BOMN)
5 Cambium Networks (XNAS:CMBM)
6 Caribou (XNAS:CRBU)
7 Centessa Pharms (XNAS:CNTA)
8 CHICO’S FAS, INC. (XNYS:CHS)
9 Clearpoint Neuro (XNAS:CLPT)
10 Compass Pathways (XNAS:CMPS)
@le-dawg
le-dawg / NumMath_TUHH_2015_pt1.md
Created January 8, 2022 19:49
Numerical Mathematics Study Guide

Numerical Mathematics Study Guide

Part 1 of the TUHH Engineering Math Notes by by 0xdawg

Usage

The subdivisions or "Chapters" are clusters of knowledge around Numerical Mathematics, more or less strictly ordered by increasing specificity or involvedness. Use this to guide your learning journey around anything that involves calculations on computers with limited precision (the vast majority of cases). This is relevant for instance for complex computations involving a very large number of multiplication or division operations, especially when the sought values are in the [0..1] range.

Practical relevance for this lies in the training of neural networks and their deployment on less capable infrastructure, for instance. Other applications revolve around eigenvalue, singular value computations etc. as part of numerical simulations aka. interpolation, approximation, FEMs and other methods.

@le-dawg
le-dawg / gist:357a9e7249aabfbf166a3d2c1f130e53
Created February 18, 2022 13:59
ffmpeg to quickly cut video from start to specific time
# Not many mention this (I'm no expert so maybe there is a catch), but if your file has other streams like subtitles and other metadata like chapters and so on, it's possible to cut/trim and keep all streams with the following command
ffmpeg -to 60 -i input.mkv -map 0 -c copy output.mkv
// With -map 0 you take all the streams in the file, and with -c copy you copy all them as they are.
// Using -to omitting the start via -ss will cut the input video from start to **second 60.**
// Fiddling with map is useful also if you want only specific streams to be kept in the cut (maybe you don't need all the audio sources in the file, or only some subtitles).