Maintainer: Keil Miller Jr
How to create and manage an AUR package.
The following link should be read:
brew install tinyproxy | |
tinyproxy -c /usr/local/etc/tinyproxy/tinyproxy.conf -d | |
Tests: | |
NO AUTH | |
curl -iv --noproxy "*" --location http://www.google.com | |
AUTH FAIL |
FROM ubuntu:18.04 | |
WORKDIR /home | |
ENV HOME /home | |
RUN cd ~ | |
RUN apt-get update | |
RUN apt-get install -y git nano python3-pip python-dev pkg-config wget usbutils curl | |
RUN echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" \ | |
| tee /etc/apt/sources.list.d/coral-edgetpu.list |
#!/usr/bin/python | |
###################################################################### | |
# | |
# An example of how to use the gamepad as an input device for | |
# python. | |
# | |
# The example shows two dots that can be controlled by the | |
# left and the right joystick on a gamepad. | |
# | |
# This may be used as the basis for any analog output. E.g. to |
Maintainer: Keil Miller Jr
How to create and manage an AUR package.
The following link should be read:
#!/bin/bash | |
# A bash script for installing Python 3.10.2 on your Raspberry Pi. | |
# (c) 2022 Valentin B. / Midian T. E. | |
# | |
# Open your terminal and type the following command: | |
# sudo wget https://gist.githubusercontent.com/realSnosh/cfe29370d2205bd1ad296e7bc7c9b9ea/raw/raspberry_python.sh && chmod +x raspberry_python.sh && ./raspberry_python.sh | |
sudo apt-get update -y | |
sudo apt-get upgrade |
use std::str; | |
fn main() { | |
// -- FROM: vec of chars -- | |
let src1: Vec<char> = vec!['j','{','"','i','m','m','y','"','}']; | |
// to String | |
let string1: String = src1.iter().collect::<String>(); | |
// to str | |
let str1: &str = &src1.iter().collect::<String>(); | |
// to vec of byte |
<!--XSL style sheet to convert EESCHEMA XML Partlist Format to grouped CSV BOM Format | |
Copyright (C) 2014, Wolf Walter. | |
Copyright (C) 2013, Stefan Helmert. | |
Copyright (C) 2018, Kicad developers. | |
Copyright (C) 2019, arturo182. | |
GPL v2. | |
Functionality: | |
Generation of JLCPCB PCBA compatible BOM |
So I needed to upgrade my home "web hosting" server from a Raspberry Pi 3b to something more flexible where I could even simulate a Raspberry Pi 3b given power. The new server hardware is now an Intel NUC i7 16GB / 250Gb SSD NVME. ๐
I order to accomplish this task I had to find a way to bridge the wireless interface which is the faster one on my actual home network setup.
I've also tried to mix the functionnality from another Rapsberry Pi (3b+ this time) who's acting as WLAN to LAN bridge. More details on this setup. But this was finally a bad idea and I was not able to make it work along the virtual network bridge created by libvirt
or manually created... (I will explain why later)
The main difficulty was to use the DMZ
IP address given by the router and route the traffic to the guest VM's.
Build a Aircraft scanner from a Pi 3 and an RTL-SDR radio dongle and external audio PC speaker.
Full details are available at https://github.com/szpajder/RTLSDR-Airband/wiki