Skip to content

Instantly share code, notes, and snippets.

@megamorf
megamorf / flowercare-dashboard.json
Created July 14, 2019 01:06
Flowercare Exporter Blog Post
{
"__inputs": [
{
"name": "DS_PROMETHEUS",
"label": "Prometheus",
"description": "",
"type": "datasource",
"pluginId": "prometheus",
"pluginName": "Prometheus"
}
@megamorf
megamorf / Dockerfile
Last active December 4, 2023 03:26
APKTOOL Dockerfile
FROM openjdk:8-alpine
RUN apk update && apk --no-cache add curl bash xmlstarlet
VOLUME ["/app"]
WORKDIR /app
ARG APKTOOL_VERSION="2.3.4"
@megamorf
megamorf / README.md
Last active January 4, 2019 23:46
Automation & Testing

web automation

  • Chrome/Firefox extension with workflow editor
  • records actions on the pages you visit, then replays those actions using a simulator
  • data stays on local machine

markdown helpers

@megamorf
megamorf / README.txt
Created December 14, 2018 21:24
Selectively disable Liquid variable interpolation
{% raw %}
```yaml
- name: Some action
file:
path: "{{item}}"
```
{% endraw %}
@megamorf
megamorf / sample.sh
Created October 16, 2018 16:01
InSpec Shell - show available resource methods
inspec> http("https://www.domain.com/", method: 'GET').class.superclass.instance_methods(false).sort
=> [:body, :headers, :http_method, :status, :to_s]
inspec> file('/tmp').class.superclass.instance_methods(false).sort
=> [:allowed?,
:basename,
:block_device?,
:character_device?,
:contain,
:content,
@megamorf
megamorf / Get-TargetedWinEvent.ps1
Last active December 29, 2017 10:33 — forked from jasonadsit/Get-TargetedWinEvent.ps1
Get-TargetedWinEvent.ps1
function Get-TargetedWinEvent
{
<#
.SYNOPSIS
Searches Windows logs for events related to specific Event IDs or EventData.Data values
.DESCRIPTION
Searches Windows logs for events related to specific Event IDs or EventData.Data values
Supports searching offline/exported evt/evtx files as well as online machines
.PARAMETER SearchTerm
@megamorf
megamorf / ConvertTo-CrashObject.ps1
Last active December 29, 2017 08:11
PowerShell - Extract crashes from application log events
function ConvertTo-CrashObject
{
<#
.SYNOPSIS
Returns crash objects from an application log event collection
.DESCRIPTION
Returns crash objects from an application log event collection.
Only records where source equals 'Application Error' are processed.
@megamorf
megamorf / Echo-Args.ps1
Created December 13, 2016 15:15
Echo-Args PowerShell
function Echo-Args
{
for($i=0;$i -lt $args.length;$i++)
{
"Arg $i is <$($args[$i])>"
}
}
@megamorf
megamorf / Access API with OAuth 2.0 Access Token.ps1
Created September 23, 2016 16:46
Webrequest - Authorization
$headers = @{}
$headers.Add('Authorization', "Bearer $accesstoken")
Invoke-RestMethod -Headers $headers -Uri https://graph.microsoft.com/v1.0/me -Method Get
@megamorf
megamorf / TrustAllCertsPolicy.ps1
Created September 23, 2016 16:44
PowerShell - Ignore SSL errors
add-type @"
using System.Net;
using System.Security.Cryptography.X509Certificates;
public class TrustAllCertsPolicy : ICertificatePolicy {
public bool CheckValidationResult(ServicePoint srvPoint, X509Certificate certificate,
WebRequest request, int certificateProblem) {
return true;
}
}
"@