Skip to content

Instantly share code, notes, and snippets.

View boop5's full-sized avatar
🏠
Working from home

LSC boop5

🏠
Working from home
View GitHub Profile
@boop5
boop5 / LemonSerial.cpp
Created July 22, 2023 19:07
Modified SoftwareSerial library to avoid blocking interrupt pins
/*
SoftwareSerial.cpp (formerly NewSoftSerial.cpp) -
Multi-instance software serial library for Arduino/Wiring
-- Interrupt-driven receive and other improvements by ladyada
(http://ladyada.net)
-- Tuning, circular buffer, derivation from class Print/Stream,
multi-instance support, porting to 8MHz processors,
various optimizations, PROGMEM delay tables, inverse logic and
direct port writing by Mikal Hart (http://www.arduiniana.org)
-- Pin change interrupt macros by Paul Stoffregen (http://www.pjrc.com)
@boop5
boop5 / parts.md
Created July 31, 2021 14:24 — forked from krobertson/parts.md
Voron 2.4 Printed Parts List

Voron 2.4 Printed Parts List

Parts for: Electronics_Compartment/DIN_Brackets

  [ ] [ ]     duet_duex_bracket_x2.stl
  [ ]         lrs_psu_bracket_clip.stl
  [ ] [ ] [ ] pcb_din_clip_x3.stl
  [ ] [ ]     ramps_bracket_x2.stl
$options = @{
location = "E:\Cloud\Documents\OpenVPN\config\"
country = "Germany"
};
# =================================================
Clear-Host
$url = 'https://nordvpn.com/api/server'
/// <summary>
/// These are short programming challenges, can be solved with a single LINQ expression. Of course, that might not
/// always make for the most readable code, so feel free to solve these with or without the help of LINQ, and of course
/// solutions in other languages are welcome. If you're using LINQ, then the MoreLINQ library often has extension
/// methods that simplify the task.
/// </summary>
/// <remarks>https://markheath.net/post/linq-challenge-3</remarks>
/// <remarks>https://github.com/morelinq/MoreLINQ</remarks>
public class LinqChallenge3
{
@boop5
boop5 / evernote_thumbnail.py
Created January 21, 2018 15:08 — forked from evernotegists/evernote_thumbnail.py
Getting a Thumbnails of a Evernote note using Python
'''This is a script that writes jpg thumbnails for each note in a specified notebook to the currect directory'''
from evernote.api.client import EvernoteClient
from evernote.edam.notestore.ttypes import RelatedQuery, NoteFilter, NotesMetadataResultSpec
import requests
import sys
#SET THESE VALUES!!!
auth_token = "INSERT DEVELOPER TOKEN HERE"
notebook_name = "INSERT DESIRED NOTEBOOK NAME"
@boop5
boop5 / debug.md
Created July 30, 2017 19:35
debug.md
@boop5
boop5 / debug.md
Created July 30, 2017 19:34
debug.md
#! /usr/bin/env python
# how to unfollow everyone who isn't following you
# By Jamieson Becker (Public Domain/no copyright, do what you will)
# Easy instructions, even if you don't know Python
#
# 1. Install pip (apt-get install python-pip) and then
# pip install tweepy, which is the python twitter client
#