This is an alternative way to decrypt text files that got encrypted by the Sublime Text Crypto Package. Just in case, Sublime Text is not available.
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
/********************************************** | |
* Ink v1.0.5 - Copyright 2013 ZURB Inc * | |
**********************************************/ | |
/* Client-specific Styles & Reset */ | |
#outlook a { | |
padding: 0; | |
} |
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
. | |
| gruntfile.js | |
| package.json | |
| | |
+---dist | |
| | email-template-inline.html (inlined styles) | |
| | email-template.html (normal html) | |
| | | |
| +---css | |
| | mailchimp.css (just a copy) |
- puttygen.exe erzeugt privaten und öffentlichen Key.
- Speichere privaten Key mit Passwort als *.ppk
- Exportiere privaten Key als Open SSH Datei, um von Git & Co verwendet werden zu können.
- Lade die *.ppk Datei in pageant.exe dem Auth Agenten/Schlüsselmanager (Muss bei jedem Systemneustart erneut gemacht werden)
- Der öffentliche Schlüssel
ssh-rsa AAAA...base64== rsa-key-20150903
wird auf dem Server in die Datei /.ssh/authorized_keys kopiert (musste vom Provider hinzugefügt werden) - Test mit putty.exe ob man sich ohne Passwort per ssh einloggen kann.
- Kopiere die den privaten Key (openssh Datei) in das Verzeichnis C:\Users\xo\.ssh\ und nenne die Datei id_rsa -> Info
- Setze die Umgebungsvariablen
GIT_SSH=E:\xampp\Putty\plink.exe
undPATH=E:\xampp\Putty\
Info - Starte Console2 oder CMD und verbinde dich mit dem Server
ssh [email protected] -p 22
Es wird nach dem Passwort der *.ppk
git diff --name-status SHA1 SHA2
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
<?php | |
function regexToAbs($text, $base) | |
{ | |
if (empty($base)) | |
return $text; | |
// base url needs trailing / | |
if (substr($base, -1, 1) != "/") | |
$base .= "/"; |
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
Land;Postleitzahl von;Postleitzahl bis;Zone;Remote Area Typ | |
AD;AIXIRIVALL;AIXIRIVALL;3;G | |
AD;AIXOVALL;AIXOVALL;3;G | |
AD;ALDOSA;ALDOSA;3;G | |
AD;ANDORRA;ANDORRA;3;G | |
AD;ANDORRA LA;ANDORRA LA;3;G | |
AD;ANSALONGA;ANSALONGA;3;G | |
AD;ANYOS;ANYOS;3;G | |
AD;ARANS;ARANS;3;G | |
AD;ARINSAL;ARINSAL;3;G |
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
@echo off | |
set input=%1 | |
Echo.Input was - %input% | |
set converted=%input:E:\WEB\=http://localhost:8000/% | |
set converted=%converted:\=/% | |
echo.Converted to - %converted% | |
start php -S localhost:8000 -t "E:\WEB\" |
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 archive --output=file.zip HEAD $(git diff --name-only SHA1 SHA2) |