Documenting Kali Linux on Raspberry Pi 5 build
Pi 5 with 8G of RAM and a 64G Samsung microSD
Case is aluminum heat sink style with a smart PWM fan
Initial set up with USB-C power, portable display, TrackPoint keyboard
- change hostname
filetype on | |
filetype plugin on | |
filetype indent on | |
syntax on | |
set number | |
set cursorline | |
set tabstop=4 | |
set expandtab | |
set nowrap | |
set incsearch |
docker pull mongo
Spin up a new container named my_mongo
from image mongo
Mapping and exposing ports 27017-27019 from the container to the host OS:
docker run -d -p 27017-27019:27017-27019 --name my_mongo mongo
Had to turn off secure boot and switch from UEFI to legacy to install. Use ASSIST above keyboard for boot options and getting into CMOS.
ctrl-shift-c
and ctrl-shift-v
for copy and paste in the terminal
A modification of Susie Lu's radial weather plot. This one shows periods of cloudiness, precipitation and freezing temperatures via the bars around the border. It also includes a circular brush that lets you select a band on the radial chart. The selected band is then displayed in a more traditional linear way on the bottom left.
The original readme explains what's going on with the radial chart:
In the example we're looking at historical weather data for New York provided by intellicast.com and wunderground.com. Inspired by weather-radicals.com.
This example uses scales to roll your own radial projection by mapping out the x, y, and r positions. If you are creating a line or an area you can use d3's convenience functions d3.svg.line.radial and d3.svg.area.radial but this is a m
use lookup_experiment | |
db.items.insert({"name":"ink","price":5.55}) | |
db.items.insert({"name":"pen","price":29.95, | |
"description": {"color":"purple", "manufacturer":"Lamy", "model": "Safari" }}) | |
db.items.insert({"name":"paper","price":5.00}) | |
db.items.insert({"name":"pencil","price":10.00}) | |
db.orders.insert({_id:1, "customer":"inkguy","items":["ink","pen","paper"]}) | |
db.orders.insert({_id:2, "customer":"pencilgal","items":["pencil","paper"]}) |
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<style> | |
.label { | |
font-size: 10em; | |
font-family:"sans-serif"; |