Skip to content

Instantly share code, notes, and snippets.

View doronbehar's full-sized avatar

Doron Behar doronbehar

View GitHub Profile
@doronbehar
doronbehar / israel-gtfs-test.py
Last active November 3, 2025 09:59
Test Israel's GTFS feed SSL issues
import traceback
import sys
import requests
URL = "https://gtfs.mot.gov.il/gtfsfiles/israel-public-transportation.zip"
r = requests.get(URL, stream=True, verify=True, timeout=15)
print("requests: status", r.status_code)
r.close()
@doronbehar
doronbehar / linien-install-on-offline-rp.sh
Last active May 28, 2025 14:37
Bash Script to Install Linien on a Red-Pitaya with no Internet Connection
sab
@doronbehar
doronbehar / fft_x_axis_arrays_demonstration.py
Last active October 28, 2024 15:25
What was fftshift created for?
#!/usr/bin/env python
import numpy as np
import matplotlib.pyplot as plt
N = 10_000
t = np.linspace(-10, 10, N)
signal = np.exp(-t**2)
signal_f = np.abs(np.fft.fft(signal))