From 518e430d6124ae69c75c787eb9ff02eb7cf5c1a4 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Fri, 10 May 2024 15:33:13 +0530 Subject: [PATCH] Start note taking --- .gitignore | 5 + android.md | 260 +++++++++++++++++++++++++++ anime.md | 22 +++ audio.md | 73 ++++++++ bookmarks.md | 40 +++++ c++.md | 38 ++++ fpga.md | 7 + gpg-key-migration.md | 62 +++++++ gstreamer/gstreamer.md | 256 ++++++++++++++++++++++++++ haskell/haskell.md | 347 ++++++++++++++++++++++++++++++++++++ images/sequent-calculus.jpg | Bin 0 -> 128856 bytes notes.md | 172 ++++++++++++++++++ pulseaudio.md | 83 +++++++++ purescript.md | 5 + rust/rust.md | 228 +++++++++++++++++++++++ toread.md | 31 ++++ 16 files changed, 1629 insertions(+) create mode 100644 .gitignore create mode 100644 android.md create mode 100644 anime.md create mode 100644 audio.md create mode 100644 bookmarks.md create mode 100644 c++.md create mode 100644 fpga.md create mode 100644 gpg-key-migration.md create mode 100644 gstreamer/gstreamer.md create mode 100644 haskell/haskell.md create mode 100644 images/sequent-calculus.jpg create mode 100644 notes.md create mode 100644 pulseaudio.md create mode 100644 purescript.md create mode 100644 rust/rust.md create mode 100644 toread.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..087e483 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +private.md +private-*.md +*.odt +*.docx +.obsidian diff --git a/android.md b/android.md new file mode 100644 index 0000000..52a8530 --- /dev/null +++ b/android.md @@ -0,0 +1,260 @@ +--- +title: Android +--- + +# Binder + +## Reference material + +- [Deep Dive into Android IPC/Binder Framework](https://www.youtube.com/watch?v=Jgampt1DOak) + +- [AnDevCon IV: Android Binder IPC Framework](https://www.youtube.com/watch?v=hiq3mGfLOtE) + +- [Digging into Android System Services](https://www.youtube.com/watch?v=M6extgmQQNw) + +- [Binder transactions in the bowels of the Linux kernel](https://www.synacktiv.com/en/publications/binder-transactions-in-the-bowels-of-the-linux-kernel.html) + +## Notes from deep dive + +- An IPC framework for developing object oriented OS services. + +- Built in reference counting mechanism. + +- Identifying senders to receivers via UID/PID. + +- Unique object mapping across process boundaries. + +- Ability to send file descriptors across process boundaries. + +- Android supports a simple form of IPC via `intents` and `content providers`. Uses binder behind the scenes. Asynchronous. + +- Messenger IPC + + - `Messenger` represents a reference to `Handler` that can be send to a remote process via an `Intent`. + - A reference to the `Messenger` can be sent via an `Intent` using the previously mentioned IPC mechanism. + - `Messages` send by the remote process are delivered to the local handler. + - `Messages` are like `Intents` in that they designate the operation and data. Still asynchronous. + +- `Parcel` is a container for a message (data and object references) that can be sent through an `IBinder`. A unit of transactional data - one for the outbound request and another for the inbound reply. + +- `Marshalling/Unmarshalling` + + - Marshalling is a procedure for converting higher level app data structures i.e request response parameters into parcels for the purposes of embedding them into Binder transactions. + + - Unmarshalling is a procedure for reconstructing higher level app data structures i.e request response parameters from parcels received through Binder transactions. + +- Proxy is an implementation of the AIDL interface that un/marshals data and maps method calls to transactions submitted via a wrapped IBinder reference to the Binder object. + +- Stub is a partial implementation of the AIDL interface that maps transactions to Binder service method calls while un/marshalling data. + +- `ContextManager` or `servicemanager`, a special binder object with a known handle (registered as handle 0) that's used as a registry/lookup service for other Binder objects. + +- Most low level operations and data structures i.e `Parcel` are abstracted by `libbinder` at the native level which is what the clients and services use. + +- Clients and services don't want to know anything about the `Binder` protocol and `libbinder`, so they makes use of `proxies` and `stubs`. + +- `Proxy's` job is to take the high level Java or C++ request, and convert it into one of `Parcels` and then submit an `ioctl` transaction to the binder driver. `Stub's` is to listen to the binder driver callback, and then upon receiving a callback unmarshal the `Parcel` into something the service can understand and call the appropriate callback in the service. Java based proxies and stubs can be automatically generated by `aidl` tool for services described with AIDL. Service needs to implement the binder interface. + +- `Manager` sits between the `Client` and `Proxy`. `ContextManager` sits between the binder driver and the service. + +- Anything you pass as an `IBinder` to the other side gets passed as a reference. + +## Binder object reference mapping across process boundaries + +- A binder object reference is one of the following + + - An actual virtual memory address to a binder object in the same process + + - An abstract 32-bit handle to a binder object in another process + +- On every transaction, the binder driver automatically maps local addresses to remote binder handles and remote binder handles to local addresses + +- This mapping is done on: + + - Targets of binder transactions + + - `IBinder` object references shared across process boundaries as a parameter or a return value (embedded in transaction data) + +- For this to work + + - The driver maintains mappings of local addresses and remote handles between processes as binary tree per process so that it can perform this translation + + - References embedded in transaction data is discovered based on effects that the client provies when it submits its transaction and then rewritten in place + +# Thumbnail extraction + +[Framework Hardening](https://source.android.com/devices/media/framework-hardening) + +- Abstract class `Thumbnailer` in `MediaProvider`. Note that `MediaProvider` includes `ThumbnailUtils`. A separate directory for thumbnails is used `.thumbnails`. Creates an audio thumbnail for music directory, video thumbnail for movies directory and image thumbnail for pictures directory. Bitmap format is used for the thumbnails. Note that these utilities functions have a note mentioning that these should be used only if direct access to it's available. If it's media hosted outside app, use `ContentResolver#loadThumbnail` which is in `ContentResolver.java`. This seems to be the way `MediaStore` uses it, though the function where it's used seems to be deprecated. + +- Ensures that thumbnails collection on the given storage volume can be used with the given database. If the database UUID doesn't match the UUID found on disk, then all thumbnails are considered stale and deleted. Seems to get called in `onIdleMaintainance`. + +- Primarily three functions are seen which are called in `MediaProvider` from `ThumbnailUtils`. + + 1. `createAudioThumbnail` + + 2. `createVideoThumbnail` + + 3. `createImageThumbnail` + +- These create an instance of `MediaMetadataRetriever` and then call methods on this instance. For example, `createVideoThumbnail` calls `extractMetadata`, which then calls in to the `nativeExtractMetadata`. The native implementation itself calls the implementation in `MediaPlayerService` through a Binder call. See the constructor in `mediametadataretriever.cpp`. + +- `MediaProvider` seems to primarily use the `invalidate` and `ensure` thumbnail functions. The `Thumbnailer` instances created for audio, video and image primarily call `ensureThumbnail` from the `Thumbnail` abstract class. This function has a `ParcelFileDescriptor`. + +- `FileDescriptor` objects, representing raw Linux file descriptor identifiers can be written and `ParcelFileDescriptor` objects returned to operate on the original file descriptor. + +- The flow in `MediaProvider` is `openFile -> openFileCommon -> ensureThumbnail -> mAudio/Video/ImageThumbnailer.ensureThumbnail`. + +- The actual extraction of the thumbnail happens in `getBitmapFromVideoFrame` in the native code. + +### Summary + +`MediaProvider` uses the `MediaMetadataRetriever` which eventually relies on native code via JNI to extract the thumbnail. This seems to be allowed only because the provider here is kind of owner so to speak and has direct access to the media library?. Elsewhere like `MediaStore` or other applications the appropriate interface would `ContentResolver`. + +## Examples + +- https://cgit.freedesktop.org/gstreamer/gst-plugins-base/tree/tests/examples/snapshot/snapshot.c + +- https://stackoverflow.com/questions/15789652/how-to-create-video-thumbnails-with-python-and-gstreamer + +# ModernMediaScanner + +- Implements the `MediaScanner` interface below. + + ``` java + public interface MediaScanner { + public static final int REASON_UNKNOWN = MEDIA_PROVIDER_SCAN_OCCURRED__REASON__UNKNOWN; + public static final int REASON_MOUNTED = MEDIA_PROVIDER_SCAN_OCCURRED__REASON__MOUNTED; + public static final int REASON_DEMAND = MEDIA_PROVIDER_SCAN_OCCURRED__REASON__DEMAND; + public static final int REASON_IDLE = MEDIA_PROVIDER_SCAN_OCCURRED__REASON__IDLE; + + public Context getContext(); + public void scanDirectory(File file int reason); + public Uri scanFile(File file, int reason); + public Uri scanFile(File file, int reason, @Nullable String ownerPackage); + public void onDetachVolume(String volumeName); + } + ``` + +- It starts by populating metadata based on file attributes and then overwrites with any valid metadata found using `MediaDataRetriever`, `ExifInterface`, `XmpInterface`. + +- `ModernMediaScanner` is called by `MediaProvider` and gets passed a `Context`. `getContext` just returns this `Context` when called. + + ``` java + /** + * Map from volume name to signals that can be used to cancel any active + * scan operations on those volumes. + */ + @GuardedBy("mSignals") + private final ArrayMap mSignals = new ArrayMap<>(); + + /** + * Holder that contains a reference count of the number of threads + * interested in a specific directory, along with a lock to ensure that + * parallel scans don't overlap and confuse each other. + */ + private static class DirectoryLock { + public int count; + public final Lock lock = new ReentrantLock(); + } + + /** + * Map from directory to locks designed to ensure that parallel scans don't + * overlap and confuse each other. + */ + @GuardedBy("mDirectoryLocks") + private final Map mDirectoryLocks = new ArrayMap<>(); + ``` + +- `scanDirectory` and the two `scanFile` functions call the private class `Scan`. See `ContentProvider`, `ContentResolver` and `ContentInterface`. + +- `ScanItemAudio` and `ScanItemVideo` use `MediaMetadataRetriever`. + +## Working of \`Scan\` which is a public class + +- Get the content provider client using the content resolver + +- The primary function is `run` + + - This calls `walkFileTree`. Acquire directory lock at the start of operation and release at the end. This uses the existing `walkFileTree` from `Files`. The rough way this works is, it's recursive. The file visitor function `visitFile` gets called for every file and depending upon the `FileVisitResult` the operation continues or stop. `visitFile` is what calls `scanItem` which in turn calls the media specific scan functions. Of the media specific scan functions, only the audio and video ones use `MediaMetadataRetriever`, the other uses XMP, ISO, EXIF or standard file utilities. Here something called as `ContentProviderOperation` exists. It represents a single operation to be performed as part of a batch of operations. See the `ContentProviderOperation` section below. + + - Then `reconcileAndClean`. This talks to the database and some operations on the database entries. It cleans up unknown entries and update the generation associated with a file column. + + - `resolvePlaylists`. Validates the playlist members? + +## Media modules documentation + +[Media Modules](https://source.android.com/devices/media/media-modules) + +## MediaStore + +- It's the contract between the `MediaProvider` and applications. Contains definitions for the supported URIs and columns. + +- A generation value is associated with a given volume. Generation numbers are useful for apps that are attempting to identify exactly which media items have been added or changed since a previous point in time. Generation numbers are monotonically increasing over time, and can be arithmetically compared. + +## MediaProvider + +- The MediaProvider module optimizes indexed metadata (audio, video, and images from SD cards and USB devices) and makes that data available to apps through the `MediaStore` API. + +- In this case, `MediaProvider` extends `ContentProvider`. + +- Some of the modules which reference `MediaProvider` are `MediaService`, `ExternalStorageServiceImpl`, `PermissionActivity`, `FuseDaemon` and `IdleService`. + +- For permissions, see `checkUriPermission`. + +### Notes on threading + +- Some of the functions seemed to be called in JNI context and have the note `Called from JNI in jni/MediaProviderWrapper.cpp`. These functions seem to have the current thread in their `JNIenv`. + + ``` java + void MediaProviderWrapper::ScanFile(const string& path) { + JNIEnv* env = MaybeAttachCurrentThread(); + scanFileInternal(env, media_provider_object_, mid_scan_file_, path); + } + ``` + +### Notes on security + +- [Media Provider](https://source.android.com/devices/media/media-provider) + +- [Scoped Storage](https://developer.android.com/training/data-storage#scoped-storage) + +- To maintain privacy, the `MediaProvider` module enforces the `scoped storage security module`. + +## ContentProvider + +- Content providers are on of the primary building blocks of Android applications, providing content to applications. They encapsulate data and provide it to applications through the single `ContentResolver` interface. A content provider is only required if you need to share data between multiple applications. For example, the contacts data is used by multiple applications and must be stored in a content provider. If you don't need to share data amongst multiple applications you can use a database directly via `android.database.sqlite.SQLiteDatabase`. + +- `MediaProvider` extends `ContentProvider`. + +- See more on Content Providers in the below link. + + - [Content Provider Basics](https://developer.android.com/guide/topics/providers/content-provider-basics) + + - [Content Providers](https://developer.android.com/guide/topics/providers/content-providers) + +- When a request is made via a `ContentResolver` the system inspects the authority of the given URI and passes the request to the content provider registered with the authority. The content provider can interpret the rest of the URI however it wants. + +- Requests to `ContentResolver` are automatically forwarded to the appropriate `ContentProvider` instance, so subclasses don't have to worry about the details of cross-process calls. + +- See permissions based on `Intent`. + +### Data access via intents + +Intents can provide indirect access to a content provider. You allow the user to access data in a provider even if your app doesn't have access permissions, either by getting a result intent back from an app that has permissions, or by activating an app that has permissions and letting the user do work in it. + +You can access data in a content provider, even if you don't have the proper access permissions, by sending an intent to an app that does have the permissions and receiving back a result intent containing "URI" permissions. These are permissions for a specific content URI that last until the activity that receives them is finished. The app that has permanent permissions grants temporary permissions by setting a flag in the result intent: + +- Read permission: `FLAG_GRANT_READ_URI_PERMISSION` + +- Write permission: `FLAG_GRANT_WRITE_URI_PERMISSION` + +## ContentProviderOperation + +Used for batch access, see the preceding `content-provider-basics` article link. + +[Better Performance with ContentProviderOperation](https://www.grokkingandroid.com/better-performance-with-contentprovideroperation/) + +## MediaMetadataRetriever + +- For retrieving meta data when it comes to audio and video files, an instance of this is used by `ModernMediaScanner`. It seems to call into the native media extractor via JNI. diff --git a/anime.md b/anime.md new file mode 100644 index 0000000..31524ab --- /dev/null +++ b/anime.md @@ -0,0 +1,22 @@ +## Watching + +- [ ] Saiki +- [ ] Magus Bride +- [ ] Call of the night +- [ ] Heavenly Delusion +- [ ] Dangers in my heart + +## To watch + +- [ ] Toradora +- [ ] Romantic Killer +- [ ] Skip and Loafer +- [ ] Hyouka +- [ ] Mushishi +- [ ] Insomniacs After School +- [ ] Ikoku Nikki +- [ ] Moribito Guardian of Spirit +- [ ] Yona of Dawn +- [ ] Legend of Arslan + + diff --git a/audio.md b/audio.md new file mode 100644 index 0000000..aef6b54 --- /dev/null +++ b/audio.md @@ -0,0 +1,73 @@ +--- +title: Audio +--- + +# Bluetooth + +## Bluez + +- Using \`gdbus\` to introspect or retrieve properties + +``` bash +gdbus introspect --system --dest org.bluez --object-path /org/bluez/hci0/dev_6C_C4_D5_6C_CF_19 +gdbus call --system --dest org.bluez --object-path /org/bluez/hci0/dev_6C_C4_D5_6C_CF_19 --method org.freedesktop.DBus.Properties.GetAll org.freedesktop.DBus.Properties +``` + +## Information on codecs + +- https://www.soundguys.com/understanding-bluetooth-codecs-15352/ + +- https://habr.com/en/post/456182/ + +- https://www.nytimes.com/wirecutter/blog/what-you-need-to-know-about-bluetooth-audio/ + +- https://www.bluetooth.com/learn-about-bluetooth/recent-enhancements/le-audio/le-audio-specifications/ + +- https://www.bluetooth.com/blog/best-recorded-bluetooth-presentations-from-2020/ + +## Transport payload sizes observed for SBC + +- SBC-XQ @ 552 Kbps: 622 bytes +- SBC-XQ @ 512 Kbps: 574 bytes +- SBC-XQ @ 453 Kbps: 678 bytes + +# Random + +## Clean up audio with Audacity + +Consider an mkv file recorded with OBS, do the following + +- Extract the audio from video file + + ``` bash + ffmpeg -i infile.mp4 -acodec copy outfile.aac + ``` + + The option -acodec copy implies to not re-sample the audio. + +- Use Audacity's noise reduction filters. Export as m4a. + +- Merge audio and video again + + ``` bash + ffmpeg -i infile.mp4 -i denoised-audio.m4a -vcodec copy -acodec copy -map 0:0 -map 1:0 denoised-video.mp4 + ``` + +- Increase the volume using ffmpeg + + ``` bash + ffmpeg -i infile.mkv -vcodec copy -filter:a "volume=5.000000" infile-outputlouder.mkv + ``` + + Note that this command seems to change the format in mkv file from aac to ogg. + + To keep the codec same namely AAC, use the following + + ``` bash + ffmpeg -i infile.mp4 -vcodec copy -filter:a "volume=3.000000" -c:a aac -b:a 320k infile-outputlouder.mkv + ``` + + See the link + + + diff --git a/bookmarks.md b/bookmarks.md new file mode 100644 index 0000000..f98ba17 --- /dev/null +++ b/bookmarks.md @@ -0,0 +1,40 @@ +--- +title: Bookmarks +--- + +# Interesting projects + +- https://c9x.me/ +- https://www.gnu.org/software/mes/ + +# Mathematics + +- https://abakcus.medium.com/the-best-of-springer-undergraduate-books-for-beginners-c0c55f9fdb11 + +- https://ocw.mit.edu/courses/mathematics/18-06-linear-algebra-spring-2010/index.htm + +- https://www.youtube.com/playlist?list=PLZHQObOWTQDPD3MizzM2xVFitgF8hE_ab + +- https://twitter.com/thingskatedid/status/1335013038429065216 + +# Computer architecture + +## Course by Onur Mutlu at ETH Zurich + +- https://safari.ethz.ch/architecture/fall2020/doku.php + +- https://www.youtube.com/watch?v=c3mPdZA-Fmc&list=PL5Q2soXY2Zi9xidyIgBxUz7xRPS-wisBN + +# Maths + +- https://math.stackexchange.com/questions/1652937/a-good-book-for-beginning-group-theory + +# Miscellaneous + +- https://www.dabeaz.com/coroutines/ + +- https://www.chiark.greenend.org.uk/~sgtatham/coroutines.html + +- https://henrikwarne.com/2024/02/11/finding-a-new-software-developer-job/ + +- https://gist.github.com/cb372/5f6bf16ca0682541260ae52fc11ea3bb diff --git a/c++.md b/c++.md new file mode 100644 index 0000000..d89428a --- /dev/null +++ b/c++.md @@ -0,0 +1,38 @@ +--- +title: C++ +--- + +# C++ + +## Why `operator[]` returns a reference + +```c++ +class IntList +{ + private: + int m_list[10]{}; + + public: + int& operator[] (int index); +}; + +int& IntList::operator[] (int index) +{ + return m_list[index]; +} +``` + +Let’s take a closer look at how `list[2] = 3` evaluates. Because the subscript operator has a higher precedence than the assignment operator, `list[2]` evaluates first. `list[2]` calls `operator[]`, which is defined to return a reference to `list.m_list[2]`. Because `operator[]` is returning a reference, it returns the actual `list.m_list[2]` array element. The partially evaluated expression becomes +`list.m_list[2] = 3`, which is a straightforward integer assignment. + +Any value on the left hand side of an assignment statement must be an l-value (which is a variable that has an actual memory address). Because the result of `operator[]` can be used on the left hand side of an assignment (for example `list[2] = 3`), the return value of `operator[]` must be an l-value. As it turns out, references are always l-values, because you can only take a reference of variables that have memory addresses. So by returning a reference, the compiler is satisfied returning an l-value. + +Consider what would happen if `operator[]` returned an integer by value instead of by reference. `list[2]` would call `operator[]`, which would return the value of `list.m_list[2]`. For example, if `m_list[2]` had the value of 6, `operator[]` would return the value 6. `list[2] = 3` would partially evaluate to `6 = 3`, which makes no sense. If you try to do this, the C++ compiler complains: + + C:VCProjectsTest.cpp(386) : error C2106: '=' : left operand must be l-value + +Taken from [Overloading the Subscript Operator](https://www.learncpp.com/cpp-tutorial/overloading-the-subscript-operator/). + +### Necessity of a virtual destructor for an abstract class + +A virtual destructor is essential for an abstract class because an object of a derived class is usually manipulated through the interface provided by its abstract base class. In particular it may be deleted through a pointer to a base class. Then the virtual function call mechanism ensures that the proper destructor is called. That destructor then implicitly invokes the destructors of its bases and members. diff --git a/fpga.md b/fpga.md new file mode 100644 index 0000000..c59bac6 --- /dev/null +++ b/fpga.md @@ -0,0 +1,7 @@ +--- +title: FPGA +--- + +# Resources + +- https://projectf.io/sitemap/ diff --git a/gpg-key-migration.md b/gpg-key-migration.md new file mode 100644 index 0000000..b5a0756 --- /dev/null +++ b/gpg-key-migration.md @@ -0,0 +1,62 @@ +# Migrate gpg keys from one workstation to another + +Replace **[your key]** with your key ID + +To obtain your key ID +```bash +gpg --list-secret-keys --keyid-format LONG +``` + +Which returns something like +```bash +/home/angela/.gnupg/pubring.kbx +------------------------------- +sec rsa4096/[your key] 2018-03-30 [SC] + ABCDEFGHIJKLMNOPQRSTUVWXYZ +uid [ unknown] angela (KEY NAME) +ssb rsa4096/ABCDEFGHIJKL 2018-03-30 [E] + +``` + +After the key size `rsa4096/` is your key ID. + +*** + +Export the key in preparation to move it +```bash +gpg --export -a [your key] > gpg-pub.asc +``` + +Prepare the secret key for migration (if password protected, you'll be prompted to enter it) +```bash +gpg --export-secret-keys -a [your key] > gpg-sc.asc +``` + +Find them +```bash +ls -l gpg*.asc +``` + +Drag the key pair from the current directory to your USB stick or however else you move them. + + +Once on the new machine, import them +```bash +gpg --import gpg-pub.asc +``` + +If password protected, you'll be prompted to enter it +```bash +gpg --import gpg-sc.asc +``` + +If you need to adjust the trust level +```bash +gpg --edit-key [your key] +``` + +One thing to do was restart gpg-agent after importing the public key and adjusting the trust level. The secret key couldn't be imported till restarting the gpg agent. + +```bash +sudo gpgconf --kill gpg-agent +``` diff --git a/gstreamer/gstreamer.md b/gstreamer/gstreamer.md new file mode 100644 index 0000000..b255506 --- /dev/null +++ b/gstreamer/gstreamer.md @@ -0,0 +1,256 @@ +--- +title: GStreamer +--- + +# Internals + +## RTP timestamp + +- Domain for `rtptime` is `clock-time` from SDP +- 48000 in this case +- So one tick is 1/48000 of a second +- Meaning 20 milliseconds is 960 + +## Discussion on threading internals + + + +## Threads and probes + +[Probes](https://gstreamer.freedesktop.org/documentation/additional/design/probes.html?gi-language=c) + +[Threads](https://gstreamer.freedesktop.org/documentation/application-development/advanced/threads.html?gi-language=c) + +## Audio decoders + +There is `max-errors` property on audio decoder elements which can be helpful in debugging. + +## Autoplugging + +- [Autoplugging](https://gstreamer.freedesktop.org/documentation/application-development/advanced/autoplugging.html?gi-language=c) + +- [Playback Components](https://gstreamer.freedesktop.org/documentation/application-development/highlevel/playback-components.html?gi-language=c) + +- [Decodebin Design](https://gstreamer.freedesktop.org/documentation/additional/design/decodebin.html?gi-language=c) + +## Why are queues required + +- [Demuxing mp4 and queues](http://gstreamer-devel.966125.n4.nabble.com/demuxing-mp4-and-queues-td4689905.html) + +This is a classical problem, and a good illustration why you usually need queues after elements with N src pads, and before elements with N sink pads. + +The demuxer is pushing to its source pads from the same thread, and if you have connected these source pads with sync=true sinks, their chain function blocks until prerolling is done, that is until each sink with sync=true has received a buffer. Adding queues decouples branches of the pipeline, as they will start their own streaming thread. + +## Dynamically remove or unlink elements + +- http://gstreamer-devel.966125.n4.nabble.com/Dynamically-adding-and-removing-branches-of-a-tee-td973635.html + +- https://gstreamer.freedesktop.org/documentation/application-development/advanced/pipeline-manipulation.html?gi-language=c + +See probes here. + +## Webkit debugging + +- https://eocanha.org/blog/2021/05/25/gstreamer-webkit-debugging-by-using-external-tools-2-2/ + +## Quark + +Quarks represent a different idea Quarks are basically an internal "registry" of strings. The idea is that if you want to compare strings often, that can be inefficient, so you make a GQuark of it (essentially a hash) that you can stably compare. So if there is a string comparison you are performing often, or you want to make faster, you convert the string to a quark (hashing it to an integer), and then use that instead. + +## Flushing probe + +https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/274 + +# Elements + +## GstDiscoverer + +- Internally uses `uridecodebin`. This element decodes data from a URI into raw media. It selects a source element that can handle the given URI scheme and connects it to a `decodebin` element. It acts like a demuxer, so it offers as many source pads as streams are found in the media. + + ``` bash + gst-launch-1.0 uridecodebin uri=https://www.freedesktop.org/software/gstreamer-sdk/data/media/sintel_trailer-480p.webm ! videoconvert ! autovideosink + ``` + +- Primary function seems to be `discoverer_collect` which gets called pipeline is pre-rolled + +- The next important function is `parse_stream_topology`. It can also be called recursively + + - Checks for `next` in `GstStructure` passed as argument to this function + + - If `next` is `NULL`, then it's the end of the stream, else one has a `GstValue` holding either a structure or a list + + - For the case of a `GstStructure`, `collect_information` is then called. It reads various fields in the caps to collect information like `rate`, `channels` and `channel-mask`. Something called `TAGS` and `QUARK` also come into picture here. Quarks seem to be a 2 way association between a string and a unique identifier + + - For the case of list, along with some things, walk over the list, calling `parse_stream_topology` for each item in the list, where the item seems to a sub stream + +### Decodebin + +This element automatically constructs a decoding pipeline using available decoders and demuxers via auto-plugging until raw media is obtained. It is used internally by `uridecodebin` which is often more convenient to use, as it creates a suitable source element as well. It replaces the old `decodebin` element. It acts like a demuxer, so it offers as many source pads as streams are found in the media. + + ``` bash + gst-launch-1.0 souphttpsrc location=https://www.freedesktop.org/software/gstreamer-sdk/data/media/sintel_trailer-480p.webm ! decodebin ! autovideosink + ``` + +### Thumbnails + +Can `GstDiscoverer` be used for thumbnails? Googling a bit, and we land on this issue [discoverer should generated video/image thumbnails](https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/issues/58). This references [Thumbnailer Spec](https://specifications.freedesktop.org/thumbnail-spec/thumbnail-spec-latest.html) and [Thumbnail Management DBus Specification](https://wiki.gnome.org/action/show/DraftSpecs/ThumbnailerSpec?action=show&redirect=ThumbnailerSpec). `GstDiscoverer` does not seem to have a thumbnailing API. + +There is a totem video thumbnailer which is the video thumbnailer for the **GNOME** desktop but seems not to be available as a separate library. [ffmpegthumbnailer](https://github.com/dirkvdb/ffmpegthumbnailer) based on ffmpeg is a lightweight video thumbnailer that can be used by file managers to create thumbnails for video files. However, packaging `ffmpeg` might be a concern here and `ffmpegthumbnailer` has a *GPL-2.0* license. FFmpeg is licensed under the LGPL license, however, if a particular build of FFmpeg is linked against any GPL libraries (notably x264), then the entire binary is licensed under the GPL. + +If this needs to be provided with GStreamer then `gstbasesink` has a note on `last-sample` property where it mentions that the property can be used to generate thumbnails. Also see `gst_base_sink_get_last_sample`. A related option seems to be `convertframe` which has two APIs for converting a raw video buffer into the specified output caps. See [convertframe](https://gstreamer.freedesktop.org/documentation/video/convertframe.html?gi-language=c#). + +Some links which have examples. + +- https://github.com/GStreamer/gst-editing-services/blob/master/examples/c/thumbnails.c +- https://stackoverflow.com/questions/15789652/how-to-create-video-thumbnails-with-python-and-gstreamer +- https://gist.github.com/dplanella/5563018 + +### Tracker miner + +`GstDiscoverer` is used in Tracker Miner though not for everything. From [Into the Pyramid](https://samthursfield.wordpress.com/2019/12/01/into-the-pyramid/). + +- Tracker has a ‘generic image extraction’ rule that tries to find metadata for any image/\* MIME type that isn’t a .bmp, .jpg, .gif, or .png. This codepath uses the GstDiscoverer API, the same as for video and audio files, in the hope that a GStreamer plugin on the system can give us useful info about the image. + +- The GstDiscoverer instance is created with a timeout of 5 seconds. (This seems quite high — the gst-typefind utility that ships with GStreamer uses a timeout of 1 second). + +- GStreamer’s GstDiscoverer API feeds any file where the type is unknown into an MPEG decoder, which is effectively an unwanted fuzz test and can trigger periods of high CPU and memory usage. + +- 5 seconds of processing non-MPEG data with an MPEG decoder is somehow enough to cause Linux’s scheduler to lock up the entire system. + +## Rank + +[Modify the elements rank](https://developer.ridgerun.com/wiki/index.php?title=GStreamer_modify_the_elements_rank) + +Each GStreamer element has a detail called rank that defines the priority used by the autoplugger when it wants to connect a new element but has multiple options. + +# Pipeline examples + +## Opus RTP encoding decoding pipeline + +Note that in place of rtpjitterbuffer, rtpbin also works. + +``` bash +export AUDIO_CAPS="application/x-rtp,media=(string)audio,clock-rate=(int)48000,encoding-name=(string)OPUS" +gst-launch-1.0 -v audiotestsrc ! audioconvert ! audioresample ! opusenc ! rtpopuspay ! udpsink host=localhost port=50004 +gst-launch-1.0 udpsrc caps=$AUDIO_CAPS address=localhost port=50004 ! rtpjitterbuffer latency=20 do-lost=true ! rtpopusdepay ! opusdec plc=true ! pulsesink +``` + +## Tearing down a branch of *tee* + +``` python +tee = pipe.get_by_name(RTMP_TEE) +srcPad = tee.get_static_pad("src_" + str(idx)) +srcPad.add_probe( + Gst.PadProbeType.BLOCK, rtmp_tee_srcpad_block_probe, rtmpUrl +) + +def rtmp_tee_srcpad_block_probe( + pad: Gst.Pad, info: Gst.PadProbeInfo, rtmpUrl +) -> Gst.PadProbeReturn: + tee = pipe.get_by_name(RTMP_TEE) + queue = pipe.get_by_name(MUX_OUTPUT_QUEUE + "-" + rtmpUrl) + rtmpSink = pipe.get_by_name(RTMP_SINK + "-" + rtmpUrl) + sinkPad = queue.get_static_pad("sink") + pad.unlink(sinkPad) + rtmpSink.set_state(Gst.State.NULL) + queue.set_state(Gst.State.NULL) + tee.remove_pad(pad) + pipe.remove(queue) + pipe.remove(rtmpSink) + return Gst.PadProbeReturn.REMOVE +``` + +## Check camera capabilities + +``` bash +gst-device-monitor-1.0 Video/Source +v4l2-ctl --list-formats-ext -d0 +``` + +# Annotations + +[Annotation Glossary](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html//annotation-glossary.html) + +# AAC test samples + +- https://samples.mplayerhq.hu/A-codecs/AAC/ + +# Debugger + +If `SIGSEGV` occurs, to use `gdb` and `gst-launch` to debug the crashed process, first run + +``` bash +echo 0 > /proc/sys/kernel/yama/ptrace_scope +echo -1 > /proc/sys/kernel/perf_event_paranoid +``` + +- Arch enables the Yama LSM by default, which provides a `kernel.yama.ptrace_scope` kernel parameter. This parameter is set to 1 (restricted) by default which prevents tracers from performing a ptrace call on traces outside of a restricted scope unless the tracer is privileged or has the `CAP_SYS_PTRACE` capability. + + +# Terminology + +- **Transmuxing**, also referred to as repackaging or packetizing, is a process in which audio and video files are repackaged into different delivery formats without changing the files' contents. + +# Yocto + +[Enable RTMP plugin](https://www.toradex.cn/community/questions/13303/gstreamer-rtmp-plugin.html) + +# RTP + +[Some FAQs about RTP](https://www.cs.columbia.edu/~hgs/rtp/faq.html) + +# Basics of time and synchronization + +- https://www.youtube.com/watch?v=EOHl1ktWwp4 + +- https://www.youtube.com/watch?v=OKTfNAmFTo4 + +- `running_time` is the amount of time "spent" in playing + +- Playing => Paused: Remember running time + +- Paused => Playing: base_time = current absolutetime - running_time + +# Live pipeline + +## Live sources + +- https://gstreamer.freedesktop.org/documentation/additional/design/live-source.html?gi-language=c + +- https://gstreamer.freedesktop.org/documentation/additional/design/element-source.html?gi-language=c + +-https://gstreamer.freedesktop.org/documentation/base/gstbasesrc.html?gi-language=c + +## Pipeline to check base time gets updated after PAUSE -> PLAY transition + +``` bash +env GST_DEBUG=basesink:6 gst-play-1.0 /usr/share/sounds/alsa/Front_Left.wav --audiosink="fakesink sync=true" -q 2>&1 | grep base_time +``` + +# Running test suite with gdb + +``` bash +ninja -C build && env CK_FORK=no meson test --gdb -C build --suite gst-plugins-good elements_splitmuxsink +``` + +# Re-timestamping frames + +- https://kaustav.space/2018-09-20/retimestamping-frames-in-gstreamer + +# H264 + +- https://doc-kurento.readthedocs.io/en/latest/knowledge/h264.html + +# Video mp4 + +- https://bitmovin.com/container-formats-fun-1 +- https://docs.unified-streaming.com/documentation/live/subtitles.html#embedded-subtitles-captions +- https://stackoverflow.com/questions/24884827/possible-locations-for-sequence-picture-parameter-sets-for-h-264-stream +- https://stackoverflow.com/questions/10185474/gstreamer-how-to-get-audio-and-video-to-play-at-the-same-rate +- https://bitmovin.com/fun-with-container-formats-2/ +- https://www.ramugedia.com/mp4-container +- https://gpac.github.io/mp4box.js/test/filereader.html +- https://en.wikipedia.org/wiki/Video_compression_picture_types +- https://en.wikipedia.org/wiki/Group_of_pictures +- https://observablehq.com/@benjamintoofer/iso-base-media-file-format +- https://streaminglearningcenter.com/blogs/open-and-closed-gops-all-you-need-to-know.html diff --git a/haskell/haskell.md b/haskell/haskell.md new file mode 100644 index 0000000..b7e5df2 --- /dev/null +++ b/haskell/haskell.md @@ -0,0 +1,347 @@ +--- +title: Haskell +--- + +# Haskell + +## Semirings + +- https://doisinkidney.com/posts/2016-11-17-semirings-lhs.html + +- https://doisinkidney.com/posts/2017-10-13-convolutions-and-semirings.html + +- https://r6.ca/blog/20110808T035622Z.html + +## Monoids + +- http://blog.sigfpe.com/2009/01/haskell-monoids-and-their-uses.html + +- https://www.haskellforall.com/2014/07/equational-reasoning-at-scale.html + +- https://apfelmus.nfshost.com/articles/monoid-fingertree.html + +- https://gist.github.com/cscalfani/b0a263cf1d33d5d75ca746d81dac95c5 + +## Continuation passing style + +- https://stackoverflow.com/questions/45334985/when-to-use-cps-vs-codensity-vs-reflection-without-remorse-in-haskell + +- https://deque.blog/2017/01/13/beautiful-code-control-fold/ + +- https://free.cofree.io/2020/01/02/cps/ + +- https://neilmitchell.blogspot.com/2014/06/optimisation-with-continuations.html + +- https://jtobin.io/page2/ + +## How to read sequential calculus notation + +![Sequential Calculus Notation Helper](../images/sequent-calculus.jpg "SequentCaculusHelper") + +- http://logitext.mit.edu/tutorial + +- https://langdev.stackexchange.com/questions/2692/how-should-i-read-type-system-notation + +## Folds + +Alexis King's excellent explanation on folds + +- https://twitter.com/lexi_lambda/status/1198676516445589509 + +- https://github.com/hasura/graphql-engine/pull/2933#discussion_r328821960 + + +## Principles of Programming Languages + +- http://kmicinski.com//cis352-s20/ + +- https://www.youtube.com/user/krismicinski/videos + +# Category Theory + +## Resources + +- https://pages.cs.wisc.edu/~jcyphert/categoryTheoryNotes/ +- http://brendanfong.com/programmingcats.html +- https://www.johndcook.com/blog/2018/08/06/hom-functors/ +- https://www.cs.cornell.edu/courses/cs6117/2022fa/ + +## Chapter 1 + +- A category consists of objects and arrows that go between them. +- The essence of a category is composition or the essence of composition is a category. + +### Arrows as functions + +- Arrows are also called morphisms +- In a category, if there is an arrow going from **A** to **B** and an arrow going from **B** to **C** then there must also be a direct arrow from **A** to **C** that is their composition. Note that this is not a full category because it's missing identity morphisms. +- **In Mathematics and in Haskell, functions compose right to left**. + +### Properties of Composition + +- Composition is associative. +- For every object, there is identity morphism. + +### Notes from video lecture "1.2 What's a category?" + +Major tools in arsenal + +- Abstraction +- Composition +- Identity + +*Composition and Identity define category theory*. + +Category is just a bunch of objects. One analogy is thinking of category as a graph. + +Composable "end of one is beginning of other". And remember that end or beginnings are objects. Thinking in terms of types, the objects should be types?. If the *end* type does match *beginning* type, we cannot compose right? + +When we are defining a category, the category is defined by giving objects, what the objects are, defining arrows and then defining composition. Composition is like a big multiplication table for arrows. For every arrow, one has to define their composition. + +Different composition tables give different category. + +We also have laws: + +1. Left Identity +2. Right Identity +3. Associativity *h* ∘ (*g*∘*f*) = (*h*∘*g*) ∘ *f* + +Objects don't form a set in general. If they form a set, then this category is called *small*. Morphisms between any two objects form a set. There is a category theory in which they don't form a set and that +is a higher order categories. + +A group is an monoid that also has an inverse. A groupoid is a category in which every arrow has an inverse. + +Objects are types and arrows are functions. A function is a morphism between two types. + +Question: + +1. hom-sets map pairs to sets. And sets are objects in the category set. How does it follow we have a mapping between categories. + +## Chapter 2 + +### Types are about composability + +### What are types? + +- Types are sets of values. +- In the ideal world, Haskell types are sets and Haskell functions are mathematical functions between sets. +- Functions that return bottom are called partial, as opposed to total functions, which return valid results for every possible argument. +- Because of bottom, the category of Haskell types and functions are referred to as **Hask** rather than **Set**. + +### Why do we need a mathematical model? + +- Operational semantics describes the mechanics of program execution. +- In denotational semantics, every programming construct is given it's mathematical interpretation. + +### Examples of types + +- What's the type corresponding to an empty set? This type is called **Void** in Haskell. +- Functions that can be implemented with the same formula for any type are called parametrically polymorphic. + +### Notes from video lecture "2.1 Functions, Epimorphisms" + +- Category **Set** which contains sets and functions between sets. +- The set of all paris forms a Cartesian Product. A subset of the Cartesian Product is a **relation**. +- If a function does not collapse things, it is *injective*. +- If the function covers the whole co-domain, then it is *surjective*. +- Both *injective* and *surjective*, then it is an isomorphism. +- Think of Epimorphism as a way of considering surjection in Category theory. Since we do not care about elements, but, need to think in terms of morphisms, this is where Epimorphism comes in. Epimorphisms are categorical analogues of surjective functions. +- Surjective => Epic, Injective => Monic + +### Notes from video lecture "2.2 Monomorphisms, simple types" + +Equality of composition leads to Equality of functions. + +*Void* in logic corresponds to *False*. + +## Chapter 3 + +### Simple Graphs + +Creating a category, which has an object for every node in the graph, and all possible chains of composable graph edges as morphisms. One may even consider identity morphisms as special cases of chains of length zero. + +Such a category is called *free category* generated by a given graph. It's an example of free construction, a process of completing a given structure by extending it with a minimum number of items to satisfy it's laws (here, the laws of a category). + +### Orders + +Consider the category where a morphism is a relation between objects: the relation of being less than or equal. We have identity morphisms as every object is less than or equal to itself. If `a <= b` and `b <= c` then `a <= c`. Composition is also associative. A set with a relation like this is called *preorder*, so a preorder is indeed a category. + +For a stronger relation: + +- An additional condition that, if `a <= b` and `b <= a`, then *a* miust be the same as *b*. That's called a *partial order*. +- If any two objects are in relation with one each other, one way or another, that gives a *linear order* or *total order*. + +A preorder is a category where there is at most one morphism going from any object *a* to any object *b*. Another name for such a category is "thin". A preorder is a thin category. + +A set of morphisms from object *a* to object *b* in a category **C** is called a *hom-set* and is written as **C**(*a*,*b*) or sometimes **Hom***C*(*a*,*b*). *Hom* stands for homomorphism, the usual name for structure preserving functions in algebra. + +Sorting algorithms can only work on total orders. Partial orders can be sorted using topological sort. + +### Monoid as Set + +A monoid is defined as a set with binary operation. The operation should be associative and should have one special element that behaves likes a unit with respect to it. + +``` haskell +class Monoid m where + mempty :: m + mappend :: m -> m -> m +``` + +Interpretation of the type signature of *mappend* as *m* → (*m*→*m*) tells us that *mappend* maps an element of a monoid set to a function acting on that set. + +There is the adders example and then this follows. What does this mean? As in I haven't digested it! + +One might ask the question whether every categorical monoid - a one object category - defines a unique set-with-binary-operator monoid. It turns out we can always extract a set from a single-object category. This is set of morphisms - the adders in our example. In other words, we have the *hom-set*, **M**(*m*,*m*) of the single object *m* in the category **M**. + +The monoidal product of two set-elements is the element corresponding to the composition of the corresponding morphisms. Given two elements of **M**(*m*,*m*) corresponding to *f* and *g*, their product will correspond to the composition of *f* ∘ *g*. The composition always exists, because the source and the target for these morphisms are the same object. And it's associative by the rules of the category. The identity morphism is the neutral element of this product. So we can always recover a set monoid from a category monoid. For all intents and purposes they are one and the same. + +A category in which morphisms between any two objects form a set is called locally small. + +### Notes from video lecture "3.1 Examples of categories, orders, monoids" + +The set of arrows between any two objects is called a *hom-set*. + +## Chapter 4 + +A Kleisli category has objects, the types of underlying programming language. Morphisms from type **A** to type **B** are functions that go from **A** to a type derived from **B** using the particular embellishment. Each Kleisli category defines its own way of composing such morphisms, as well as the identity morphisms with respect to that composition. We will learn that imprecise term *embellishment* corresponds to the notion of an endofunctor in a category. + +### Notes from video lecture "3.2 Kleisli Category" + +Every set is a subset of itself. In terms of order, we call it reflexivity. How would we translate composition into this language of being a subset? If *A* is a subset of *B* and *B* is a subset of *C*, *A* is a subset of *C*. It's a partial order, there are no loops as *A* ⊆ *B* and *B* ⊆ *A* then *A* = *B*. + +Monad is nothing special. It is just a way of composing functions. + +## Chapter 5 - Products and Coproducts + +Common construction in category theory called the *universal construction* for defining objects in terms of their relationships. + +### Initial Object + +The *initial object* is the object that has one and only one morphism going to any object in the category. The uniqueness of the initial object is not guaranteed. Only *uniqueness up to isomorphism*. + +The initial object in a partially ordered set (often called a poset) is its least element. In the category of sets and functions, the initial object is the empty set. + +### Terminal Object + +The **terminal object** is the object with one and only one morphism coming to it from any object in the category. The terminal is unique upto isomorphism. + +In a poset, the terminal object if it exists, is the biggest object. In the category of sets, the terminal object is a singleton. Corresponds to the unit type () in Haskell. + +### Notes from video lecture "4.1 Terminal and initial objects" + +Singleton set has an arrow coming from every other set. There is a function from any type to unit (). + +∀*a*∃*f* :  : *a* → () + +For all objects (type) *a*, there exists an *f*, that goes from *a* to +the terminal object (). + +∀*f* :  : *a* → (), *g* :  : *a* → () ⟹ *f* ≡ *g* + +For every two functions, from *a* to the terminal object, if we have *f* and *g*, also from *a* to the terminal object, then *f* ≡ *g*. + +### Notes from video lecture "4.2 Products" + +Outgoing arrows from the terminal object? There are outgoing arrows from a terminal object. These arrows help us define the generalised elements in other objects. Every arrow from a terminal object to another object, is a definition of a generalised element in this other object. + +### Notes from video lecture "5.1 Coproducts, Sum Types" + +Discriminated Union/Tagged Union/Variant. + +### Duality + +The only difference between the above two was the direction of morphisms. For any category **C** we can define the *opposite category* **C**op just by reversing all the arrows. The opposite category automatically satisfies all the requirements of a category, as long as we simultaneously redefine composition. + +The set of arrows between any two objects is called a *hom-set*. + +If original morphisms *f* :: *a* → *b* and *g* :: *b* → *c* composed to *h* :  : *a* → *c* with *h* = *g* ∘ *f*, then the reversed morphisms + +*f*op :  : *b* → *a* and +*g*op :  : *c* → *b* will compose to +*h*op :  : *c* → *a* with +*h*op = *f*op ∘ *g*op + +Reversing the identity arrows is a no-op. + +### Isomorphisms + +Isomorphic objects look the same - they have the same shape. It means that every part of one object corresponds to some part of another object in a one-to-one mapping. + +Mathematically it means that there is a mapping from object *a* to object *b*, and there is a mapping from object *b* to object *a*, and they are the inverse of each other. + +In category theory, we replace mappings with morphisms. An isomorphism is an invertible morphism, or a pair of morphisms, one being the inverse of the other. + +Morphism *g* is the inverse of morphism *f* if their composition is the identity morphism. + +``` haskell +f . g = id +g . f = id +``` + +### Products + +A **product** of two objects *a* and *b* is the object *c* equipped with two projections such that for any other object *c* equipped with two projections there is a unique morphism *m* from *c\`* to *c* that factorizes these projections. + +A **coproduct** of two objects *a* and *b* is the object *c* equipped with two injections such that for any other object *c\`* equipped with two injections there is a unique morphism *m* from *c* to *c\`* that factorizes those injections. + +### Asymmetry + +Product behaves like multiplication, with the terminal object playing the role of one; whereas coproduct behaves more like the sum, with the initial object playing the role of zero. In particular for finite sets, the size of the product is the product of the sizes of the individual sets, and the size of the coproduct is the sum of the sizes. + +## Chapter 6 + +Set (the category of sets) is a *monoidal category*. It's a category that is also a monoid, in the sense that one can multiply objects (take their Cartesian Product). + +A product of two types *a* and *b* must contain both a value of type *a* and a value of type *b*, which means both types must be inhabited. A sum of two types on the other hand, contains either a value of type *a* or a value of type *b*, so it's enough if one of them is inhabited. Logical *and* and *or* also form a semiring, and it too can be mapped into type theory. + +## Chapter 7 + +Functor composition is associative (the mapping of objects is associative, and the mapping of morphisms is associative). There is also a trivial identity functor in every category: it maps every object to itself and every morphism to itself. So functors have all the same properties as morphisms in some category. It would have to be a category in which objects are categories and morphisms are functors. It's a category of categories. + +### Notes from video lecture "6.1 Functors" + +If the mapping of *hom-sets* is injective, then we call such functors *faithful*. A faithful functor is injective on all *hom-sets*. If it is *ful*, then it is surjective. + +## Chapter 8 + +A monoidal category defines a binary operator acting on objects, together with a unit object. **Set** is a monoidal category with respect to Cartesian product, with the singleton set as a unit. It's also a monoidal category with respect to disjoint union. One of the requirements for a monoidal category is that the binary operator should be a bifunctor. This is an important requirement, as the monoidal product should be compatible with the structure of the category, which is defined by morphisms. + +### Notes from video lecture "7.1 Functoriality, Bifunctors" + +Functors are mappings between categories. Endofunctors are mapping within a category. + +"Basically, when you have some expression E that contains F, and we say E is functorial in F, it means that F → E, is a functor." + +- https://math.stackexchange.com/questions/2009361/what-does-it-mean-to-be-functorial-in-something + +## Chapter 9 + +### Notes from video lecture "8.1 Function Objects, Exponentials" + +## Chapter 10 + +A parametrically polymorphic function between two functors (including the edge case `Const` functor) is always a natural transformation. Since all standard algebraic data types are functors, any polymorphic function between such types is a natural transformation. + +### Notes from video lecture "9.1 Natural Transformations" + +- Category is about structure. +- Functors are mappings between categories that preserve structure. They take a category and embed it in another category. It's like searching for a pattern inside a category or modelling a category inside another category. +- Categories and functors are necessary to define natural transformations. + +## Chapter 12 + +- https://www.math3ma.com/blog/limits-and-colimits-part-1 +- https://www.math3ma.com/blog/limits-and-colimits-part-2 +- https://www.math3ma.com/blog/limits-and-colimits-part-3 +- https://kavigupta.org/2016/05/10/A-Haskell-Class-For-Limits/ +- http://blog.sigfpe.com/2010/03/products-limits-and-parametric.html + +One interpretation of limits and co-limits with respect to Haskell is how they play with universal and existential quantification. We can write + +``` haskell +{-#Language ExistentialQuantification#-} +newtype Limit f = Limit (forall a. f a) +data Colimit f = forall a. Colimit ( f a) +``` + +So *Limit* universally quantifies over all types a functor *f* can map over, and *CoLimit* let's us talk about an *f* *a* but forget about the exact *a* (existential quantification). diff --git a/images/sequent-calculus.jpg b/images/sequent-calculus.jpg new file mode 100644 index 0000000000000000000000000000000000000000..91220ec09af6ddbb837e2002607404da075b5028 GIT binary patch literal 128856 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 DcXR&xTkdF#e{ zV?L(6pO?aXTkO8fpcG$tx$JHh_{|SL=<6j*6n}mhiz#3`3voO6&glA25eMHF&e*XY z{sX;P9)*Gt-}zbj(+OR(jvtE!&F{M($IWv9VAhmKs*N-szFf?!X5nz?YVvTQbp?w& zA_*80>lE4LW^@-A*^wOqK{L9bPY+QT9Uv$y&xhHE953D9Xq9p*I2j+CDXBgr>lu`J z$@+-@zVzUU8-h7amJJhU`>$LXzUXNaT%kikT(R z53iHsCNU=CwCgu7KN>mZw=lbIOXU+&1KTGM!;1sXbHN zC$X?FA5D;3%5p!H&t>7W9+ynP@9WINRRKD0MxP19uud3m$xA6V0U|A!EaUK*!O1q> zWphkT*OD4dnGyln?v(#BRkw{l316sS(h>+PY^p$?Fb=6U{^~?7RbDT+fRiTHO5y04KkG0amPt zZ!@_R1m61OQtEW<$lm;_X5pMDcSR7OlP{E5Hqq1{&w9g^i87Em!u&kP7~6@@8=DQ_ zxJ8L7b8Cs)O}IJL>iR*lGl20ay!5eH)ahWVJEm-3F|k?H2ICCj@f~G>{ScAT+fptr zFc!TH=6`FxsyrRRC*lss`&06WfvZG|6H5C$&PKI5Qij-m(u0$ z7yYwuZy$2+YR^4%=2>Tt{n`F;+-=xJc}T~}3~d9}`G!6wB*}3bcK@M=63tuE19iC! z_QQwH!JZcob-1f7a%T3Q->Mb061(9`p~l zSiJ`c;Uv8rJLiDC3CwMx`zCf z6ZU~1@p2PQUT>bn!~P^?U@5sW7QJmdFEV9(dxPG+$kvMd(f;m5x|2rO*URRUqDF;h zLOGtz-+lf8LjV7d@BhEhsQ>@_&#e8w&|1SmqYP>5pfZ>2wK#43-y9*EWFWX4Rcd#0 zBiaUEv*DloZj%14kRS6lqj-|EKx^b+y(BuuJdD>eu}4s|D*+_8f$@g*b6 z1Lm8|GLv-s1=)wL$0@hVMs*A`Dgsq$S%^>f*V;snN~9V-Ycbg1tLq8qW z_SPY?Tr_nM`|}S>!R+b^>VPbZ?TZ>J?4di|nKyh3>~>eiECM9u-adSP@+S!3?Wk<+voS^1Lwj&jbATyM%_4Ro<4)_uRW3fW&Q4d zp_2a_diuZ6*;8-NApZmBv@?TGI-`_Nn$Muq|26pkfSUg=Xfew4i*xLs#>2DD&z+p{ zQn=TioIf-2#OJs5f%Dz}9hLe?^RuX>Q~$Lm(!Z>C&LHK3{~7Sno6acvljf=a59sg= z;{U%P*8hE~`@lKjtf&8lMxvH}{GSGC{{Sfm&Y6E2qz!=fd4DwT+S2maDlS)=kcD>j zkC}-}aY$5~?fJdEA&(MRONL~}oCb(HW=@lM`J`ck zVMJ2ePEphJucCWXHE>43JBqb)3$q}r%RFOh20bx=Qii-**B*OcGn{83&|~qM+Ep^y z4IP3=)6ZJ;>{@Jq+A3cooD9p^nkyT0g3du<>Q!vn3XtKnxIQ*MZTB+&j?J(lAJ7{R zmuJ}pWRX(J_%Wze36io0F#jxgA{qPNoc&1SREk!FIM248!cmLVkiqyBrXFs_h^ zdvZacCoAE4d9b&Fms60>`Hf1AwF+~(K@PJ|Ef{u%_#9JJeiy)5AGhrGMgMl20z$go z-_B||kjQQ9+8a2a6kf`IX&(2PS}+BFsLUrYtC9!z;!!>bvy00mI#`ZKzf??UPsZk> zZ1yP|G+FP2UICJ>xbNJk%&gl>uOKiSZ>rb&Spq^=zXgk2(w1Gqzez4luMYtxc=<}F zMgN-3mpEc#pDn|)sNp+?^#x^EmC9XYm1daY-Ty=@R$juKI~Ug^)v;3kt!iZ|AlSDG zMUo5@t*T~Ki8p!aF==3?%FH zE&BT6T7jEryy?`sgy7a-hovNZiznz$MpK!gLE;~6tdyw4yY+?_9ql}#3jzsRoOko{f!-e{{EXT^-s z1j;y*;c16bW}__pZqw3-F(<`AC4=DhPFq_M57CBd83mObfVJ+&PBmKIq$caS9Yt6D zkzg{}2w>|H(!E@xLNR(Wx5!69Xk-Ot|HVB7C*?I{0_~R)L}!!Y-~yRJccf+ZFW&i9 zGtMv@$*cyy!&-IO-r2r;F#i16(!JJOBxZsiCfj6-SW1BVj=!MXO2!qx$S5tIe+=@6 zgwntHU|y7spL6Df_9^@=OByUjfdD1U@}VWX@M!Gn<92N!OcFY~MW>SuLQ0SxATw4P zWdI&(3v`)FFwW2Lm3~jrW9hbf=P7ynS-sGwFuL4_`l0WYgWE8IZ^8}H>4l2LWZDPj zkY0+!Kml()ofp5z)yJ0fN~cpDTHeZFBoWP__mveIrdiTAaGr#>$(Fg6Nr}o&${KMbaU(&Q;Bt6fwEb|f%DP== z{*`{besGRl%~3vGl#r4u^^)8fu%k!b&DxDG#5~b{uMCv8x>8Q0Cx!rKpqNsR}_?%y~s0_cQ+qZA+2>DH=%ig0gqrJQ8Xj3T{;sB6^5B& zx-Y!js%AUI33@;FJ2Od^M+q*wUc9%`y00Xmc~qtZ#pKmc#v;bf;|C2}4Wx#&7-92- zYpy0|!oj#tL!WiXu7Gxa4&DiJUWma+8?+nDRYQxB^nrD@ zsb4ADPvK~3!*ABH9ygE2xNiUm(EH?8X>y;fHkECxE=VB{KUf-%4Mlr=+}8rnez=a+ zQ_%V*dq&&H;_gs_q6-mMzbW);5!q|9*jzub3K*qFgmx zF0=k`s30$#cmgfrP-XToNvpGJTT8sPmsqIp5On#&^W&_fq@0U*=94XQ zKK?XArfHtJ7dqzkMmR=v4k*oF18K34O8y6%cF(bbo#Fogt)(+*-~nYCC;LWUm$#1a z8s>=>G@r*olahuOLVLu{r@L%Pjd!(b?j7`=6B*bl!&bxr1j(d2de*aRa(CQPyQIVm zM5bsrynpVALJ|GcznL^rR`JXE5}t4LzRE6fL(t?Em}0mS$uPH5oMUF1X!YrtwDtnW zxxSC9D}OQ%jX%!m46Z-chJqA6wfv~ptiHmI=a~_%U--FqrEZTCr7AYQQ6x6E(cs3< z>0*0&VAe6Wb(e+dxaKUYuje?9LbVn*f=^7(pKan?o?^Hi_uuh)Bzag)HVj0@Sr-G* zPxDfa>+=TPI#O<&I>poUvF$v-7^BDB3!w*|ZYYk=W`IZaPdh3PW0J^HmsaagPhaKr z`e_P}>c6kVTx5;^gG)S!JEF>~veuEBl+`3$e$ZDQQPxxAx^{E6!M>Rj-p=_!vu(!N zR~O{LVsWm)7clgun5M+-oj1d0?R&a^$e%{`sPsg8cIpV7oGA&Ht%fs^`>AHH=1OgO1W*_Qt z&WCT1&IBF=W{6ZF_~(4Xl(n-Wa$aOy$g&+P=6QY$05H&xF3v1v^Mz(qs(t13)SKgU z7&ra!M69pv+Y!7jKCCA_LICa+Az*S0q09np1L4Dgw`C&lP%?5#KOze?3iTHBmr{}v z#6Y7Ru^(5NKpz0k;T7Gz@-2TFsjQlJavMo>Suq;4t!(kK?KSacMV}u|=;G9eSMEbN z5c(q0qUMORIFC|OYQTLD3P@|Dotp9s(#njAq}F9Au}J2xCAROpqf?XNFEr3Ymw{op z>qg(0%1Dkx$Du&Zgr%F|SXgfOlLL|g+8ew>;Ph~V*>G$N1{opPpkia8+U|98u_HqP5fFl-hp&jlD(xHm!OHjLDnH2K1exw=V!I zX5*5G;D<n<^HqGJBcx}|pSpa~*C+M&9`6%<7TpS5{ zq2jSlc1&!*{69b?znVh)?sWv@e7#2qgL^_tXJZo6pTKC*R0=g>(S&EkqkQ=KcE=LY zkMf1e@&e3!=jHU?Q}~CPgkk?W9m?x^9K3MjjlfbWNm9Na=UL~_zr7}+?AzFdv$vb^ zG_y^(Jnq5`2U*1$iU3tp;rByW+lXuLNV0PR3#`~mW05?|UlK#nov*jZl;~20VApRJihK z7NAr#t;S)jJbO0Tg@^I1WG~joF1;=q0rt$+-ya0habf951b-SP)EGI1o0!K`e{{hG z!zy&mmiO3$Ilho?7lGh%gb(i2E4+OVm@Rm*zNa=-_10CqgW=Y0CIZL zRwp0|5^-8oeRhG#b8oDx9?tj78KG*N(6nn|AQoYU9~8S_<4kdeNvfBJj95?bvOg0V zden*he6LlgMi=l>#DsL`nvw{_!~4UYdKDAtQBO^jd{M&ISD6A0rkm~?QW5hHw+xI3 zkJh~YTg`&Y%enbS=B!d#^gQArYZHaeA#`ic9UWc3 z9HP%}1~SMp4>II9D`~?a8&+6fN}`h(ViUdYB3xO)S1NAQDi{IC{zE2IZ7v+ARdE{M4TC9fCbL`4~lTxc191wgoEt;btM zq6`j_Bcv|#1F=yVNtjEJZtIFj^^{Hm z&bn8eJ@b->#0yXem|%luhYsyNavvop+U{?R8~l&fitxAlHWgOB5JrEw!PT}#49))4 zHHW4*&VZy07l+=cyXHU*Re^NMrL!&db`&C?&z=9weT24$@N4Jcfu@t;t4|Sa2IDg6iX{wBZ2o~7yjpOl5Hs_^hdh)-o zxO|yFIYElFZo(i!>`HfhsCrWg_MS&460*vQoo&GqY3ff2(S$5vb@P}W6v=YW)P&H~Djm?PuRsaIS+epy?n@0!VvvT5d}B0NJ# zbKcxO)`g9_OCtc=$D#QHWMQsFI%c2egH!b-DL7}8oyMJW?)~{ZQXS9Y9;_J|qN5WI zCULXL9V#Fh{Rk6#BFadCO#EQxY(3>JZP9kkC zj1yqH|H*VVJ#r7kT2?aSl@$a^+0~98`?JjROxXiuCK=9i;9i$jOEmSdBnejw{o=y7 zFo;&6nLozTUKTO5I2vJXm}&oUWPWOrgJE?Vb{Ch3j?Adp&|0!Py&%j|=KF|y5vM3p zRPULsV9tJ_drV1JyX@aIc@H@6JUlepDUd19MpZcgx4F!Tq-e+FSxiEbX2ET;?^sQzq$6`6j6&E zd>D|qhiwUF5=Q2kCU<9gXy%jv0;*gB(T%l%Vqphfn$DN2?Aru8gvw5k= zXP4xnVehhCbx(UdOef0wxDiDC%yp5!!zLXF^eDGzW|x3?OHpakVVdF)Qf3*J(h@94_b<6Yb_ju4r z?A5Mmey1Xz&Y^=upg+p^K4OEVt#F9q3if=nGsPeqR;?CO`9oV{w6~Z$!4Df`%=&{v zh23RcfWgpZaNC>7ZZb(%I;Yd^lHcpek$^HtlZYr}?v3GcoJ~rBBR16xzgQv?lIf6t zndjDs>20xq5w{O_?W~yr8F3>IBIgVj*s3o}izU{lByo5ec=as~^CC_}S{9nP+u&WE zu+fuhPtjf#wI)G}LI#FWfrU`nA#IM0mAn`oI1Ycx^;fLm@*$4G>uG1GW#@cB#=%`T zDV-wV#-lAV9$HB!|AZ!UzKxz?XxC3~8i8bCBbI8MTpPB+D!@1KkIFl0MVN{Z6#S6q za-@(&8ALnt?h=Qm+{L!!cGfLV(heH3nyDOX#a3ay`Bm@c?GeL# z#OTFumD8)D6$ZW>yD_fID+Zb@izr5ir`92U3zQApY*u$9n)QjP(!&gqvg8CCKj48a zDKUnn2cfO=HH&#dn8mY@xp0_4v|U1_y6u?{1UM4DRqN$i)S@LG6w@Fgty1|m)t%vO zScDlX5i*c@Xr9}8J?KJU&6dvj?M|Z)Om@cFqF>luoSWoNiE4GMa4z_jGDA%z|7sTO zM(st8{4tM+IDqWuo%VN7tNm?1%jdv4-P$_US|i#>_7urFRLJ;5lQ|}#Pz`Ve&wb-C z<>gA*$eU0lpLcrlvqDXv<}v_NAD8BP9CJAkQFFXT`~iS;@EF@T;$qpz(PKXIn_>h7 zF)FT1KX9>jE004yC%>xs+OGOLf2@zVQQ^kbGk^IE(-gqz_ zt74K){cQgJ7udHiwElfpV`YY>HyUSpr^P4O+c8gDcWjL#vZGAX3l|mez%F+_HL+U= z?I3aKUA+6;1P!pec$_MQfXIrbq1Dyc@>t>L>%*U>rkZA{mCWfZqHYO#4Z43R|j&xte(-cyOIf#9-gF+N?D zBQFb&2UxaW=`P03HTJEs6#Bhiv^eLY=clyGECQ4P(7!6Qyjv-_wO2kOyZGwAeDqVfE&0*dqgf=B+H(U=1fL{SXiAoS9^x)`Z)#K}<-BTd{!glW$C z!}zsbBzE(~pVkTS>=Yp$!+(HHDrsZd#ATsKtj2EWkHm&U6$3&W#_0?|n#G?fTUiHP zMZs$fcMp&Nfpjfv8ZN~ax6|F6^HNQbAtI8H1O1>saZi5xJj5t_%X0)c!9odLw)POO zz`;}NG&x!Dl@~jO0vpj?uAfQUgE}mjpO*D~eCI<%z3`3mUui_4l+pl(ZE7O+sx@Q! zPqV(hat59gvFRiju@hdbL@z(uo*k61N`>c{7w2$Z;Ih|SIj%~K58phM;QL^xD%j!n znkh#nG$wvT2oVdjY8jG#i}*Yye@oi{Wm>H!BnAeY7i}t*o>%P0?(4HLU_lX(#R8PM zHEK@zi!b`lD*C3;LIA~^$nc8e0dtk#;>V?0qdK;(9Ab3uX6A30MVm z#EVR3wLZeD>)EI8(RL^$IU`emq{n@FF~>I^eBCHl%G zZi&TxnDqmYwjn@Pq#(b8%Jgwg)T++{0I}j1nt{%_e7&@uo5X%2`)}@n7*Q9+-msfa zyHy{_fkKPVB{UUt%n{dlrew@VItgf8_T&fcTUL zyOWQidHoFMtDNB#K@;heXOqeCD1_QCYFK3!6Tgb*Rqn*VDHfd%)Q3Ssd05}vAeMG$ zV#d!7hJw@xnRppar^Zvv>x{4_iIZZT^oV{uo_UW7ST7mNLaImy2Q3}OvZ5a|t zNaSc!u;B(WNJq`YFG=XxX8mf{xnQeq-xk&@*fDVVzZ=IYHL#BkZc^(w5IRk-63!ww z?4o(q+oH|S7`U7ygu}TM{(>($ZX7bk@l$~SWcV`Qm~y*r>)F3^wZ;jQpNWORDwMVA z-V|jRfAxK-7X$QoGe*=$*?8RY`h4#iDSOKOOjz1Vp}I%<&wkBOwvtm8jn0&+C|}$B z=ll@ea-&R#4WXBfLrGfGZ0*u1UX6&gq-aVitQEqp;&1HrUxD679*L_T$C+~OiU)rn z%Dj3;0sCJ2&&^<0dPZ7NJ3(GJu~Gef`6IKnmj7DxZOYAEqh&u@6q4|U9ce{)AoFI5 zR)=^+JYe>3paJ4#z+I!9IAQFS2(48*D*$~L(Xj$!aBVbT>C_E@SGnL0SYwl4w@K@1 z+`T9EF%}u;D|=sHhJlBw6FlHqM$#35H`*mCn2X1mc#GK=ylUmBCcXRz2=IHlsX&I> zRF)G|cZz!)$jb?2oUdrQ2mzhNWsH&@PIv-HXgH)#+U!n8$T4hwV2Oz zoxN8LJJ-^u>xNmY?37bYAhp)h68$98FcFuR?>stKNAoOFm@~kHkx$j_s%x_f-F$XP zhnr@0VFFEmH)qrzu^%(8SLp+6tTzjfs~Z}0t6Jc*1**4#44!)rHn2cJK_0d9z7pt6C*KOZomxy)YDBqd7*ZI=zzXQy(HWl3RBi8Qov~ zNmu=`BPcw50I%ZSk>_+wzQ);dEJu}y`ELCmlH$%j>eo3&>4kp=;cwLWM8v?!(7`KhP__>E2wnDnuy> zFcfilGt0GrMWJiMV0))dPOC@VUNOQ9mlQZ;P*8^Bh{tyt=mA0nQ-fswy;irB&apKE+*sxsonDywgptqB>1gW+P8sFSAJWHGz1i zNACx9_07A#9x&e7sP@RUV}Lu@Gu}aRAE^0Q-W53-lw|m7+|M)G?PEO|eo=E$N}HDH zgJdNuR$uP{dWl;B8B;}FvTgnW8gjfUp6~l$9iFip)pqZj45N94%GPn#`L35;BL4wi z&XUM{g2mLQ^~1OJlZ8cs#?P*8D?&nMP0|$OH#T@wOuPR)CMSvc3>AYTt)1V;HGhu& z2k7Ry3D#WzI~g~Cb=G4`XNqo0-2*Zga35xT{|D&G*DianfY*tyXx+cwi4x6o2e14C z1f$%dQ}6+|SLYcP$YVjqW)~r3V;J&VN=G(qM+o<`2kI6h|%*cz`cj2vmIE$3e zR_Exw#HxF;XJUV$m&C7rz4r$w!nd^|j%h5|#d&Xl9N?d*@UX`RJMTayDA~{QS zk9PUPQMn#eWX`$f?^bR*azBl=ECnuyvcA5HyG*7}zN?57JvAJxH`IQ5^yl~Pf9y%6 zDU02Z7R~rhZtPE0^+A?L#%xk{`t{mHiZ}NaUV8z6>oF~5+l@;~!T$jFJ9nzS&w*r* z0r4II?OO%Io@UpqAKm~fdJ~x@z zcqPb8s{_1aCIIcH+Chv4v2PQ8Kc9{Lyz z=ggavnQ``9z)F!vZs+CAQ@A+gJb$p970)z7zG1wbc|qOeK!-J%*LCZSj=4*De7}mX z&77@(kPRYVM}7W$@VIE-J;N^sAdE7nGb$7Scx~6OoQeK;@K)XOfuq|Cy;kjLN0P$+ zJ>!~bzqGnc(kx+ShWCh}mhIQh>I{!YnLzeY&Yeyb$fko;`!GCWMkib67cJR`q{!Uk zE$j7Jf30B9`aI|NBj=2;)~hC>JN?DMeL|PHQ z2V~z_#tn63UzPPq7vL(OuXt5)#y832SfD`q@el!_K`%jlN}?xpt^YuySnt)`m}87R zsqT8?ZZ+DKz$0#v0dAOMr$-Urf*gvU{{F!Xx*J=*c+G4#P;Ye}r}AEauQ?vVetY(1 zqU?-yPLASkK#N&bp}xD@p|V%Gf0r2NldDV*j|rI8vhR2i|@nPM;KGu;3G4>BiJm- z!e!FU{j^LiV5a!WEc9Nva*S7iQ4mhN#INLW-09Qb=ccW;s|{st5pMp-f!Q#dm!`8V zXqolceEt~!C@W1d+GO8rz)o(zc_Qd_sKSTzQ&l1Cp=$=%J)6}|tsRl|8u^Vw*`?=+LKi&DVMXQ|@+~_DH#mTwW*lRwmRX(CCLuf= zv%Xi-fR;j-!S^Jba(k?~Wb*JZ>0jp20@`SzxA1#K3`%BHlrqMD#wvUT3Na`%cKJ}T zWhdj>z|B3#eA zBkFh+afcnjlJOoy&B+iSK`bgrz?(LyP)NL<6mwaY8j-n_fVSIdF&;)^Jz>@Yf@5v+_Xu8QOX) zhBl#VgzbeMnLof3G8&2RYpb%MX|AKZg{VpfU||c`yD+zQfKU3ONM_=H3P28^JiC{K zHuY6%JdEVZ!Bad7V&@b?6idEiUtE(X1tpJUtdze9BEWF19N}w~$X}uXHmM(y)1u#_ zSnV^bRYB95T|6C5n9A|1~5SgnJ;`*ny6! z?1GIDFYQ}iFJy$gt9HvD($fRQ6EY0hWuvY54~%~YQVJ|Hd&I9Oa;iO@kiDGNFqa#Y z4O3@FDRWYy|~|La`0t3eKOLBw{T5Kv$9Eu?4L-njN8^@^ClM{#~2Om zeEs$6loS!SH!;2)hodKf>y^!kZZ;)!-AZ{vem&Lb^#qbqFy*R!-n3fQSU4E8`3&(x;xI)4o|>Ik58ajL(GY5{JIXG_nF4CR}l+_{hb*VcBhzw3`%S73B@Dn4C2R zLAgM`n}n-?gB!(Y1Df3F`JWqRMkLY{Wi-6FqzC=U+%j`(9~gJ9V;&mKGMGyER=!o4 ztzs&w-}NnUr%_LrvA_7xQS~Pb$qZ^BdJx^x8E(0w%$F`?vyooLf=pYZxClx!lIHb`D1=kN2|K| z<8mV`)9jEYwt9X~6r0re+spJh=f|FUO^NWFtgP3ZP~B<GWh@W|F7} zzvr<-5t%c>fBDSm++@|N%lK-9*PLbVkr~vH-Al^*+*tP=Zi za2cUwLqIpg>>_N)Ta=Ge?L{;f9mWUcNP*()cxL@uR{fXkU_W&6eeJm30q62_dA=FD zGJ(WABQU#wYNx7Uf;;YYVwDD(5iqLogbOXx=jY|!Yn)1>jRw2TdE($y9?C}EA`pVr zo7gysv)nI^)mmixD699DvI$HIgFjNOPkvI&bf&N2(OBl;&Myp`&(WdF8-9r}KBuNP z7zl`1=wdN&uQ!QSysZX3D zI^0`OE)SrLI+Un3J3^0YC&!qa(v`9eH+t=J20F8B-a4h1=;BBnz%2-j594bN-V2E{ zXkvKiZ z+9rNHt`|nk^31|+d|_e)iM{7NMDMrnFdSS@^SNwmcb$0(^GadhGJ70*{ezoz$fjIb zJmwCCQlgPZ^3JZO<cJIREjS##Bh|TR4tEDM6q{FLCX~C9bdf=i?WJ1~Mn@L2j@Olwf0rf`u(9&`K9mrmzZ zlR-%ns!~gtE*r%V;f661PWW8y$j8(s%J6Z*NPa`5q@+}Qkx0!Mi~kK$2ywmdBc@P6LcE`#V&wA(Q=(@v(2AY(SdO8FR%JfA~zQL<*NidNPbxw{xyO#5yD#>B>D&R zP!X)O7uP4RlYD{CMiwg1VN%{@E3TX^R?SV+aUra4f6NKFJrr9GlQ85m&ohRLt#rzR znewcdhk$EsY;*j$5AFD_m+YrDp2K$X2yZR%6G0y0mN2x)Tu2?MjlZnp!_u~KVYzzW z5T{F)j#i6aKdYsfZIr<)-r=?N0zs zP~_}{;b^1`i7?JdQB%@G8<5JtSwM$FW=v>-;u3-^q?ts-gN=f%C7>7g7ea3Fv}&g|Qv{Xn zCre_c6`PswBiYiFFr{46=2q_jbcil{l7D7rBXkcYGs5L5c5-5N!N#259SFG4G7M}INDiTlt00E)p zNg=GZMlcTcT^zzttGGaUFM5akGc;EraxPyb1v}#CKM#$Y9VOtf{4R5BQpOx^4IjzPTP2Wl|Agt1|5326jGk;zw| LlMo;MdVl}f{v?8) literal 0 HcmV?d00001 diff --git a/notes.md b/notes.md new file mode 100644 index 0000000..816f4c7 --- /dev/null +++ b/notes.md @@ -0,0 +1,172 @@ +--- +title: Notes +--- + +# Git + +## Rebase + +The use of -Xtheirs and -Xours appear to be somewhat counterintuitive, so think of it as telling git which branch code to favor when resolving rebase conflicts. For example, when doing: + +``` bash +git rebase -Xtheirs branch-b +``` + +Xtheirs favors your current branch-a code when overwriting merge conflicts, and vice versa -Xours overwrites merge conflicts with the code in branch-b. + +Similar options exist in git merge command as well, but the meaning of -Xtheirs and -Xours is reversed due to the differences on how git rebase and git merge operate and what they consider ours vs. theirs: + +``` bash +git rebase -Xtheirs branch-b # <- ours: branch-b, theirs: branch-a +git merge -Xtheirs branch-b # <- ours: branch-a, theirs: branch-b +``` + +Thus, if you are merging changes from origin/master and would like git to favor your current branch code during merge conflicts, you’d need to do this: + +``` bash +git merge -Xours origin/master +``` + +- https://nitaym.github.io/ourstheirs/ + +- https://dev.to/cloudx/resolving-git-conflicts-in-package-lockjson-using-a-merge-driver-2ipk + +- https://ten0s.github.io/blog/2020/04/19/git-difftool-and-binary-files + +- https://gist.github.com/pascaliske/53648334378d592c0c2cc62b989a027e + +# Shell tips + +## Recursively remove execute permissions + +``` bash +chmod -R a-x+X,u-x+rwX,go-wx+rX Study/ +``` + +## SED debugger - sedsed + +- https://aurelio.net/projects/sedsed/ + +# System related + +## Htop explained + +- https://peteris.rocks/blog/htop/ + +## Using perf + +- `perf top -t ` shows the performance counters + +## rsync + +``` bash +rsync -a username@remote_host:/home/username/dir1 place_to_sync_on_local_machine +``` + +Like ~cp~ and similar tools, the source is always the first argument and the destination is always the second. + +## Nginx hosting setup + +- [Understanding DNS record types](https://www.name.com/support/articles/205516858-Understanding-DNS-record-types) + +- [linuxize: Secure Nginx with letsencrypt on Ubuntu 20.04](https://linuxize.com/post/secure-nginx-with-let-s-encrypt-on-ubuntu-20-04/) + +- [DigitalOcean: Secure Nginx with letsencrypt on Ubuntu 20.04](https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-20-04) + +- [Self hosting git](https://peppe.rs/posts/self-hosting_git/) + +The below is used to generate the certificates. To add more sub-domains, just call the command again, adding the sub domain. + +```bash +certbot certonly --agree-tos --email sanchayan@sanchayanmaity.net --webroot -w /var/lib/letsencrypt/ -d sanchayanmaity.net -d www.sanchayanmaity.net -d git.sanchayanmaity.net -d monitor.sanchayanmaity.net +certbot certonly --agree-tos --email sanchayan@sanchayanmaity.com --webroot -w /var/lib/letsencrypt/ -d sanchayanmaity.com -d www.sanchayanmaity.com -d git.sanchayanmaity.com -d monitor.sanchayanmaity.com +``` + +- [Serving static content](https://docs.nginx.com/nginx/admin-guide/web-server/serving-static-content/) + +## Setting up a kernel debugging environment + +- https://pwning.systems/posts/setting-up-a-kernel-debugging-environment/ + +## Javascript + +- https://javascript.info/ + +- http://superherojs.com/ + +# C + +[Caching integer overflows in C](https://www.fefe.de/intof.html) + +# Where to find good bread in Bangalore + +- http://www.thevinebangalore.com/where-to-get-good-bread-in-bangalore/ + +# Wayland + +[A better way to read Wayland documentation](https://wayland.app/protocols/) + +# Distributed systems + +PI calculus + +# Yocto + +Yocto/openembedded builds never work on Arch and even on something old like Ubuntu 16.04, one runs into problems like this + +- https://git.yoctoproject.org/cgit/cgit.cgi/poky/patch/meta/recipes-devtools/m4?id=95ca077ab871ceff46c2052f324f879a1d624ff4. + +docker is a blessing for such things. + +``` bash +docker run --rm -it -v {$PWD}:/oe-core crops/poky:debian-9 --workdir=/oe-core +``` + +# Pulseaudio + +- https://endless.ersoft.org/pulseaudio-loopback/ + +# Keyboard websites for split ergonomic keyboards + +- *ergomech.store* + +- *keebmaker.com* + +- *boardsource.xyz* + +- *littlekeyboards.com* + +- *splitkb.com* + +- *rectangles.store* + +- *bastardkb.com* + +- *keeb.io* + +- + +- *stackskb.com* + +# Fish + +- https://github.com/jorgebucaran/cookbook.fish#how-do-i-redirect-stdout-or-stderr-to-a-file-in-fish +- https://developerlife.com/2021/01/19/fish-scripting-manual/#how-to-write-functions + +# GPG + +- https://emailselfdefense.fsf.org/en/index.html +- https://oguya.ch/posts/2016-04-01-gpg-subkeys/ +- https://gitlab.com/muttmua/mutt/-/wikis/MuttGuide/UseGPG +- https://riseup.net/en/security/message-security/openpgp/best-practices +- https://m7i.org/tips/mutt-pgp-sign-attachment/ +- https://thoughtbot.com/blog/pgp-and-you +- https://code.dblock.org/2021/04/16/adding-work-email-to-a-gpg-key-and-signing-git-commits.html diff --git a/pulseaudio.md b/pulseaudio.md new file mode 100644 index 0000000..30b59d3 --- /dev/null +++ b/pulseaudio.md @@ -0,0 +1,83 @@ +--- +title: Projects +--- + +### AAC observations + +The following are the observations from the Wireshark capture traces regarding the issue observed while using AAC with SRS-XB33. + +1. Android and SRS-XB33 + + - Remote sends `GetAllCapabilities` command and gets `SBC`, `MPEG-2/4 AAC` and `LDAC` as supported in the response. + + - In case of `AAC`, the following flags are set on Android side + + - MPEG-2 AAC LC + - Sampling rate of 44.1 KHz + - VBR supported + - 2 channels + + - The `SetConfiguration` gets send with the following parameters set + + - MPEG-2 AAC LC + - Sampling rate of 44.1 KHz + - VBR supported + - 2 channels + +2. PulseAudio and SRS-XB33 + + 1. Initial Connection + + - The device sends a `Discover` request, followed by `GetAllCapabilities` and then `SetConfiguration`. + + - For the `GetAllCapabilities`, `MPEG-2,4 AAC` and `SBC` are returned by bluez. + + - The `GetAllCapabilities` command, seems to be send twice from the device and in both cases return the exact same capabilities. This happens for both `AAC` and `SBC`. + + - The `SetConfiguration` command send is send by SRS-XB33 and has the following parameters set + + - MPEG-4 AAC LC + - Sampling rate of 48 KHz + - 2 channels + - VBR not supported + + 2. Reconnection + + In the reconnection case, the `SetConfiguration` command has the following parameters set. + + - Sampling rate of 44.1 KHz + - MPEG-4 AAC LC + - 2 channels + - VBR not supported + +### Codec switching + +- Currently the following profiles exist + + 1. headsetaudiogateway + 2. headsetheadunit + 3. a2dpsource + 4. a2dpsink + +- For backchannel, two additional profiles are needed + + 1. a2dpsourcewithbackchannel + 2. a2dpsinkwithbackchannel + +- Each profile has it's own codec. However, one problem to solve is, one codec for one direction and a different codec for the other direction. For eg. aptX-LL uses aptX for playback and SBC for recording. How to solve this? Is introducing the backchannel profiles, be sufficient to take care of this? + +### Under the hood + +- https://gavv.github.io/articles/pulseaudio-under-the-hood + +### Bluetooth testing + +``` bash +./simple-endpoint 2C:DB:07:58:F2:F9 ldacsource +./test-device connect 4C:BC:98:80:01:9B "0000110b-0000-1000-8000-00805f9b34fb" +env GST_DEBUG=3 gst-launch-1.0 audiotestsrc ! ldacenc ! a2dpsink transport=/org/bluez/hci0/dev_4C_BC_98_80_01_9B/sep10/fd0 +``` + +## Module loop back + +- https://endless.ersoft.org/pulseaudio-loopback/ diff --git a/purescript.md b/purescript.md new file mode 100644 index 0000000..40d68f0 --- /dev/null +++ b/purescript.md @@ -0,0 +1,5 @@ +## Numeric Heirarchy + +- https://harry.garrood.me/numeric-hierarchy-overview/ + +- https://a-guide-to-the-purescript-numeric-hierarchy.readthedocs.io/en/latest/index.html diff --git a/rust/rust.md b/rust/rust.md new file mode 100644 index 0000000..a1646fa --- /dev/null +++ b/rust/rust.md @@ -0,0 +1,228 @@ +--- +title: Rust +--- + +# Programming Rust + +## Chapter 3 + +- Treats characters as distinct from the numeric types; a char is neither a u8 nor an i8 + +- Requires array indices to be usize + +- In debug builds, rust checks for integer overflow in arithmetic. In release build, the addition would wrap to a negative number. When we want wrapping arithmetic, use methods + + ``` rust + let x = big_val.wrapping_add(1); + ``` + +- Rust currently permits an extra trailing comma everywhere commas are used: function arguments, arrays, struct and enum definitions + +### Arrays, Vectors and Slices + +- Given a value v of any of `Arrays`, `Vectors` or `Slices`, `i` in `v[i]` must be a `usize` value, can't use any other integer type as index + +- Rust has no notion of an uninitialized array + +- The type `[T; N]` represents an array of N values, each of type T. An array's size is a constant determined at compile time, and is part of the type; you can't append new elements or shrink an array. + +- The type `Vec`, called a vector of `Ts`, is a dynamically allocated, growable sequence of values of type T. A vector's elements live on the heap, so you can resize vectors at will. + +- The types `&[T]` and `&mut[T]`, called a shared slice of `Ts` and mutable slice of `Ts`, are references to a series of elements that are part of some other value, like an array or vector. One can think of a slice as a pointer to it's first element, together with the count of the number of elements one can access starting at that point. A mutable slice `&mut [T]` lets one read and modify elements, but can't be shared; a shared slice `&[T]` lets one share access among several readers, but doesn't let one modify elements. + +- The useful methods one did likes to see on arrays - iterating over elements, searching, sorting, filling, filtering and so on - all appear as methods of slices, not arrays. But, Rust implicitly converts a reference to an array to a slice when searching for methods, so you can call any slice method on an array directly. + +1. Slices + + - A slice, written `[T]` without specifying the length, is a region of an array or vector. Since a slice can be any length, slices cannot be stored directly in variables or passed as function arguments. + + - A reference to a slice is a *fat pointer*: a two word value comprising a pointer to the slice's first element, and the number of elements in the slice. + + - Whereas an ordinary reference is a non-owning pointer to a single value, a reference to a slice is non-owning pointer to several values. This makes slices a good choice when you want to write a function that operates on any homogenous data series, whether stored in an array, vector, stack or heap. + + - For example, here's a function that prints a slice of numbers, one per line: + + ``` rust + fn print (n: &[f64]) { + for elt in n { + println!("{}", elt); + } + } + ``` + + - Because the above function takes a slice reference as an argument, you can apply it to either a vector or an array. + +### String + +- For creating new string at run time use `String`. +- The type `&mut str` does exist, but it is not useful, since almost any operation on UTF-8 can change its overall byte length, and a slice cannot reallocate its referent. + +## Chapter 4 - Ownership + +- As a rule of thumb, any type that needs to do something special when a value is dropped cannot be copy. +- By default, `struct` and `enum` types are not `Copy`. + +### Reference as Values + +- In C++, references are created implicitly by conversion, and dereferenced implicitly too. + + let x = 10; + int &r = x; + assert (r == 10); + r = 20; + +- In Rust, references are created explicity with the `&` operator, and deferenced explicity with the `*` operator. + + ``` rust + let x = 10; + let r = &x; + assert!(*r == 10); + ``` + +- Since references are widely used in Rust, the `.` operator implicitly deferences its left operand. + +- The `.` operator can also implicity borrow a reference to its left operand, if needed for a method call. + +- Where as C++ converts implicitly between references and lvalues (that is, expressions referring to locations in memory), with these conversions appearing anywhere they are needed, in Rust you use the `&` and `*` operators to create and follow references, with the exception of `.` operator, which borrows and dereferences implicitly. + +- In C++, assigning to a reference stores the value in its referent. There is no way to point a C++ reference to a location other than the one it was initialized with. + +### References to References + +- Rust permits references to references. + +``` rust +struct Point { x: i32, y: i32 } +let point = Point { x: 1000, y: 729 }; +let r: &Point = &point; +let rr: &&Point = &r; +let rrr: &&&Point = &rr; +``` + +- The `.` operator follows as many references as it takes to find its target. So an expression `rrr.y`, guided by the type of `rrr`, actually traverses three references to get to the `Point` before fetching its `y` field. + +### Sharing vs Mutation + +- Shared access is read only access. +- Mutable access is exclusive access. + +## Chapter 6 - Expressions + +### Functions and Method calls + +One quirk of Rust syntax is that in a function call or method call, the usual syntax for generic types, `Vec`, does not work. + +``` rust +return Vec::with_capacity(1000); // Error: Something about chained comparisons + +let ramp = (0 .. n).collect>(); // Same error +``` + +The problems is that in expressions, `<` is the less-than operator. The Rust compiler helpfully suggests writing `::` in this case, and that solves the problem: + +``` rust +return Vec::::with_capacity(1000); + +let ramp = (0 .. n).collect::>(); +``` + +The symbol `::<...>` is affectionately known in the Rust community as the *turbofish*. + +Alternatively, it is often possible to drop the type parameters and let Rust infer them. + +``` rust +return Vec::with_capacity(1000); + +let ramp : Vec = (0 .. n).collect(); +``` + +It's considered good style to omit the types whenever they can be inferred. + +### Fields and elements + +Rust ranges are half open: they include the start value, if any, but not the end value. + +### Reference operators + +The unary `*` operator is used to access the value pointed to by a reference. Rust automatically follows references when one uses the `.` operator to access a field or method, so the `*` operator is necessary only when we want to read or write the entire value that the reference points to. + +For example, sometimes an iterator produces references, but the program +needs the underlying values: + +``` rust +let padovan: Vec = compute_padovan_sequence(n); + +for elem in &padovan { + draw_triangle(turtle, *elem); +} +``` + +In this example, the type of `elem` is `&u64`, so `*elem` is a `u64`. + +## Chapter 7 - Error Handling + +### Result Type Aliases + +Sometimes you will see Rust documentation that seems to omit the error type of a `Result`: + +``` rust +fn remove_fule(path: &Path) -> Result<()> +``` + +This means a `Result` type alias is being used. + +A type alias is a kind of shorthand for type names. Modules often define a `Result` type alias to avoid having to repeat an error type that's used consistently by almost every function in the module. For example, the standard library's `std::io` module includes this line of code. + +``` rust +pub type Result = result::Result; +``` + +This defines a public type `std::io::Result`. It's an alias for `Result`, but hardcoding `std::io::Error` as the error type. In practical terms, this means that if you write `use std::io`, then Rust will understand `io::Result` as shorthand for `Result`. + +When something like `Result<>` appears in the online documentation, you can click on the identifier `Result` to see which type alias is being used and learn the error type. In practice, it's usually obvious from the context. + +### Chapter 8 - Crates and Modules + +### Chapter 9 - Structs + +The fact that any type can have methods is one reason Rust doesn't use the term `object` much, preferring to call everything a `value`. + +### Chapter 10 - Enums and Patterns + +### Chapter 11 - Traits and Generics + +### Chapter 13 - Utility Traits + +1. Drop + + - If a type implements `Drop`, it cannot implement the `Copy` trait. + +2. Deref and DerefMut + + - Rust doesn't try deref coercions to satisfy type variable bounds. + +### Chapter 14 - Closures + +- Rust can infer the argument type and return type from how the closure is used. + +- Closures do not have the same type as functions. + +- Every closure has its own type, because a closure may contain data: values either borrowed or stolen from enclosing scopes. This can be any number of variables, in any combination of types. So every closure has an ad hoc type created by the compiler, large enough to hold that data. No two closures have exactly the same type. But every closure implements a `Fn` trait. + +- Any closure that requires `mut` access to a vvalue, but doesn't drop any values, is a `FnMut` closure. + +- Closures summary + + - `Fn` is the family of closures and functions that one can call multiple times without restriction. This highest category also includes all functions. + + - `FnMut` is the family of closures that can be called multiple times if the closure itself is declared `mut`. + + - `FnOnce` is the family of closures that can be called once, if the caller owns the closure. + +# Articles on async-await + +- https://os.phil-opp.com/async-await/ +- https://msarmi9.github.io/posts/async-rust/ +- https://fasterthanli.me/articles/pin-and-suffering +- https://smb374.github.io/an-adventure-in-rust-s-async-runtime-model.html +- https://notes.eatonphil.com/lua-in-rust.html diff --git a/toread.md b/toread.md new file mode 100644 index 0000000..509f6f9 --- /dev/null +++ b/toread.md @@ -0,0 +1,31 @@ +# Books + +- [ ] Plato - Last day of Socrates +- [ ] Aristotle - Nichomachean Ethics +- [ ] Epictetus - Discourses, Fragments, Handbook +- [ ] Augustine of Hippo - Confessions +- [ ] Boethius - Consolation of Philosophy +- [ ] Anselm of Canterbury - Three Philosophical Dialogues +- [ ] Thomas Aquinas - Selected Writings +- [ ] Rene Descartes - Meditations on First Philosophy +- [ ] Mary Wollstonecraft - Vindication of the Rights of Women +- [ ] Friedrich Nietzsche - The Genealogy of Morals +- [ ] At the Existentialist Cafe - Sarah Bakewell +- [ ] Republic - Plato + +# News + +- [ ] https://www.theguardian.com/world/2021/jan/14/carbon-neutrality-is-a-fairy-tale-how-the-race-for-renewables-is-burning-europes-forests + +# Articles + +- [ ] https://dbp-consulting.com/tutorials/debugging/linuxProgramStartup.html +- [ ] https://googleprojectzero.blogspot.com/2021/10/how-simple-linux-kernel-memory.html +- [ ] https://blog.reverberate.org/2021/04/21/musttail-efficient-interpreters.html + +# Compilers + +- [ ] [Writing a C Compiler](https://norasandler.com/archive/) +- [ ] [Writing your own VM](https://justinmeiners.github.io/lc3-vm/) +- [ ] [Compiling to assembly from scatch](https://keleshev.com/compiling-to-assembly-from-scratch/) +- [ ] [Crafting Interpreters](https://craftinginterpreters.com/)