Skip to content

Instantly share code, notes, and snippets.

View back2yes's full-sized avatar
🎯
Focusing

back2yes

🎯
Focusing
View GitHub Profile
@back2yes
back2yes / glibc.md
Created April 26, 2022 08:39 — forked from wagenet/glibc.md
glibc Versions

glibc Versions

List of oldest supported version of top 10 Linux Distros and their glibc version according to distrowatch.com.

Summary

Out of all versions with published EOLs, 2.12 is the oldest glibc still active, found in CentOS 6.8.

If CentOS 6 and 7 are eliminated, the oldest glibc is 2.23 in Ubuntu and Slackware.

@back2yes
back2yes / sinc_interpolation.py
Created March 29, 2024 07:59 — forked from fschwar4/sinc_interpolation.py
Fast Python implementation of Whittaker–Shannon / sinc / bandlimited interpolation.
import numpy as np
from numpy.typing import NDArray
def sinc_interpolation(x: NDArray, s: NDArray, u: NDArray) -> NDArray:
"""Whittaker–Shannon or sinc or bandlimited interpolation.
Args:
x (NDArray): signal to be interpolated, can be 1D or 2D
s (NDArray): time points of x (*s* for *samples*)
u (NDArray): time points of y (*u* for *upsampled*)
@back2yes
back2yes / index.ipynb
Created December 28, 2024 15:35 — forked from georgeblck/index.ipynb
Comparison of openCV Interpolation methods by Anthony Tanbakuchi (Backup because his site is down)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@back2yes
back2yes / vs_code_behind_proxy
Created May 27, 2025 16:24 — forked from aws-scripting-guy/vs_code_behind_proxy
Visual Studio Code - working with git behind proxy
git config --global http.proxy http://myproxyserver:8080