I hereby claim:
- I am supercid on github.
- I am supercid (https://keybase.io/supercid) on keybase.
- I have a public key ASDfn2eux4enGBYnftuNim9XsHvKVPtOOrMp0hDbpzcCjwo
To claim this, I am signing this object:
00D1E5 | |
0111E | |
0115 | |
011ED | |
011F1E1D | |
011F1E1D5 | |
015E | |
01AF | |
01D1E |
<?php | |
// src/AppBundle/Twig/MaskExtension.php | |
namespace AppBundle\Twig; | |
class MaskExtension | |
{ | |
public function mask($value, $mask) | |
{ | |
$maskared = ''; | |
$value = (string) $value; |
# set prefix to control-f | |
set -g prefix C-f | |
#unbind system defined prefix | |
unbind C-b | |
# helps in faster key repetition | |
set -sg escape-time 0 | |
# start session number from 1 rather than 0 |
diff -urN htop-1.0.2-orig/CRT.c htop-1.0.2/CRT.c | |
--- htop-1.0.2-orig/CRT.c 2013-03-23 14:10:29.500604247 +0100 | |
+++ htop-1.0.2/CRT.c 2013-03-23 14:11:01.916663508 +0100 | |
@@ -59,6 +59,9 @@ | |
UPTIME, | |
BATTERY, | |
TASKS_RUNNING, | |
+ TEMPERATURE_COOL, | |
+ TEMPERATURE_MEDIUM, | |
+ TEMPERATURE_HOT, |
# Replace any brackets with real values | |
# Try to ssh in to DREAMHOST (ensure it no longer asks for a PW); you may want to restart Terminal | |
ssh [user]@[host] | |
cd ~ | |
mkdir [mydomain_com].git | |
cd [mydomain_com].git | |
git init --bare | |
vi hooks/post-receive | |
# Enter the code from the "post-receive" file (in this gist); save + quit |
#!/bin/sh | |
# This gist contains pre-commit hooks to prevent you from commiting bad code or to the wrong branch. | |
# There are four variants that I have built: | |
# - pre-commit: stops commits to "master" and "develop" branches. | |
# - pre-commit-2: also includes a core.whitespace check. | |
# - pre-commit-3: the core.whitespace check and an EOF-newline-check. | |
# - pre-commit-4: only the core.whitespace check. | |
# Set desired version like this before installing: | |
# FILE=pre-commit |
I hereby claim:
To claim this, I am signing this object:
git clone https://github.com/shopware/shopware.git | |
cd shopware | |
chmod -R 755 var | |
chmod -R 755 web | |
chmod -R 755 files | |
chmod -R 755 media | |
chmod -R 755 engine/Shopware/Plugins/Community | |
cd build/ | |
ant configure | |
ant build-unit |
# Recently i've been struggling to ignore my local changes to a .env file that was already committed in a git repo. | |
# To locally ignore your changes to that particular file/folder and keep tracking in the remote, use this: | |
git update-index --skip-worktree <path-name> |
/** @noinspection PhpUndefinedMethodInspection */ | |
/** @noinspection PhpDeprecationInspection */ | |
PhpAssignmentInConditionInspection | |
PhpDeprecationInspection | |
PhpDocMissingReturnTagInspection | |
PhpDocSignatureInspection | |
PhpDynamicAsStaticMethodCallInspection | |
PhpIllegalArrayKeyTypeInspection |