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
#!/bin/bash | |
rm *.jks 2> /dev/null | |
rm *.pem 2> /dev/null | |
echo "====================================================" | |
echo "Creating fake third-party chain root -> ca" | |
echo "====================================================" | |
# generate private keys (for root and ca) |
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
var AG_GRID_LOCALE_TR = { | |
// Set Filter | |
selectAll: '(Hepsini Seç)', | |
selectAllSearchResults: '(Tüm Arama Sonuçlarını Seç)', | |
searchOoo: 'Ara...', | |
blanks: '(Boş)', | |
noMatches: 'Eşleşme yok', | |
// Number Filter & Text Filter | |
filterOoo: 'Filtrele...', |
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
# changed to windows scripts credits to: https://gist.github.com/beeman/aca41f3ebd2bf5efbd9d7fef09eac54d | |
# Stop all containers | |
docker stop $(docker ps -qa) | |
# Remove all containers | |
docker rm $(docker ps -qa) | |
# Remove all images | |
docker rmi -f $(docker images -qa) |
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
declare global { | |
interface String { | |
turkishToLower(): string; | |
turkishToUpper(): string; | |
} | |
} | |
String.prototype.turkishToLower = function () { | |
var string = this; | |
var letters = { "İ": "i", "I": "ı", "Ş": "ş", "Ğ": "ğ", "Ü": "ü", "Ö": "ö", "Ç": "ç" }; |