Skip to content

Instantly share code, notes, and snippets.

View cloudmaker97's full-sized avatar
๐Ÿš’
On Focus

Dennis Heinrich cloudmaker97

๐Ÿš’
On Focus
View GitHub Profile
@cloudmaker97
cloudmaker97 / README.md
Last active August 29, 2024 13:37
Developer / Install Scripts for Debian 12

These are my personal install scripts for just downloading and executing all shell scripts on new computers. Like downloading in a exclusive folder for these scripts, then chmod +x * && bash *

@vanWittlaer
vanWittlaer / install.sh
Last active May 17, 2025 14:30
Shopware 6 - ddev Quick Install
#!/usr/bin/env bash
# What it does:
# - Creates a local Shopware installation using the Symfony Flex template for local development of client projects
# - Prerequisites: ddev installed on your machine, see https://ddev.com/get-started/
#
# How to use:
# - create a project folder
# - copy this file into the project folder
# - chmod +x install.sh
@cloudmaker97
cloudmaker97 / PHP-5.6.Dockerfile
Last active April 2, 2024 23:38
ionCube Loader for DDEV
# ionCube Loader (for PHP 5.6)
ADD ./ioncube/ioncube_loader_lin_5.6.so /usr/lib/php/20131226
RUN echo "zend_extension=/usr/lib/php/20131226/ioncube_loader_lin_5.6.so" > /etc/php/5.6/fpm/php.ini
@dianjuar
dianjuar / Install update WordPress puglins directly.md
Last active June 4, 2025 18:16
Install update WordPress plugins without providing ftp access

Install WordPress plugins directly (without FTP)

Put this on your wp-config.php

/* That's all, stop editing! Happy blogging. */
define('FS_METHOD', 'direct');
@jctosta
jctosta / screen_cheatsheet.markdown
Last active August 2, 2025 11:05
Screen Cheatsheet

Screen Quick Reference

Basic

Description Command
Start a new session with session name screen -S <session_name>
List running sessions / screens screen -ls
Attach to a running session screen -x
Attach to a running session with name screen -r
@bahostetterlewis
bahostetterlewis / pingalert.py
Last active December 16, 2015 16:49
My internet sucks and randomly cuts out. This lets me know when I'm connected again. simple and sweet so I don't have to ever type ping again.
import winsound
from subprocess import call, DEVNULL
print('Begin Ping Alert')
while call(["ping", "google.com"], stdout=DEVNULL, stderr=DEVNULL) != 0:
print('No net yet :(')
print('Web Back!!!')