Skip to content

Instantly share code, notes, and snippets.

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@wolf1953ii
wolf1953ii / Shopware Folder Permissions
Created October 5, 2021 09:36 — forked from maxout/Shopware Folder Permissions
Set the correct directory permissions for Shopware installation
chmod 777 config.php
chmod 777 -R cache
chmod 777 -R files
chmod 777 -R media
chmod 777 -R engine/Shopware/Plugins/Community
chmod 777 -R logs
chmod 777 -R engine/Shopware/Plugins/Default
chmod 777 -R web/cache/
chmod 777 -R recovery/
chmod 777 -R themes/Frontend
@wolf1953ii
wolf1953ii / Sorting.java
Created March 20, 2019 09:00
Fully OOP implementation of sorting algorithms
public class Sorting
{
/*
private static Integer getSize(Object[] array)
{
Integer size = 0;
for(Object e : array)
{
size++;