Skip to content

Instantly share code, notes, and snippets.

View AquilaSands's full-sized avatar
🤖
Existential crisis

Aquila Sands AquilaSands

🤖
Existential crisis
View GitHub Profile
@AquilaSands
AquilaSands / venom_security_headers_tests_suite.yml
Created September 22, 2021 11:37 — forked from righettod/venom_security_headers_tests_suite.yml
VENOM sample HTTP security response headers test suites.
name: HTTP security response headers test suites
# TOOLS
# VENOM HOME: https://github.com/ovh/venom
# VENOM RELEASE: https://github.com/ovh/venom/releases
# VENOM ASSERTION KEYWORDS: https://github.com/ovh/venom#assertion
# REF AND RUN
# REF BASE: https://owasp.org/www-project-secure-headers/
# RUN CMD: venom run --var="target_site=https://righettod.eu" venom_security_headers_tests_suite.yml
# venom run --var="target_site=https://righettod.eu" --var="internet_facing=true" venom_security_headers_tests_suite.yml
# venom run --var="target_site=https://righettod.eu" --var="internet_facing=true" --var="logout_url=/logout" venom_security_headers_tests_suite.yml
@AquilaSands
AquilaSands / Instructions.md
Created September 9, 2021 06:50 — forked from NickCraver/Microsoft.PowerShell_profile.ps1
Craver's oh-my-posh profile

Included here are the PowerShell profile I use as well as the oh-my-posh 3 config, but in addition to these you'll need:

  1. The PowerShell modules:
Install-Module -Name posh-git -Repository PSGallery
Install-Module -Name oh-my-posh -Repository PSGallery
@AquilaSands
AquilaSands / .editorconfig
Created April 1, 2021 14:08
Personal .editorconfig settings with C# code style preferences
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# Don't use tabs for indentation. Although probably should for accessability reasons.
[*]
end_of_line = crlf
indent_style = space
insert_final_newline = true
@AquilaSands
AquilaSands / app.html
Last active December 10, 2017 22:44
Aurelia Gist
<template>
<require from="./outer"></require>
<require from="./inner"></require>
<h1>${message}</h1>
<outer><inner></inner></outer>
</template>
/*
* This produces a single css file that is then required in app.html
* The individual styles for each component are imported as a json object by
* import * as css from './xxxxxx.css.json' in TypeScript (you get an error but this still works).
* Then in the constructor assign css to a styles property i.e. this.styles = css;
* I usually then add styles to elements by string interpolation in the html template e.g. class="${styles.cssStyle}"
*/
let gulp = require('gulp');
let gutil = require('gulp-util');
@AquilaSands
AquilaSands / app.html
Last active October 2, 2018 21:42
Aurelia Carousel Gist
<template>
<require from=./carousel></require>
<h1>${message}</h1>
<div>
<carousel show-nav.bind="true" heading="Morgan Fillman" options.bind="options">
<img repeat.for="i of 5" src="https://morganfillman.space/400/300" >
</carousel>
</div>
<div style="height:50px;"></div>
@AquilaSands
AquilaSands / README.md
Created August 18, 2017 08:18
Aurelia Gist Truncate Custom Attribute
@AquilaSands
AquilaSands / README.md
Last active August 17, 2017 18:14
Aurelia Gist Custom Attribute with View
@AquilaSands
AquilaSands / app.html
Last active September 14, 2017 09:32 — forked from jdanyow/app.html
Aurelia Gist
<template>
<h1>${message}</h1>
</template>