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
kubectl get pod -o jsonpath="{range .items[*]}{'Namespace: '}{.metadata.namespace}{range .spec.containers[*]}{' Container: | |
'}{.name}{' Resources: '}{.resources}{'\n'}{end}{end}" -A |
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
var persianNumbers = [ '۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹' ]; | |
var getPersianNumbers = function(str) { | |
return ('' + str).replace(/(\d)/g, function(x) { return persianNumbers[x]; }); | |
}; |
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
["Hamid shared a document with you.","New signin from firefox on windows","Ahmad left a comment on your GajInbox project","Make sure this works fine."] |
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
[Desktop Entry] | |
Name=Foxit Reader | |
Comment=Foxit Reader | |
GenericName=Foxit Reader | |
Keywords=PDF;Reader | |
Exec=/opt/FoxitReader/FoxitReader %U | |
Terminal=false | |
Type=Application | |
Icon=/opt/FoxitReader/Foxit_Reader_Logo.png | |
Categories=GNOME;GTK;Reader; |
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 addItem($itemValue) | |
{ | |
$servername = "localhost"; | |
$username = "username"; | |
$password = "password"; | |
$dbname = "test"; | |
// Create connection | |
$conn = new mysqli($servername, $username, $password, $dbname); |