Skip to content

Instantly share code, notes, and snippets.

View FCR88's full-sized avatar

Cristian Florea FCR88

View GitHub Profile
@timothycarambat
timothycarambat / collect.py
Created September 15, 2021 01:59
Senate and House Stock watcher Python3 data listing
import requests, json, datetime
# This function will grab the data from house/senate stockwatcher and return an array
# of dictonary items that represent transactions
def fetch_data():
response = requests.get("https://senate-stock-watcher-data.s3-us-west-2.amazonaws.com/aggregate/all_transactions.json")
# response = requests.get("https://house-stock-watcher-data.s3-us-west-2.amazonaws.com/data/all_transactions.json")
if response.status_code != 200:
print("request failed.")
@slikts
slikts / Linuxifying Windows.md
Last active May 9, 2025 22:30
Linuxifying Windows

nelabs.dev

Linuxifying Windows for development

This guide is for 'linuxing-up' Windows as a development environment; it focuses on setting up [WSL], an Ubuntu Hyper-V virtual machine, [wsltty] (a nice terminal emulator) and various tweaks.

Rationale