what release should I use for my raspberry pi 4 model b?
$ uname -m
arm7l
or
#!/bin/sh | |
# https://unix.stackexchange.com/a/303713 | |
# send character-string to enable UTF-8 mode | |
if test ".$1" = ".off" ; then | |
printf '\033%%@' | |
else | |
printf '\033%%G' | |
fi |
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
fatal: Authentication failed for 'https://github.com/<user>/<repo>/'
package auth | |
import ( | |
"errors" | |
"html/template" | |
"log" | |
"net/http" | |
"time" | |
"github.com/go-chi/jwtauth/v5" |
<form method="post" onchange="post_to_popup(this);this.submit();"> | |
<select></select> | |
</form> |
/** | |
* FormatPhone formats phone number | |
* @param string $number phone number | |
* | |
* @return int formatted phone number | |
* | |
*/ | |
function FormatPhone($phone) | |
{ | |
$rx = "/ |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>fixed header and scrollable contents</title> | |
<style> | |
body { | |
margin: 0; |
version: '3.3' | |
services: | |
adminer: | |
image: adminer | |
restart: always | |
ports: | |
- 8080:8080 | |
volumes: | |
- type: bind |
func Error(w http.ResponseWriter, r *http.Request) { | |
w.WriteHeader(http.StatusBadRequest) | |
// w.Write's order must be written after you set the w.Writeheader | |
w.Write([]byte("error message")) | |
} |