Skip to content

Instantly share code, notes, and snippets.

Privacy Policy for Data Usage Monitor & Tracker

This privacy policy governs your use of the software application Data Usage Monitor & Tracker ("Application") for mobile devices that was created by revolve software.

Information Collection and Use

The Application does not collect any personally identifiable information from you.

Third-Party Services

Privacy Policy for QR & Barcode Scanner Pro This privacy policy governs your use of the software application QR & Barcode Scanner Pro ("Application") for mobile devices, which was created by revolve software.

Information Collection and Use The Application does not collect any personally identifiable information from you. The Application is a paid service and does not contain any advertisements.

Third-Party Services The Application uses third-party services that may collect information used to identify you. We are not responsible for the privacy practices of these services. We recommend that you review their privacy policies.

Link to the privacy policy of third-party service providers used by the app:

@cahitbeyaz
cahitbeyaz / generate-certificate-chain.sh
Created June 25, 2021 09:24 — forked from granella/generate-certificate-chain.sh
Create self-signed certificate with root and ca for development
#!/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)
@cahitbeyaz
cahitbeyaz / aggrid.tr.js
Created November 4, 2020 16:47
AgGrid localeText i18n Turkish Türkçe
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...',
# 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)
declare global {
interface String {
turkishToLower(): string;
turkishToUpper(): string;
}
}
String.prototype.turkishToLower = function () {
var string = this;
var letters = { "İ": "i", "I": "ı", "Ş": "ş", "Ğ": "ğ", "Ü": "ü", "Ö": "ö", "Ç": "ç" };