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
(In both Windows) | |
1. Go to C:\Users\{USER}\AppData\Roaming\AnyDesk | |
2. Copy & Paste 'thumbnails' | |
3. Open 'user.conf' | |
4. Replace the line 'ad.roster.items=' | |
5. Done. |
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
$> curl https://ipinfo.io/ip |
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 find the last-version of WP PasswordHash, search: wp_hash_password, wp_check_password | |
// File: /wp-includes/class-phpass.php | |
// To save hash in database (updating password) | |
// "UPDATE {TABLE} SET password = '" . oro_password_hash( $password_new ) . "' WHERE id = $id" | |
// To check password with hash | |
if( ! oro_password_check( $password, $database[ 'password' ] ) ) { | |
// PASSWORD FAILED | |
} |
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
#> diskpart | |
DISKPART> list disk | |
DISKPART> select disk [number-disk] | |
DISKPART> clean | |
DISKPART> create partition primary | |
DISKPART> select partition 1 | |
DISKPART> active | |
DISKPART> format fs=NTFS |
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
function var_dumpify( $dump, $echo = true, $cast2php = false ) { | |
ob_start(); | |
var_dump( $dump ); | |
$str_dump = ob_get_clean(); | |
$str_dump = str_replace( "array(0) {\n", 'array(0) {', $str_dump ); | |
$str_dump = str_replace( "=>\n", '=>', $str_dump ); | |
$str_dump = str_replace( "]=>", '] =>', $str_dump ); | |
$var_dump = ''; | |
$lines = explode( "\n", $str_dump ); |
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
1. Create folder in home with the command line | |
|- ~> mkdir script-folder | |
|- ~> touch script-folder/custom-script-done | |
|- ~> sudo chmod 777 script-folder/custom-script-done | |
|- ~> nano script-folder/custom-script.sh | |
touch /home/{USER_FOLDER}/script-folder/custom-script-done; | |
** write the command line ** | |
\- ~> sudo chmod 755 script-folder/custom-script.sh |
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
/* BARCODE 128 FONT (with or without text): | |
* https://fonts.google.com/specimen/Libre+Barcode+128+Text | |
* https://fonts.google.com/specimen/Libre+Barcode+128 | |
* | |
* EXAMPLES (with checksum < 126 or checksum > 126 ): | |
* - textToBarcode128B( 'Hello World!' ); // "ÌHello World!WÎ" | |
* - textToBarcode128B( 'Hello W4rld!' ); // "ÌHello W4rld!ÆÎ" | |
* | |
* NOTE: | |
* The font takes miliseconds to refresh the barcode-text without checksum char. |
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 example = ( function() { | |
var private = 0; | |
var fnIncrement = function() { | |
return ++private; | |
} | |
var returned = { fnIncrement: fnIncrement }; | |
Object.defineProperty( returned, 'autoIncrement', { get: fnIncrement } ); |
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
1. See the current version | |
|- #> uname –sr | |
2. See if there is new version | |
|- #> apt update | |
3. Update to new version | |
|- #> apt dist-upgrade | |
4.0. With Reboot | |
|- #> reboot now | |
\- Done! |
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
/** | |
* Examples: | |
* - PT1H20M5S > 01:20:05 | |
* - PT1H5S > 01:00:05 | |
* - PT2H10M > 02:10:00 | |
* - PT2M10S > 00:02:10 | |
* - PT2H > 02:00:00 | |
* - PT2M > 00:02:00 | |
* - PT2S > 00:00:02 | |
* |