This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$if(%discnumber%,$ifgreater($strchr(%discnumber%,'/'),0,$left(%discnumber%,$strchr(%discnumber%,'/')),%discnumber%)-,)$if(%track%,$num($ifgreater($strchr(%track%,'/'),0,$left(%track%,$strchr(%track%,'/')),%track%),2) ,)%title% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
options { | |
pageTree.showPageIdWithTitle = 1 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git filter-branch --commit-filter ' | |
if [ "$GIT_COMMITTER_NAME" = "unknown" ]; | |
then | |
GIT_COMMITTER_NAME="<New Name>"; | |
GIT_AUTHOR_NAME="<New Name>"; | |
GIT_COMMITTER_EMAIL="<New Email>"; | |
GIT_AUTHOR_EMAIL="<New Email>"; | |
git commit-tree "$@"; | |
else | |
git commit-tree "$@"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. In Shrew Soft eine config anlegen, wie im VPN-Protal von avm angegeben (http://www.avm.de/de/Service/Service-Portale/Service-Portal/VPN_Interoperabilitaet/15729.php?portal=VPN) | |
2. Die fritzbox.cfg muss an 2 Stellen folgendermaßen angepasst werden: | |
a) phase2localid { | |
ipnet { | |
ipaddr = 0.0.0.0 | |
mask = 0.0.0.0 | |
} | |
} | |
b) accesslist = "permit ip any 192.168.100.201 255.255.255.255"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find -type f -name *.php -print0 | xargs -0 grep -l questionnaire |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find -type f -name *.pdf | wc -l |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
<!-- | |
jQuery.noConflict(); | |
jQuery(document).ready(function() { | |
var wrapper = jQuery('div#wrapper_content').find('div#wrapper_columns'); | |
if (wrapper.length > 0) { | |
jQuery('div#column_left > div').each(function(index){ | |
var h = Math.max(jQuery(this).height(), jQuery('div#column_right > div').eq(index).height()); | |
jQuery(this).height(h); | |
jQuery('div#column_right > div').eq(index).height(h); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd "C:\Program Files (x86)\Apache2\bin" | |
openssl req -config ../conf/openssl.cnf -new -out XXX.csr -keyout XXX.pem | |
>> Fill in "PEM pass phrase" and "Common Name" | |
openssl rsa -in XXX.pem -out XXX.key | |
>> Delete the .rnd file | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
about:config security.fileuri.strict_origin_policy = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
DocumentRoot "C:/Apache2/htdocs/localhost" | |
ServerName localhost.local | |
ErrorLog "logs/localhost-error.log" | |
CustomLog "logs/localhost-access.log" combined | |
<Directory "C:/Apache2/htdocs/localhost"> | |
Options FollowSymLinks Includes ExecCGI | |
AllowOverride All | |
Order allow,deny |
OlderNewer