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
| # This is a string of commands, not a developed script. | |
| # Set a password to be used for the PostgreSQL authentication | |
| POSTGRES_USER='n8n' | |
| POSTGRES_PASSWORD='' | |
| # Create Instance | |
| # Attach Block Storage | |
| # Add a public IP to the NIC | |
| # Edit the Instance > Virtual Cloud Network > Security Lists > Default Security Lists |
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
| Alt+E,N | |
| Home,S,S,S | |
| Alt+M,Y | |
| Preferences | |
| Security (Enhanced) | |
| Enable Protected Mode at startup | |
| http://www.efferen.nl/2012/03/solved-adobe-reader-x-hangs-after-opening-a-pdf-file/ | |
| https://www.adobe.com/devnet-docs/acrobatetk/tools/VirtualizationGuide/citrix.html |
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
| Greenplum (Massively Parallel Postgres for Analytics) | |
| https://greenplum.org/download/ | |
| Vagrant (Development Environments Made Easy) | |
| https://www.vagrantup.com/ | |
| Odoo (Open Source ERP and CRM) | |
| https://www.odoo.com/ | |
| Apache Hadoop |
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
| # https://www.reddit.com/r/sysadmin/comments/ck677f/sophos_removal_script/ | |
| # https://pastebin.com/4eRc5WpA | |
| #Sophos Endpoint Removal Script | |
| #Usage examples: | |
| # .\removesophos.ps1 # Just logs all messages to screen and file. | |
| # .\removesophos.ps1 -Remove YES # Removes all Sophos components and logs all messages to screen and file. | |
| # .\removesophos.ps1 -Password 1234567 -Remove YES # Password will be provided to SEDCli.exe if TP is on and SEDCLi.exe exists. | |
| # .\removesophos.ps1 -ErrorOnly YES # Only print items that exist (errors) on screen. Still logs all to file. |
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
| -- Government of Western Australia | |
| -- Department of Health | |
| -- HACC – Minimum Data Set | |
| -- http://ww2.health.wa.gov.au/Articles/F_I/HACC-minimum-data-set | |
| -- http://ww2.health.wa.gov.au/~/media/Files/Corporate/general%20documents/HACC/PDF/WA_MDS_User_Guide2014.pdf | |
| SELECT | |
| UPPER(CONCAT( | |
| SUBSTRING( | |
| LEFT(CONCAT( |
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 | |
| $check = array( | |
| 3 => 'Fizz', | |
| 5 => 'Buzz', | |
| ); | |
| for ($i = 1; $i <= 100; $i++) { | |
| $output = ''; |
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
| @echo off | |
| rem https://stackoverflow.com/questions/7727114/batch-command-date-and-time-in-file-name | |
| rem %I if running in Command Prompt, %%I is for batch | |
| for /f "tokens=2 delims==" %%I in ('wmic os get localdatetime /format:list') do @set datetime=%%I | |
| set datetime=%datetime:~0,8%-%datetime:~8,6% | |
| set filename=screen_%datetime%.png | |
| rem https://blog.shvetsov.com/2013/02/grab-android-screenshot-to-computer-via.html |
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
| # Ask for elevated permissions if required | |
| # https://github.com/Scine/Powershell/blob/master/ReclaimWindows10.ps1 | |
| If (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]"Administrator")) { | |
| Start-Process powershell.exe "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" -Verb RunAs | |
| Exit | |
| } |
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
| 'http://howtouseexcel.net/how-to-extract-a-url-from-a-hyperlink-on-excel | |
| Sub ExtractHL() | |
| Dim HL As Hyperlink | |
| For Each HL In ActiveSheet.Hyperlinks | |
| HL.Range.Offset(0, 1).Value = HL.Address | |
| Next | |
| End Sub |
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('max_execution_time', 60); | |
| set_time_limit(60); | |
| error_reporting(0); | |
| $options = array( | |
| 'base_url' => 'https://public-crest.eveonline.com', | |
| 'cache_expiry' => 1200 | |
| ) | |
| $filename = 'cache-'.md5($_SERVER['REQUEST_URI']); | |
| if (!file_exists($filename)) { |