How to place a button to bottom right of screen in HTML
A Pen by Ameet Bharwani on CodePen.
### WARNING: READ CAREFULLY BEFORE ATTEMPTING ### | |
# | |
# Officially, this is not recommended. YMMV | |
# https://www.raspberrypi.com/news/bookworm-the-new-version-of-raspberry-pi-os/ | |
# | |
# This mostly works if you are on 64bit. You are on your own if you are on 32bit or mixed 64/32bit | |
# | |
# Credit to anfractuosity and fgimenezm for figuring out additional details for kernels | |
# |
# Run: pip install Flask | |
# before using server | |
from flask import Flask, request | |
import os | |
import subprocess | |
# Configuration | |
UPLOAD_FOLDER = "uploads" # To capture PUTs received from | |
S3_BUCKET = "abbucket" # Replace with your S3 bucket name |
terraform { | |
required_providers { | |
terracurl = { | |
source = "devops-rob/terracurl" | |
} | |
} | |
} | |
provider "terracurl" {} |
import com.launchdarkly.sdk.*; | |
import com.launchdarkly.sdk.server.*; | |
public class Hello { | |
// Set SDK_KEY to your LaunchDarkly SDK key. | |
static final String SDK_KEY = ""; | |
// Set FEATURE_FLAG_KEY to the feature flag key you want to evaluate. | |
static final String FEATURE_FLAG_KEY = "my-boolean-flag"; |
sudo apt-get update && sudo apt-get dist-upgrade | |
sudo sed -i -e 's/bullseye/bookworm/g' /etc/apt/sources.list | |
sudo sed -i -e 's/bullseye/bookworm/g' /etc/apt/sources.list.d/raspi.list | |
sudo apt update | |
sudo apt -y full-upgrade | |
sudo apt -y autoremove | |
sudo apt -y clean | |
sudo reboot | |
# | |
# remove old config files after doing sanity checks |
#!/bin/sh | |
# install stable nginx | |
# even though nginx will be replaced | |
# by compiling from source | |
# this installs latest versions | |
# of required libs | |
add-apt-repository -y ppa:nginx/stable \ | |
&& apt-get update \ | |
&& apt-get install -y nginx \ |
var favicon = undefined; | |
var nodeList = document.getElementsByTagName("link"); | |
for (var i = 0; i < nodeList.length; i++){ | |
if((nodeList[i].getAttribute("rel") == "icon")||(nodeList[i].getAttribute("rel") == "shortcut icon")){ | |
favicon = nodeList[i].setAttribute("href", "https://www.google.com/images/branding/googleg/1x/googleg_standard_color_128dp.png"); | |
} | |
} | |
console.log(favicon); |
#pbcopy < ~/.ssh/id_rsa.pub | |
#or | |
cat ~/.ssh/id_rsa.pub | pbcopy |