- 2 lb Ground Turkey
- 2 onions, chopped
- 2 bell peppers, chopped
- 2 carrots, quartered and diced
- 1 jalepeno, diced
- 2 cups water
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
| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "title": "Air Configuration", | |
| "type": "object", | |
| "properties": { | |
| "root": { | |
| "type": "string", | |
| "description": "Working directory, either '.' or an absolute path.", | |
| "default": "." | |
| }, |
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
| { | |
| "openapi": "3.1.0", | |
| "info": { | |
| "title": "Sigman Collector Service", | |
| "description": "A service for collecting signals data.", | |
| "version": "0.1.0" | |
| }, | |
| "paths": { | |
| "/api/v1/ceoi": { | |
| "post": { |
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
| FROM pihole/pihole:latest | |
| RUN apt-get update && apt-get install -Vy php-cli php-sqlite3 php-intl php-curl unbound wget | |
| RUN wget -O - https://raw.githubusercontent.com/jacklul/pihole-updatelists/master/install.sh | bash | |
| COPY start-services.sh /start-services.sh | |
| COPY unbound-pi-hole.conf /etc/unbound/unbound.conf.d/pi-hole.conf | |
| RUN chmod +x /start-services.sh | |
| RUN unbound-anchor; unbound-checkconf |
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
| <# | |
| .SYNOPSIS | |
| Sets the scan state for Nessus security scans. | |
| .DESCRIPTION | |
| Sets the scan state for Nessus security scans. When run without the Relax switch, the security settings needed for scanning will be set to the suggested STIG settings. Use the Relax switch to undo the STIG settings that prevent Nessus from remote scanning capability. A reboot is required for the settings to take effect. | |
| .PARAMETER Relax | |
| Relaxes security settings to enable remote scanning of the machine. |
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
| 'scopeName': 'source.batchfile' | |
| 'name': 'Batch File' | |
| 'fileTypes': [ | |
| 'bat' | |
| 'cmd' | |
| ] | |
| 'patterns': [ | |
| { | |
| 'include': '#commands' | |
| } |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Runtime.InteropServices; | |
| using System.Text; | |
| namespace EjectMedia | |
| { | |
| class Program | |
| { |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.ComponentModel; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| namespace ProgressableCopy | |
| { | |
| class Program |