From Actionable Dashboards to Action Dashboards – improving learning

Public
RegExr: Learn, Build, & Test RegEx
RegExr is an online tool to learn, build, & test Regular Expressions (RegEx / RegExp).
jrnl
Collect your thoughts and notes without leaving the command line.
You Can Build Portable Binaries of Python Applications
Contrary to popular belief, it’s possible to ship portable executables of Python applications without sending your users to Python packaging hell.
Login on a site using urllib
I'm trying to get information from this site http://cheese.formice.com/maps/@5865339 , but when i request using urllib.urlopen, its says that i need to login, i was using this code:
import urllib
...
You can customize this keyboard with your own Lego bricks
This mechanical keyboard is Lego-friendly.
@levelsio on Twitter
“✨ Here's how to generate A.I. images with Stable Diffusion on your MacBook M1/M2 in less than 30 seconds for free:
- Upgrade MacOS to the latest version (top left 🍎 -> About This Mac -> Software Update
- Open Terminal app
- Install Homebrew from https://t.co/oW9NbyxhmM
👇 1/n”
guide - StableDiffusion
r/StableDiffusion: Welcome to the unofficial Stable Diffusion AI subreddit! Here you can post art, discuss about the software, share something cool …
Cortex #133: The Ethics of AI Art - Relay FM
Grey explores collaboration again, Myke is getting ready for the Podcastathon. and they both discuss the ethics of AI art.
“A still of Kermit The Frog in Blade Runner 2049 (2017)” – Twitter Thread
“A still of Kermit The Frog in Spirited Away (2001)” - Twitter
AI Art System Comparisons – Twitter Thread
"Behind the scenes of shooting the moon landing, Hollywood studio, 1969, backstage photograph, astronaut actors, lighting" – Twitter
"Low poly game asset, Cthulhu monster, 2000 video game, isometric view" – Twitter
Textual Inversion
I spent $15 in DALL·E 2 credits creating this AI image, and here’s what I learned | by Joy Zhang | Aug, 2022 | Towards AI
Show r/StableDiffusion: Integrating SD in Photoshop for human/AI collaboration : StableDiffusion
Manrope – free sans-serif variable font
free sans-serif font family
Velja on the Mac App Store
Open links in a specific browser or a matching native app. Easily switch between browsers. Velja is not able to handle links clicked inside a browser. You can either right-click the link and use the share extension or copy the link and then click “Open URL from Clipboard” in the Velja menu. Examp…
Professional AI whisperers have launched a marketplace for DALL-E prompts
What makes a description of anime pinup art worth $5?
PHP-FPM Performance Tuning Basics
This resource provides instructions on how to tune performance directives when PHP-FPM is installed and enabled as a PHP handler in cPanel & WHM. Background information on how PHP-FPM is implem...
Jelastic Cloud Scripting Documentation
https://app.my.reclaim.cloud/console
SSH returns: no matching host key type found. Their offer: ssh-dss
Host gate.my.reclaim.cloud
HostKeyAlgorithms +ssh-rsa
PubkeyAcceptedKeyTypes +ssh-rsa
Host bitbucket.org
HostKeyAlgorithms +ssh-rsa
PubkeyAcceptedKeyTypes +ssh-rsa
SVGcode
SVGcode is a Progressive Web App that lets you convert raster images like JPG, PNG, GIF, WebP, AVIF, etc. to vector graphics in SVG format.
Coffee Brewing Ratios Explained
How much coffee should you use per cup? This is a dive into coffee brewing ratios, recipes and a little bit of coffee brewing theory. Music: "All The Time" b...
Elegant way for verbose mode in scripts?
Nice way to do logging:
function log () {
if [[ $_V -eq 1 ]]; then
echo "$@"
fi
}
tholman/cursor-effects: Old-school cursor effects for your browser built with modern JavaScript
Old-school cursor effects for your browser built with modern JavaScript - tholman/cursor-effects: Old-school cursor effects for your browser built with modern JavaScript
RVA-ALT-Lab/rampages-data-dashboard
Contribute to RVA-ALT-Lab/rampages-data-dashboard development by creating an account on GitHub.
HTTPie
mod_wsgi — Flask Documentation (2.2.x)
Quickstart — Flask Documentation (2.2.x)
Python Dev Center | Virtuozzo Dev Docs
Python Cloud Hosting
The platform provides an out-of-box integration of the scalable Apache application server dedicated specially for the Python-based applications hosting. It is already optimized and prepared for immediate management, allowing to dive right into development without bothering about numerous orchestration tasks, i.e. making the hosting process maximally convenient for developers.
Through this article, you’ll get acquainted with the main tools and features available on the platform to provide the required level of Python cloud hosting.
Hipster Ipsum – Artisanal filler text for your project.
Guides
Guides for using ELASTX Jelastic PaaS
One More Multiverse
Omeka Plugins
“Upgrade from Omeka Classic to Omeka Semantic” is a simple plugin for Omeka 2 that allows to upgrade automatically an installation to Omeka S (records, files, config, themes and some plugins). For missing or new plugins or glitches in themes, or any other need on Omeka and digital libraries, contact me!
Static Site Generator with GUI to build privacy-focused SEO-friendly website
Publii is a Static Site Generator with friendly user interface; a powerful blogging tool for ultra-fast, SEO friendly and secure websites.
How do I remove the old history from a git repository?
I'm afraid I couldn't find anything quite like this particular scenario.
I have a git repository with a lot of history: 500+ branches, 500+ tags, going back to mid-2007. It contains ~19,500 commit...
If you want to free some space in your git repo, but do not want to rebuild all your commits (rebase or graft), and still be able to push/pull/merge from people who has the full repo, you may use the git clone shallow clone (--depth parameter).
; Clone the original repo into limitedRepo
git clone file:///path_to/originalRepo limitedRepo --depth=10
; Remove the original repo, to free up some space
rm -rf originalRepo
cd limitedRepo
git remote rm origin
You may be able to shallow your existing repo, by following these steps:
; Shallow to last 5 commits
git rev-parse HEAD~5 > .git/shallow
; Manually remove all other branches, tags and remotes that refers to old commits
; Prune unreachable objects
git fsck --unreachable ; Will show you the list of what will be deleted
git gc --prune=now ; Will actually delete your data