Skip to content

Instantly share code, notes, and snippets.

View arkadiusjonczek's full-sized avatar
🏴‍☠️

Arkadius Jonczek arkadiusjonczek

🏴‍☠️
View GitHub Profile
@arkadiusjonczek
arkadiusjonczek / snippet.sql
Created September 29, 2017 15:03
[MySQL] IDs as comma separated list #tags: OXID, MySQL
SELECT GROUP_CONCAT(OXID) FROM oxarticles LIMIT 100
@arkadiusjonczek
arkadiusjonczek / git.sh
Created September 29, 2017 09:30
[git] Removed cached directory after adding to .gitignore #tags: git
git rm --cached -f -r <directory>
@arkadiusjonczek
arkadiusjonczek / cli.php
Created September 18, 2017 18:25
PHP CLI Mode Check #tags: PHP
<?php
if (php_sapi_name() == 'cli') {
// In cli-mode
} else {
// Not in cli-mode
}
@arkadiusjonczek
arkadiusjonczek / git.sh
Created June 21, 2017 13:23
Change last commit message #tags: git
git commit --amend -m "new comment"
@arkadiusjonczek
arkadiusjonczek / .htaccess
Last active September 21, 2024 18:02
.htpasswd path finder for .htaccess file
AuthType Basic
AuthName "wiki"
AuthUserFile /path/.htpasswd
Require valid-user
@arkadiusjonczek
arkadiusjonczek / gist:8836e724a53ddd55362644745cf8ca4c
Created December 31, 2016 01:30
Start Chrome in App Mode on Mac OS X
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --app="http://www.google.de"
git reset <file>
git reset
git rm --cached <added_file_to_undo>
git update-index --assume-unchanged
@arkadiusjonczek
arkadiusjonczek / hash.sh
Created July 6, 2016 12:43
Generate Hash in Command Line
date | md5 | head -c16; echo
@arkadiusjonczek
arkadiusjonczek / wp-config.php
Created April 2, 2016 21:25
WordPress: Set SITEURL in wp-config.php
define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');
@arkadiusjonczek
arkadiusjonczek / functions.php
Created March 25, 2016 14:28
WordPress: Disable Theme Editor
/* Disable Theme Editor */
function remove_editor_menu() {
remove_action('admin_menu', '_add_themes_utility_last', 101);
}
add_action('_admin_menu', 'remove_editor_menu', 1);