Skip to content

Instantly share code, notes, and snippets.

View Domepo's full-sized avatar
🐻
Holidays

Dominik Domepo

🐻
Holidays
  • Student
  • Germany
View GitHub Profile
@MatchuPitchu
MatchuPitchu / ebay-kleinanzeigen-anzeige-duplizieren.js
Last active November 10, 2024 09:47
Anzeige automatisiert duplizieren bei ebay Kleinanzeigen
(function () {
const submitButton = document.getElementById('pstad-submit');
const duplicateButton = document.createElement('button');
duplicateButton.setAttribute('id', 'pstad-duplicate');
duplicateButton.setAttribute('type', 'submit');
submitButton.after(duplicateButton);
duplicateButton.addEventListener('click', (event) => {
event.preventDefault();
@braian87b
braian87b / dumb-ap-wired-link.sh
Last active March 1, 2025 19:22
How to setup a Dumb AP, Wired backbone for OpenWRT / LEDE
@ichiTechs
ichiTechs / docker-compose.yml
Last active December 26, 2024 21:28
NextCloud with Maria DB docker-compose file
# NextCLoud with MariaDB/MySQL
#
# Access via "http://localhost:80" (or "http://$(docker-machine ip):80" if using docker-machine)
#
# During initial NextCLoud setup, select "Storage & database" --> "Configure the database" --> "MySQL/MariaDB"
# Database user: nextcloud
# Database password: nextcloud
# Database name: ncdb
# Database host: replace "localhost" with "maria-db" the same name as the data base container name.
#