Skip to content

Instantly share code, notes, and snippets.

@pwuertz
pwuertz / kicad_picknplace_assistant.py
Last active November 27, 2023 07:04
KiCad PCB pick and place assistant
Moved to:
https://github.com/pwuertz/kicad_picknplace_assistant
@maplethorpej
maplethorpej / nomics-api.py
Created May 1, 2018 02:06
A Python wrapper around the Nomics API.
import requests
class Nomics:
base_url = 'https://api.nomics.com/v1'
api_key = None
def __init__(self, api_key):
self.api_key = api_key
@sethhillbrand
sethhillbrand / kicad_picknplace_assistant.py
Created August 27, 2018 21:48 — forked from pwuertz/kicad_picknplace_assistant.py
KiCad PCB pick and place assistant
#!/usr/bin/python2
import re
import os
import numpy as np
import pcbnew
import matplotlib.pyplot as plt
import matplotlib.patches;
from matplotlib.patches import Rectangle, Circle, Ellipse, FancyBboxPatch, Polygon
@miguelmota
miguelmota / install.sh
Last active April 11, 2023 16:13
Arch linux install Ly display manager
chmod +x ~/.xinitrc
sudo pacman -S ly
sudo systemctl enable ly.service
sudo systemctl start ly.service
# config
sudo vim /etc/ly/config.ini
sudo systemctl restart ly.service