Skip to content

Instantly share code, notes, and snippets.

@commitconfirm
commitconfirm / ttp_asa_template.txt
Last active February 6, 2024 20:13
TTP ASA Template
## TTP ASA Template
## Published 2021.10.12
## Jimmy Taylor
##
## Template for Cisco ASA configurations that organizes objects, object-groups, and ACLs
## for JSON using TTP Project
##
## TTP Project: https://github.com/dmulyalin/ttp
##
## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
@seratch
seratch / Dockerfile
Last active May 20, 2021 00:16
Bolt for Python: AWS App Runner Example
# https://gallery.ecr.aws/e5d9f5q7/aws-app-runner-bolt-python
FROM python:3.9.5-slim-buster
EXPOSE 8000
WORKDIR /app/
COPY requirements.txt /app/
COPY app.py /app/
RUN pip install -r requirements.txt
CMD python /app/app.py
@mtvbrianking
mtvbrianking / gitlab-ci.yml
Created March 28, 2020 17:47
Gitlab pages deploy swagger docs
# https://gitlab.com/mbrian/ects-ea-docs/-/ci/lint
# This file is a template, and might need editing before it works on your project.
image: node:10-alpine
# specify the location of the Open API Specification files within your project
# and the filename of the specification that you would like to display by default
variables:
DOCS_FOLDER: "specs"
SPEC_TO_DISPLAY: "rects.yaml"
@milesbxf
milesbxf / monzo-alertmanager-config.yaml
Last active April 29, 2026 15:15
Monzo's Alertmanager Slack templates
###################################################
##
## Alertmanager YAML configuration for routing.
##
## Will route alerts with a code_owner label to the slack-code-owners receiver
## configured above, but will continue processing them to send to both a
## central Slack channel (slack-monitoring) and PagerDuty receivers
## (pd-warning and pd-critical)
##
vars_secret_funky_json: !vault |
$ANSIBLE_VAULT;1.2;AES256;alan_host
35356666616633303337313766346562613961313262333530663432393965303736653334306433
6239666265343936343462653836386162343234353961330a306665396665353364613863316362
66646663313737393763383565333237316663666339623063646666646261643338616261633330
3634313634666264620a383632386661653330326435633861333031643334643237366430313733
3733
{
"vars_secret_funky_json": {
@brentjanderson
brentjanderson / Howto.md
Created February 20, 2018 17:55
SSH Tunneling with Firefox

Sometimes it is useful to route traffic through a different machine for testing or development. At work, we have a VPN to a remote facility that we haven't bothered to fix for routing, so the only way to access a certain machine over that VPN is via an SSH tunnel to a machine that is reachable over the VPN. Other times, I have used this technique to test internet-facing requests against sites I am developing. It is pretty easy, and if you don't use firefox regularly, you can treat Firefox as your "Proxy" browser and other browsers can use a normal configuration (Although you can also configure an entire system to use the proxy, other articles exists that discuss this potential).

  1. Open a terminal
@devynspencer
devynspencer / ansible-github.yml
Last active May 10, 2025 16:47
Example playbook for cloning a private git repository with Ansible.
---
hosts: all
tasks:
- name: add github ssh key
copy: >
src=files/id_rsa.github
dest=/root/.ssh/id_rsa.github
owner=root
group=root