Skip to content

Instantly share code, notes, and snippets.

View aj-stein-nist's full-sized avatar
👋
After 23 August 2024, I leave NIST and I will disable this account.

A.J. Stein aj-stein-nist

👋
After 23 August 2024, I leave NIST and I will disable this account.
View GitHub Profile
@nikitawootten-nist
nikitawootten-nist / oscal_run_lighthouse.sh
Last active February 9, 2023 22:10
Lighthouse performance test harness
#!/usr/bin/env bash
# OSCAL Performance Test Scipt
#
# The following packages are required for this script to work:
# - jq <https://stedolan.github.io/jq/>
# - Lighthouse <https://www.npmjs.com/package/lighthouse>
#
# NOTE: on MacOS, you may get a dialog box asking if "node can make external web requests"
set -Eeuo pipefail
@Manouchehri
Manouchehri / rfc3161.txt
Last active September 13, 2024 03:41
List of free rfc3161 servers.
https://rfc3161.ai.moda
https://rfc3161.ai.moda/adobe
https://rfc3161.ai.moda/microsoft
https://rfc3161.ai.moda/apple
https://rfc3161.ai.moda/any
http://rfc3161.ai.moda
http://timestamp.digicert.com
http://timestamp.globalsign.com/tsa/r6advanced1
http://rfc3161timestamp.globalsign.com/advanced
http://timestamp.sectigo.com
@sumeetpareek
sumeetpareek / packer-aws-ami-template.json
Last active December 21, 2021 15:46
packer template to create aws ami using ansible provisioner
{
"variables": {
"aws_access_key": "", // This helps me connect to AWS
"aws_secret_key": ""
},
"builders": [{
"type": "amazon-ebs",
"access_key": "{{user `aws_access_key`}}",
"secret_key": "{{user `aws_secret_key`}}",
"region": "us-east-1",
@maxwelleite
maxwelleite / ttf-vista-fonts-installer.sh
Last active July 10, 2024 18:25
Script to install Microsoft Vista TrueType Fonts (TTF) aka Microsoft’s ClearType fonts on Ubuntu distros
#!/bin/bash
# Author: Maxwel Leite
# Website: http://needforbits.wordpress.com/
# Description: Script to install Microsoft Vista TrueType Fonts (TTF) aka Microsoft’s ClearType fonts on Ubuntu distros
# Microsoft added a group of new "ClearType Fonts" to Windows with Windows Vista and Office 2007.
# These fonts are named Constantia, Corbel, Calibri, Cambria (and Cambria Math), Candara, and Consolas.
# Calibri became the default font on Microsoft Word 2007, and it’s still the default font on Word 2016 today.
# Dependencies: wget, fontforge and cabextract
# Note: Microsoft no longer provides the PowerPoint Viewer 2007 (v12.0.4518.1014) or any version anymore for download
# Tested: Ubuntu Saucy/Trusty/Xenial/Bionic