Skip to content

Instantly share code, notes, and snippets.

View WalterWoshid's full-sized avatar
🚀
Working on Okapi

WalterWoshid WalterWoshid

🚀
Working on Okapi
View GitHub Profile
@WalterWoshid
WalterWoshid / # Windows Problems.md
Last active February 20, 2023 10:19
Windows Problems

Windows Problems

Twitter: @WalterWoshid

@WalterWoshid
WalterWoshid / # Magento 2 Docker Scripts (Powershell).md
Last active February 17, 2023 14:51
Magento 2 Docker Scripts (PowerShell)

Magento 2 Docker Scripts (PowerShell)

Twitter: @WalterWoshid

@WalterWoshid
WalterWoshid / # Laravel Docker Starter.md
Last active February 17, 2023 14:51
Laravel 9 + Vue 3 + Tailwind CSS 3 + TypeScript + Sail (Docker) + Ziggy + Hot Module Replacement / BrowserSync

Laravel Docker Starter

Laravel 9, Vue 3, Tailwind CSS 3, TypeScript, Sail (Docker), Ziggy, Hot Module Replacement / BrowserSync

Twitter: @WalterWoshid

@WalterWoshid
WalterWoshid / # Add Server Name (nginx).md
Last active February 17, 2023 14:52
Add "server_name localhost;" to nginx config script

Add Server Name (nginx)

Twitter: @WalterWoshid

@Kurotaku-sama
Kurotaku-sama / Kleinanzeigen Verbesserungen.user.js
Last active May 21, 2024 21:57
Einige Verbesserungen für kleinanzeigen.de
// ==UserScript==
// @name Kleinanzeigen improvements
// @name:de Kleinanzeigen Verbesserungen
// @namespace kurotaku.de
// @version 2.5.9
// @description Some improvements for kleinanzeigen.de
// @description:de Einige Verbesserungen für kleinanzeigen.de
// @author Kurotaku
// @license MIT
// @sandbox JavaScript
@WalterWoshid
WalterWoshid / # Magento 2 - Many-to-Many-Relationship - Repository.md
Last active February 17, 2023 14:53
Magento 2: Many-to-Many-Relationship - Repository

Magento 2 - Many-to-Many-Relationship

Repository

Twitter: @WalterWoshid

@WalterWoshid
WalterWoshid / # Magento 2: Many-to-Many-Relationship - CRUD.md
Last active February 17, 2023 14:53
Magento 2: Many-to-Many-Relationship - CRUD

Magento 2 - Many-to-Many-Relationship

CRUD

Twitter: @WalterWoshid

@WalterWoshid
WalterWoshid / # Magento 2 - Many-to-Many-Relationship - db_schema.md
Last active February 17, 2023 14:53
Magento 2: Many-to-Many-Relationship - db_schema

Magento 2 - Many-to-Many-Relationship

db_schema

Twitter: @WalterWoshid

@abel0b
abel0b / install-linux-perf-on-wsl2.sh
Last active May 27, 2024 13:44
Install perf on WSL 2
apt install flex bison
git clone https://github.com/microsoft/WSL2-Linux-Kernel --depth 1
cd WSL2-Linux-Kernel/tools/perf
make -j8
sudo cp perf /usr/local/bin
@YakDriver
YakDriver / shell_try_catch.sh
Created February 14, 2018 15:27
Bash Basics: A Robust try/catch/finally for shell scripts
#!/bin/bash
# This script uses traps to create try/catch/finally functionality in shell scripts.
#
# OUTPUT:
#
# Hello! We're reporting live from script
# ./try_catch2.sh: line 23: badcommand: command not found
# ./try_catch2.sh: line 23: exiting with status 127
# It's the end of the line