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
| tr -d ' ' < domain.com/selector.txt | tr -d '\n' | tr -d '"' | tr -d '\t' | tr -s "[:blank]" | sed -n 's/.*(\(.*\)).*/\1/p' && echo |
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
| # free space mount points | |
| df -h / | |
| # used space folders | |
| du -sh * | |
| # used space process locked files | |
| lsof +L1 | |
| # used space by files in folder | |
| ls -lah |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ODCfile\shell\EditText\command] | |
| @="\"C:\\Program Files (x86)\\Microsoft Office\\root\\client\\appvlp.exe\" NOTEPAD.EXE \"%1\"" | |
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
| Global $rangeMin = 2500, _ | |
| $rangeMax = 5000, _ | |
| $divMin = 2, _ | |
| $divMax = 10 | |
| Func isDivisible($dividend, $divisor) | |
| $isDivisible = Not(IsFloat($dividend / $divisor)) | |
| Return $isDivisible | |
| EndFunc |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>euroreale</title> | |
| <meta name="description" content="euroreale"> | |
| <style type="text/css"> |
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
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>.senciente</title> | |
| <meta name="description" content="euroreale"> | |
| <style type="text/css"> | |
| html { | |
| background-color: yellow; |
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
| ini_set('display_errors', 1); | |
| ini_set('display_startup_errors', 1); | |
| error_reporting(E_ALL); |
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 | |
| date_default_timezone_set($timezone); | |
| $timezone = 'Europe/Lisbon'; | |
| $timeformat = 'd/m/Y h:i:s a'; | |
| $date = date($timeformat, time()); | |
| $number = wordwrap($argv[1], 30); | |
| $charLimit = 500; |
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
| ## Dovecot configuration file | |
| # If you're in a hurry, see http://wiki2.dovecot.org/QuickConfiguration | |
| # "doveconf -n" command gives a clean output of the changed settings. Use it | |
| # instead of copy&pasting files when posting to the Dovecot mailing list. | |
| # '#' character and everything after it is treated as comments. Extra spaces | |
| # and tabs are ignored. If you want to use either of these explicitly, put the | |
| # value inside quotes, eg.: key = "# char and trailing whitespace " |
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
| [global] | |
| ; Log to stderr | |
| error_log = /dev/stderr | |
| [www] | |
| ; The address on which to accept FastCGI requests. | |
| ; Valid syntaxes are: | |
| ; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific IPv4 address on | |
| ; a specific port; | |
| ; '[ip:6:addr:ess]:port' - to listen on a TCP socket to a specific IPv6 address on |