Executable and Linkable Format (ELF), is the default binary format on Linux-based systems.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import av | |
import numpy as np | |
import mlx.core as mx | |
def conway(a: mx.array): | |
source = """ | |
uint i = thread_position_in_grid.x; | |
uint j = thread_position_in_grid.y; | |
uint n = threads_per_grid.x; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import git | |
def summarize_diffs(path: str, suffix: str) -> str: | |
repo = git.Repo(path) | |
index = repo.index | |
result = "" | |
# Get the staged changes as a text diff | |
staged_diff = index.diff( | |
"HEAD", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/juzzlin/Heimer | |
https://github.com/dvorka/mindforger | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Literal type | |
type Drinks = 'Coke' | 'Milk' | 'Water' | 'Coffee'; | |
type UnUnite<T, K> = T extends K ? never : T; | |
type Result = UnUnite<string | number | boolean, string>; // Result: number | boolean | |
type HealthDrinks = UnUnite<Drinks, 'Coke'>; | |
// `infer` | |
// "destructuring type". "Pattern matching" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//github.com/jasmit-vaghasiya/Microservice-Architecture-and-System-Design-with-Python-Kubernetes | |
//github.com/uzochukwueddie/jobberapp | |
//github.com/srijan-paul/tsfun/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Literal type | |
type Drinks = 'Coke' | 'Milk' | 'Water' | 'Coffee'; | |
type UnUnite<T, K> = T extends K ? never : T; | |
type Result = UnUnite<string | number | boolean, string>; // Result: number | boolean | |
type HealthDrinks = UnUnite<Drinks, 'Coke'>; | |
// `infer` | |
// "destructuring type". "Pattern matching" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.scrollbar.vertical": "hidden", | |
"editor.scrollbar.horizontal": "hidden", | |
"editor.renderLineHighlight": "gutter", // Highlights the gutter | |
"workbench.colorCustomizations": { | |
"editor.lineHighlightBackground": "#fff", // Background color of the current line | |
"editor.lineHighlightBorder": "#eee", // Optional: Border color around the current line (can be removed if not needed) | |
"statusBar.background": "#e5e5e5" | |
}, | |
"editor.quickSuggestionsDelay": 0, |