Checklist for migrating an AA app to BS5 / AA4 style.
Switch to new AA base by replacing {% extends 'allianceauth/base.html' %}
with
package main | |
import ( | |
"bufio" | |
"image" | |
"image/color" | |
"image/draw" | |
_ "image/jpeg" | |
"image/png" | |
"os" |
"""Find_apps is a command line tool to identify all Django apps in a Python package. | |
The tools will look for and parse AppConfig definitions in apps.py files. | |
Django apps which do not have an apps.py file will not be recognized. | |
usage: find_apps.py [-h] [-path PATH] [-hide-name] | |
options: | |
-h, --help show this help message and exit | |
-path PATH, -p PATH starting path (default: .) |
package main | |
import ( | |
"errors" | |
"log" | |
"os" | |
"os/signal" | |
"syscall" | |
"time" |
#!/usr/bin/env bash | |
# This script builds an AppImage with AppStream metadata from a Fyne app | |
set -e | |
# Parameters | |
metadir="." | |
# Constants |
package widgets | |
import ( | |
"fyne.io/fyne/v2" | |
"fyne.io/fyne/v2/widget" | |
) | |
// StaticTable is a modification of Fyne's table widget, which does not allow the user to select or hover. | |
// It is useful for displaying data in a table format, when the user is not supposed to interact with it. | |
type StaticTable struct { |
This guide explains how one can import notes from the iPhones notes app into Standard Notes using free and open source software only.
Note that this process will import notes as plain text only.
Create a backup of your iPhone
Extract the notes database from that backup using iTunes Backup Explorer -> NoteStore.sqlite
"""Convert iphone notes from JSON format into plain text files.""" | |
import argparse | |
import datetime as dt | |
import json | |
import os | |
import re | |
from pathlib import Path | |
from typing import NamedTuple |
/*! | |
* @name Readthedocs | |
* @namespace http://userstyles.org | |
* @description Styles the documentation pages hosted on Readthedocs.io | |
* @author Anthony Post | |
* @homepage https://userstyles.org/styles/142968 | |
* @version 0.20170529055029 | |
* | |
* Modified by Aloïs Dreyfus: 20200527-1037 | |
* Modified by Erik Kalkoken: 20220615 |
package main | |
import ( | |
"context" | |
"fmt" | |
"github.com/antihax/goesi" | |
) | |
func main() { |