Skip to content

Latest commit

 

History

History
1184 lines (871 loc) · 28.8 KB

link-library.md

File metadata and controls

1184 lines (871 loc) · 28.8 KB

Link library

Some introduction to mostly technical topics I find interesting occassionally.
Could also be my favourites collection..

For the pretty advanced stuff see my collection of interesting blogposts.

Toolbox

vscode
I'm using it all the time. Extensions & settings available as gists.
https://code.visualstudio.com/

github
Version control.
https://github.com/about

oh shit, git
How to get out of bad situations in git..
https://ohshitgit.com/

oh my git
The best learning game for git, I know of
https://ohmygit.org/

github-copilot
Faster snippets. Faster coding. Great experience for every-day-tasks.
Extendable with Copilot labs
https://copilot.github.com/

open github repos in vscode in the browser
Just press '.' when logged-in.
https://news.ycombinator.com/item?id=28157661

hetzner
Hosting and cloud.
https://www.hetzner.com/unternehmen/ueber-uns

gandi
Domain name registrar.
https://www.gandi.net/en

scoop
Windows package managing. Yes, I'm forced to do Windows a lot. https://scoop.sh/

markdown
The markdown specification (RIP Aaron)
http://www.aaronsw.com/weblog/001189

Share something

file.io
Fast file sharing.
https://www.file.io/

wormhole
Share files up to 10GB.
https://wormhole.app/

hedgedoc
Write and share markdown.
https://hedgedoc.org/

0bin
code sharing tool, pastebin , with extended burn functionality & written in python
https://0bin.net/

privatebin
actually a fork of zerobin, self-hosteable
https://privatebin.info/

Architecture

the twelve-factor-app
For an advanced understanding of general web apps / software-as-a-service how-to. Come back here later if you can't get a gasp on it now.
https://12factor.net/

semantic versioning
Versioning MAJOR.MINOR.PATCH, MAJOR for incompatible API changes, MINOR for new compatible features, PATCH for bug fixes.
https://semver.org/

Application Holotypes
characteristics of real-world applications, a guide to architecture decisions
https://jasonformat.com/application-holotypes/

hacker laws
Laws, Theories, Principles and Patterns that developers will find useful.
https://github.com/dwmkerr/hacker-laws

fast
how to write faster web applications link collection (might involve tree-shaking)
https://web.dev/fast/

AsyncAPI
Event driven architecture service design tutorial
https://www.asyncapi.com/docs/tutorials/getting-started

What pwa can do today
what is possible with Progressive Web Apps
https://whatpwacando.today/

jamstack
architectural approach for server side rendering (SSR) and static-site-generation (SSG) to decouple frontend from backend logic and improve load times as well as SEO
https://jamstack.org/

Backend

HTTP response status codes
https://developer.mozilla.org/en-US/docs/Web/HTTP/Status

http
what actually is http in the first place?
https://developer.mozilla.org/en-US/docs/Web/HTTP

Databases

realm.io
alternative to sqlite based on mongodb
https://realm.io/

supabase
open source firebase alternative, using a postgres instance
https://supabase.com/

postgreSQL
open source relational database
https://www.postgresql.org/

valkey
open source redis fork
https://valkey.io/

Python

python
Parseltongue, my language of choice.
https://www.python.org/

LPTHW
Learn python3 the hard way (Commercial).
I actually started working thoroughly through this book.
https://learnpythonthehardway.org/python3/

uv Manage all your different python versions with uv.
Python packaging and dependency management made easy and fast.
I finally managed to replace poetry/pyenv.
https://docs.astral.sh/uv/

ruff
central python linting in rust
https://github.com/charliermarsh/ruff

pypi contents
The contents of PyPI, in numbers
https://py-code.org/stats

f-string-help
how did f-strings work again? Padding, transformations, formatting, etc..
https://fstring.help/

strftime
strftime format codes
https://strftime.org/

pythex
quickly test python regular expressions
https://pythex.org/

design patterns in python
Learn design patterns (see: gang of four) in your favourite language.
https://refactoring.guru/design-patterns/python

python design patterns
Gang of four explained by Brandon Rhodes.
https://python-patterns.guide/

python anti-patterns
Learn on worse practices.
https://docs.quantifiedcode.com/python-anti-patterns/

the algorithms
All algorithms implemented in python - even if this implementations might not be the best solutions, this collection is very thorough.
https://github.com/TheAlgorithms/Python

hatchet
an alternative task queue manager to celery
https://hatchet.run/

Some of my favourite modules

httpx
A next-generation HTTP client for python.
https://www.python-httpx.org/

django
Django - the web framework for perfectionists with deadlines.
https://www.djangoproject.com/

fastapi
FastAPI framework, high performance, easy to learn, fast to code, ready for production.
https://fastapi.tiangolo.com/

litestar
another API framework, has some batteries included
https://litestar.dev/
might be enhanced with a tailwind-cli plugin

pandas
Data analysis and manipulation.
https://pandas.pydata.org/

jupyter
Another developer tool, I use everyday.
https://jupyter.org/
enhanceable via AI
https://github.com/jupyterlab/jupyter-ai

black
The default code formatter.
https://github.com/psf/black

rich
Beautiful formatting in the terminal.
https://github.com/willmcgugan/rich

textual/textualize
https://www.textualize.io/
https://github.com/textualize/textual/
TUI framework to run applications in a terminal easily

devtools
Debug print, prettyprint, breakpoints, timer.
https://python-devtools.helpmanual.io/

pendulum
Python datetimes made easy.
https://pendulum.eustace.io/

humanize
Human readable numbers.
https://pypi.org/project/humanize/

strawberry
GraphQL for python.
https://strawberry.rocks/

ibis
Big data wrapper, works with pandas, postgres, raw sql.
https://ibis-project.org/docs/3.1.0/

pelican
Static site generator, powered by python.
https://blog.getpelican.com/

pydantic-core
core validation logic for pydantic written in rust
actually this should be included in pydantic 2.0 already..
https://github.com/pydantic/pydantic-core

pydantic to json
convert some json data to pydantic models
https://jsontopydantic.com/

flit
packaging of Python modules
https://github.com/pypa/flit

pytest
write automated tests (yes, you should know this)
https://pytest.org/
used with vcrpy
record http requests to vcr files, that are reusued on testing, if nothing changed
https://vcrpy.readthedocs.io/en/latest/
and hypothesis
property based (random parametrizing) testcases that fuzz your pytests
https://github.com/HypothesisWorks/hypothesis
as well as mutatest
python mutation testing
https://mutatest.readthedocs.io/en/latest/
or nox
automated testing for multi python environments
https://nox.thea.codes/en/stable/

neapolitan
fast django CRUD
https://noumenal.es/neapolitan/

django-template-partials
re-using parts of templates all over again
https://github.com/carltongibson/django-template-partials

environs
env file parsing and environment variable handling
https://github.com/sloria/environs

taipy
fast data to gui framework
https://www.taipy.io/

darts
time series forecasting in python
https://unit8co.github.io/darts/

pandera
dataframe schema validations
https://pandera.readthedocs.io/en/stable/

polars
rust and python API for fast dataframes
https://www.pola.rs/

scalene
python performance optimizer, AI powered
for classical line-performance use the line-profiler instead
https://github.com/plasma-umass/scalene

monkey type
auto generate static type annotations
https://github.com/Instagram/MonkeyType

rembg
remove image background python CLI
https://github.com/danielgatis/rembg

Rust

rust the language
https://www.rust-lang.org/

rustup
Installation and setup
https://rustup.rs/

Are we web yet
What web technologies does rust support right now?
https://www.arewewebyet.org/

actix
A FAST webframework written in rust.
https://actix.rs/

serde
serialize and de-serialize data structures (json, pickle, etc) with rust
https://serde.rs/

rustfmt
format your rust code
https://github.com/rust-lang/rustfmt

cargo-expand
see results for macro expansion
https://github.com/dtolnay/cargo-expand

graphite
state of the art graphics editing
https://graphite.rs/

zola
and - of course ^ - another static site generator
https://www.getzola.org/

Frontend

atomic web design
methodology for creating design systems
https://bradfrost.com/blog/post/atomic-web-design/

HTML semantics
The HTML web semantics cheat sheet
https://learntheweb.courses/topics/html-semantics-cheat-sheet/

htmx
High power tools for HTML.
https://htmx.org/

hypermedia-systems
Web Applications with Htmx
Part 2 of the very nice book hypermedia-systems
by Carson Gross, Adam Stepinski, Deniz Aksimsek
https://hypermedia.systems/book/part/htmx/

hyperscript
another front end web development language https://hyperscript.org/docs/

slippers
Template component libraries for Django
https://mitchel.me/slippers/

django-allauth-ui
Nice looking (tailwind) templates for django-allauth
https://github.com/danihodovic/django-allauth-ui

daisy ui
Add component class names to Tailwind CSS
https://daisyui.com/

CSS

tailwind
The rapid css framework.
https://tailwindcss.com/

tailwindui
UI-components for tailwind (Commercial).
https://tailwindui.com/

headlessui
Animated UI components used along with Tailwind CSS.
https://headlessui.dev/

vimesh-headless
headlessui re-build for alpine.js
https://github.com/vimeshjs/vimesh-headless

pines
tailwind and alpine.js components
https://devdojo.com/pines

animated tailwind
A configuration to use Animate.css with Tailwind CSS.
https://github.com/ikcb/animated-tailwindcss

cssgradient
Easy gradient control.
https://cssgradient.io/

Specifity Calculator
A visual way to understand CSS specificity.
https://specificity.keegan.st/

CSS-tricks
the flexbox layout guide
https://css-tricks.com/snippets/css/a-guide-to-flexbox/

Daisy UI
Component library for tailwind
https://daisyui.com/

Tailblocks
blocks of MIT licensed tailwind snippets https://tailblocks.cc/

super useful css resources
a nice curated toplist on css resources
https://dev.to/lissy93/super-useful-css-resources-1ba3

css snippets
snippets collection by Ryan Trimble
https://ryantrimble.com/blog/my-favorite-css-snippets/

tailwind elements
md-bootstrap styled collection of tailwind components, sections & templates
https://tailwind-elements.com/

javascript / typescript

javascript
The modern javascript tutorial.
https://javascript.info/

typescript
JavaScript with types.
https://www.typescriptlang.org/

Structure and Interpretation of Computer Programs
The Book by Harold Abelson, Gerald Jay & Julie Sussman originally written with common lisp examples available online
https://sourceacademy.org/sicpjs

vuejs
Re-written in typescript with composition API.
https://v3.vuejs.org/

vuemastery
Learn vue by Evan You himself (Commercial).
https://www.vuemastery.com/

vite
Blazingly fast TS devserver.
https://vitejs.dev/

vuepress
static sites served by vue, supporting theming
https://v2.vuepress.vuejs.org/

vueuse
Collection of essential Vue Composition Utilities.
https://vueuse.org/

pnpm
Fast and disk efficient package manager for js and ts packages
https://pnpm.io/

capacitor
Native mobile apps with vue and native mobile api support
https://capacitorjs.com/

vercel
frontend deployment as a service
https://vercel.com/

trois
ThreeJS 3D effects for vuejs
https://troisjs.github.io/

vueuse
a lot of essential vue composition utilities
https://vueuse.org/

vue-macros
macros and syntax sugar to vue
https://vue-macros.sxzz.moe/

gridsome
jamstack for vue.js
https://gridsome.org/

everyone has js, right Do you assume, javascript is always available? https://www.kryogenix.org/code/browser/everyonehasjs.html

qwik
typescript framework for lazy loading small chunks
https://qwik.builder.io/

zod
typescript schema validation
https://zod.dev/

design

godly websites
Collection of design inspirations on the internet.
https://godly.website/

neumorphism generator
generate css for buttons with the neumorphism effect
https://neumorphism.io/#e0e0e0

glassmorphism generator
generate css for elements with a glassmorphism effect
https://hype4.academy/tools/glassmorphism-generator

upscayle
ai upscaler
https://github.com/upscayl/upscayl

sketch-a-day
Scripts for one python visualization a day https://abav.lugaralgum.com/sketch-a-day/

cameronsworld
a love letter to the internet of old
https://www.cameronsworld.net/

Cloud

traefik
Routing, reverse-proxy and load-balancing.
https://doc.traefik.io/traefik/

terraform
Infrastructure as a code.
https://www.terraform.io/

ansible
automate remote machines
https://www.ansible.com/

podman
manage containers, without root or deamon (as docker does)
https://podman.io/

kubernetes
Group containers to applications and load balance 'em.
https://kubernetes.io/de/
Be productive fast, while using the cheat-sheet
https://kubernetes.io/docs/reference/kubectl/cheatsheet/
test k8s locally, using kind
https://kind.sigs.k8s.io/

k3s
light weight kubernetes
https://k3s.io/

flux
Kubernetes cluster management.
https://fluxcd.io/

kafka
distributed event/data streaming (consume, produce) platform
-> here is a cute otter tutorial for kafka
https://kafka.apache.org/

drone
Running CI / CD for your projects.
https://www.drone.io/

argo CD
declarative continuous delivery tool for kubernetes workflows
https://argoproj.github.io/

ray
scale AI and python workloads
https://www.ray.io/

ms azure curriculum
this is the offcial entry level curriculum for the azure administrator certification
https://learn.microsoft.com/en-us/users/msftofficialcurriculum-4292/collections/xe42fkkpzr6roe

Google Cloud Sketchnotes
learn how to become a gcloud engineer
https://github.com/priyankavergadia/GCPSketchnote

localstack
local AWS cloud stack emulator
https://github.com/localstack/localstack

serverless
deploy serverless lambdas https://www.serverless.com/

acme.sh
Shell script for automatic ACME (renew and issue certificates).
https://github.com/acmesh-official/acme.sh
https://acme.sh/

httpbin
emulate HTTP requests and responses
https://httpbin.org/

Data

cloudpickle
extended pickling support for Python objects, especially useful for cluster computing
https://github.com/cloudpipe/cloudpickle

msgpack
fast binary serialization, also available as node-red-node
https://msgpack.org/

data-to-viz
from data to the most appropriate graph
https://www.data-to-viz.com/

leafmap
geodata viz & geospatial analysis in jupyter
https://github.com/opengeos/leafmap

zdf: recommendations
how to recommend media, in python, from the offical mediathek
https://algorithmen.zdf.de/
https://github.com/zdf-opensource/recommendations-pa-base

pyvis
interactive network visualizations
https://pyvis.readthedocs.io/en/latest/

Transform tools
transforms from one thing to another (like ordinary css to tailwind, or markdown to html, xml2json, etc)
https://transform.tools/

Worldtimebuddy
convenient world clock, time zone converter and online meeting scheduler
https://www.worldtimebuddy.com/

Shell & Terminal

windows-terminal
Yes, I'm forced to use Windows a lot.
https://github.com/microsoft/terminal

Alacritty
Terminal
https://github.com/alacritty/alacritty

modern unix
Must have modern shell-command replacements.
https://github.com/ibraheemdev/modern-unix

terminal trove
I recently discovered the curated showcase for all things temrinal, I'm just using rust packages here
https://terminaltrove.com/language/rust/

Fish
Smart posix shell.
https://fishshell.com/

Starship
Minimal fast prompt for any shell.
https://starship.rs/

kitty
Terminal
https://sw.kovidgoyal.net/kitty/

Fig
IDE-style autocomplete to terminal
https://fig.io/

TheFuck
Correct previous command, when mistyped, by typing fuck
https://github.com/nvbn/thefuck

Chmod
Chmod Command Calculator
https://chmodcommand.com/

Security

Security for everyone
A great introduction to the most common vulnerabilities by Richard Adams.
https://sudo.pagerduty.com/for_everyone/
https://sudo.pagerduty.com/for_everyone_part_ii/
https://sudo.pagerduty.com/for_engineers/

pwn.college
Arizona State University Computer Systems Security course.
https://pwn.college/

picoctf
Computer security education from Carnegie Mellon University.
https://picoctf.org/

portswigger
Learn web security with challenges from the burpsuite-team.
https://portswigger.net/web-security

Cyber Chef
Cyber Swiss Army Knife
https://gchq.github.io/CyberChef/

Securitytxt
Standards to define security policies
https://securitytxt.org/

Types of attacks
XSS, CSRF, MitM, Sessions explained by Mozilla.
https://developer.mozilla.org/en-US/docs/Web/Security/Types_of_attacks

CORS
Cross-Origin Resource Sharing (CORS).
https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS

port knocking Grant access without permanent open ports.
https://help.ubuntu.com/community/PortKnocking

JWT
Be aware on using them securely with trusted algorithms and correct header setup.
https://jwt.io/

Fuzzy security
Tutorial series.
https://www.fuzzysecurity.com/tutorials.html

Magic hashes
PHP hash collisions.
https://github.com/spaze/hashes

Fractal Crypt
Deniable encryption cryptoarchiver.
https://github.com/zorggish/FractalCryptGUI

Binary Golf
competition to write the smallest files to serve a purpose (crash a program, replicate itself.. etc)
https://binary.golf/

Trivy
Vulnerability scanner. (misconfigurations, secrets, SBOM, ...) in containers, Kubernetes, repositories ...
https://trivy.dev/

Machine Learning

Lexica
The Stable Diffusion search engine
https://lexica.art/

dreamlike
AI art generation website
https://dreamlike.art/

streamlit
data scripts into shareable web apps in minutes
https://streamlit.io/

gradio
fast demo for your machine learning models
https://gradio.app/

mage space
stable diffusion 1.5 online generator https://www.mage.space/

fast.ai
machine learning learning resources
Practical Deep Learning for people with some coding experience, who want to learn how to apply deep learning and machine learning to practical problems. https://www.fast.ai/
https://github.com/fastai/fastbook
https://course.fast.ai/

controlNet
control stable-diffusion output
https://github.com/lllyasviel/ControlNet

alpaca
easy to reproduce LLaMA 7B (as alpaca ) Model
https://github.com/tatsu-lab/stanford_alpaca

beam cloud
ML hardware and deployment tool
https://www.beam.cloud/

pipeline.ai
Serverless GPU inference for ML models
https://www.pipeline.ai/

cerebrium.ai
Serverless GPU Model Deployment
https://www.cerebrium.ai/

banana.dev
machine learning training on serverless GPUs (A100)
https://www.banana.dev/

awesome prompts
prompt curation for ChatGPT engineering
https://github.com/f/awesome-chatgpt-prompts

ManimML
animations and visualizations of common machine learning concepts
https://github.com/helblazer811/ManimML

Pinecone
supercharge your gpt with vector database contexts
https://cookbook.openai.com/examples/vector_databases/pinecone/readme

langchain
how to build context out of your data for your prompt
https://python.langchain.com/docs/get_started/introduction

mistral
the mistral model, apache 2.0 license
https://mistral.ai/

Ollama
Get up and running with Llama 2, Mistral, and other large language models locally.
https://github.com/ollama/ollama

lumiere
alphabet just released this crazy video generating ai
https://lumiere-video.github.io/

ColBERT
Neural serach for large text collections.
https://github.com/stanford-futuredata/ColBERT

dspy
Optimizations: programm, not prompt foundation models.
Some dieas additionally to ELO scores for models. https://github.com/stanfordnlp/dspy

spacy
Industrial-Strength Natural Language Processing https://spacy.io/

Gen AI Tools

gen ai guidebook
This is a comprehensive resource for folks to get started in GenAI
https://ravinkumar.com/GenAiGuidebook/book_intro.html

llm
Access large language models from the command-line
https://github.com/simonw/llm

pinoccio
alternative: run "actions" against LLMs via CLI
https://github.com/go-go-golems/geppetto

BlenderGPT
Use commands in English to control Blender with OpenAI's GPT-4
https://github.com/gd3kr/BlenderGPT

scrapeghost
scraping websites using OpenAI's GPT API
https://github.com/jamesturk/scrapeghost

stable diffusion turbo
SDXL
https://clipdrop.co/stable-diffusion-turbo

svg.io
text prompt to svg
https://svg.io/

gamma
presentations, documents and websites
https://gamma.app/

notebooklm
NotebookLM lets you read, take notes, ask questions, organize your ideas
https://notebooklm.google/

prompt engineering guide
resources for prompt engineering
https://www.promptingguide.ai/

openmodeldb
database of AI Upscaling models
https://openmodeldb.info/

Stars from GitHub

workadventure
Walk through a virtual office space and video conference your co-workers.
https://github.com/thecodingmachine/workadventure

minio
Self hosted bucket storage compatible with many S3 implementations
https://github.com/minio/minio

chezmoi - dotfiles handling
Jochen showed me this alternative for handling my dotfiles.. looks like I have to re-think-and-factor this another time again.
https://github.com/twpayne/chezmoi

the book of secret knowledge
A collection of inspiring lists, manuals, cheatsheets, blogs, hacks, one-liners, cli/web tools and more.
https://github.com/trimstray/the-book-of-secret-knowledge

Realworld example apps
Always the same demo app in every framework you can imagine.
https://github.com/gothinkster/realworld

wargame-nexus
List of wargames.
https://github.com/zardus/wargame-nexus

fisher
Plugin manager for fish.
https://github.com/jorgebucaran/fisher

posy
At least a very good idea by Nathaniel Smith to substitute all the annoying python tools with one single rust binary executable
https://github.com/njsmith/posy

benchmarks for databases using django
Did you need a prove that postgres is fast?
https://github.com/sarathak/django-db-benchmark

Python Data Science Handbook
Thanks Jake! This repository contains the entire Python Data Science Handbook, in the form of (free!) Jupyter notebooks.
https://github.com/jakevdp/PythonDataScienceHandbook

Healthchecks
Self hosted healthchecks written as django-webapp.
https://github.com/healthchecks/healthchecks

Record ansible playbooks
ARA Records Ansible and makes it easier to understand and troubleshoot.
https://github.com/ansible-community/ara

entr
Run arbitrary commands when files change
https://github.com/eradman/entr

Repo visualization
Visualize & explore github repos
https://next.github.com/projects/repo-visualization#explore-for-yourself

demucs
waveform source separation, cut some voices from your songs
https://github.com/facebookresearch/demucs

apistar
define OpenAPI or Swagger schemas in yaml
https://github.com/encode/apistar

wtfpython
some of the interesting parts of Python that you might be unaware of
https://github.com/satwikkansal/wtfpython

awesome-selfhosted
https://github.com/awesome-selfhosted/awesome-selfhosted

Other

Didn't I mention hackernews yet?
https://news.ycombinator.com/

codewars
Practice programming in your favourite language.
https://www.codewars.com/

godbolt
The compiler explorer, see what your code is actually doing
https://godbolt.org/

swagger editor
the editor can live render api docs directly from the openapi.yaml
https://editor.swagger.io/

FriendDA
disclosure agreement between friends
https://friendda.org/

Docusaurus
Static site generator for Markdown files to ship beautiful documentation websites in no time.
https://docusaurus.io/

Mkdocs
If you include the themes it's another nice static site generator for markdown documentation.
https://www.mkdocs.org/

qutebrowser
Keyboard based browser, written in python
https://qutebrowser.org/

Kotlin is like C#
kotlin vs c#
https://ttu.github.io/kotlin-is-like-csharp/

Business

static code analysis
Automated code reviews on commits and pull requests
https://www.codacy.com/

doppler.com
Secret and environment managing made easy
https://www.doppler.com/

product management
User stories and prioritization
https://www.productboard.com/

Figma
Design & Layouts
https://www.figma.com/

miro
Great tool used for virtual WhiteBoard-Templates:
Flowcharts, MindMaps, Retros, User-Stories, Multimedia presentations.
Also mirroring the kanban-workflow from github.
https://miro.com/ project management alternative: klaxoon

Anima
Figma to vue conversion https://www.animaapp.com/

bubble.io
nocode landing pages & mock-ups
https://bubble.io/features

auth zero
login & single sign on (sso) as a service
https://auth0.com/

lexoffice
langweilige Buchhaltung erledigen
https://www.lexoffice.de/

splitbee
track, analyze & converse business
https://splitbee.io/

storyblok.com
Commercial headless CMS in vue.js
https://storyblok.com/

gofundme
Crowdfunding platform for social projects
https://www.gofundme.com/

beautiful.ai
presentation-software
https://www.beautiful.ai/

steve.ai
explanation videos created by ai
https://www.steve.ai/

anny.co
Terminbuchung
https://anny.co/

clickup
productivity and task board tool with a lot of APIs
https://clickup.com/

squadcast
incident request response plattform https://www.squadcast.com/

visualcapitalist
smart visualisations for economic businesses data
https://www.visualcapitalist.com/

heygen
AI video generator
https://www.heygen.com/

Commercial

monolisa font
a very nice dev font
https://www.monolisa.dev/

flowiseai
easy LLM flows
https://flowiseai.com/

together.ai
Train, fine-tune-and run inference on AI models
https://www.together.ai/

mattermost
collaboration hub, like teams
https://mattermost.com/

zapier
no code automation
https://zapier.com/

builder.io
ai: figma to code with a visual cms and a visual co-pilot
https://www.builder.io/

pika
ai: idea-to-video
https://pika.art/

refactoring ui
design beautiful user interfaces from a developer's point-of-view.
https://www.refactoringui.com/

companisto.com
crowd-investing platform for your startup(s)
https://www.companisto.com/de

hume.ai
interpret emotional expressions
https://www.hume.ai/

soulmachine nova
Talk to nova.
https://www.soulmachines.com/

scaling champions
scale your sales, german agency with some ideas
https://scaling-champions.com/team/

tailscale
recommended vpn
https://tailscale.com/

Home

jellyfin
media streaming
https://jellyfin.org/