This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// a stand for THREE phones, hahaha | |
// 2022 buZz nurdspace.nl | |
// not aiming for flexibility , just a dumb thing | |
// perfect if you need/want to have a charged and active N900, Droid 4 -and- Pinephone on your desk somewhere | |
$fa=1; $fs=1; | |
difference() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// lampclamp | |
// micarm is 10.4x10mm | |
// lamp dia is ~5mm and threaded? | |
// pcb is 47x48mm , 4 mounting holes at 30mm apart squared | |
// touch is a 15mm diameter circle | |
$fa=1; $fs=1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Melan, 2020 | |
import paho.mqtt.client as mqtt | |
import os | |
import coloredlogs | |
import logging | |
import json | |
import re | |
import threading | |
import math |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module lcdpanel_22() { | |
// random ILI9340C 2.2" 240x320 SPI TFT from ebay 253199873513 | |
color("red") | |
cube([40.6,67.5,2]); | |
color("grey") | |
translate([0,6,2]) | |
cube([40.6,55.5,3]); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# docamera.sh , 2004 | |
# [email protected] http://buzz.spacedout.nl/ | |
# quite easy script to mount yr camera , download all pictures , upload them to yr gallery and archive them locally | |
# also implements a 'cache' for offline times ;) | |
# wrote this for galleryadd.pl ( http://jpmullan.com/galleryupdates/other/galleryadd.pl ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// hook for 'keyhole' metal shelving units | |
// single 'keyhole' grabbed, just for hanging baseball caps | |
// buZz 2021 | |
difference() { | |
linear_extrude(6) { | |
translate([-1,0,0]) square([3,10]); | |
translate([3,0,0]) square([3,10]); | |
translate([-1,-1,0]) square([7,3]); | |
translate([5.5,11,0]) rotate(-90-50) square([3,25]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[inputs.http]] | |
urls = [ "https://idlerpg.lolhosting.net/xml.php?player=buZz" ] | |
data_format = "xml" | |
[[inputs.http.xml]] | |
[inputs.http.xml.tags] | |
username = "/player/username" | |
[inputs.http.xml.fields_int] | |
level = "/player/level" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <math.h> | |
#define PI 3.1415926 | |
#define ZENITH -.83 | |
#include <NTPClient.h> | |
#include <ESP8266WiFi.h> | |
#include <WiFiUdp.h> | |
#include <TimeLib.h> | |
const char *ssid = "xxx"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import feedparser | |
import random | |
NewsFeed = feedparser.parse("https://speld.nl/feed/") | |
numberofentries = len(NewsFeed.entries) | |
pickedentry = random.randint(0,numberofentries-1) | |
entry = NewsFeed.entries[pickedentry]; | |
print entry.title |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use warnings; | |
use Net::BitTorrent::File; | |
$directory = "./yts.am_26.01.2019/yts.am_torrents_26.01.2019"; | |
#$directory = "./mac-torrents.com_23.01.2019/torrents"; | |
$directory = "./eztv.io_27.01.2019/eztv.io_torrents_27.01.2019"; | |
$directory = "./nostalgic.is_19.12.2019/nostalgic.is_public_torrents/"; |
NewerOlder