This file contains 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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
This file contains 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
/** | |
* Check for Germany IBAN | |
*/ | |
var regexIBANDE = '([A-Z]{2})([0-9]{2})([0-9]{8})([0-9]{10})'; | |
var matchIBANDE = $('#someid').val().match(regexIBANDE); | |
console.log('match: iban '+matchIBANDE); | |
// iban correct | |
if(matchIBANDE != null) { |
This file contains 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
install vb .NET SDK | |
install MSVC 2010 C++ Express | |
install Qt SDK für MSVC 2010 in folder QtSDK/Desktop/Qt/{Versionsnummer} | |
click on qt-version administration add, choose the destination of qt sdk for msvc 2010 QtSDK/Desktop/Qt/{Versionsnummer}/bin/qmake.exe | |
choose under Qt Creator->projects->qt-version "Qt{Versionsnumber} for Desktop - MSVC 2010 (Qt SDK)" | |
then click ok |
This file contains 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
[branch "master"] | |
remote = gitlab | |
merge = refs/heads/master | |
[remote "other"] | |
url = https://github.com/hpmewes/OtherFrameworkBundle.git | |
fetch = +refs/heads/*:refs/remotes/gitlab/* | |
[remote "github"] | |
url = https://github.com/hpmewes/MLabsFrameworkBundle.git | |
fetch = +refs/heads/*:refs/remotes/github/* | |
[remote "origin"] |