This gist contains lists of modules available in
in AWS Lambda.
| The regex patterns in this gist are intended to match any URLs, | |
| including "mailto:foo@example.com", "x-whatever://foo", etc. For a | |
| pattern that attempts only to match web URLs (http, https), see: | |
| https://gist.github.com/gruber/8891611 | |
| # Single-line version of pattern: | |
| (?i)\b((?:[a-z][\w-]+:(?:/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?«»“”‘’])) |
| find . -name \.AppleDouble -exec rm -rf {} \; |
| #! /usr/bin/env ruby | |
| require 'tmpdir' | |
| def fixed?(fn) fn =~ /\.searchable\.pdf/; end | |
| def searchable_fn(fn) | |
| return fn if fixed?(fn) | |
| "#{File.dirname(fn)}/#{File.basename(fn, File.extname(fn))}.searchable.pdf" | |
| end |
| -- | |
| -- open currently open URL in Safari in Chrome | |
| -- forked from https://gist.github.com/3151932 | |
| -- | |
| property theURL : "" | |
| tell application "Safari" | |
| set theURL to URL of current tab of window 1 | |
| end tell | |
| if appIsRunning("Google Chrome") then |
| #!/usr/bin/php | |
| <?php | |
| date_default_timezone_set('UTC'); | |
| /** | |
| * oAuth settings from http://dev.netatmo.com/dev/listapps | |
| */ | |
| define('APP_ID', ''); | |
| define('APP_SECRET', ''); | |
| define('USERNAME', ''); | |
| define('PASSWORD', ''); |
| The regex patterns in this gist are intended only to match web URLs -- http, | |
| https, and naked domains like "example.com". For a pattern that attempts to | |
| match all URLs, regardless of protocol, see: https://gist.github.com/gruber/249502 | |
| License: https://opensource.org/license/bsd-3-clause | |
| # Single-line version: | |
| (?i)\b((?:https?:(?:/{1,3}|[a-z0-9%])|[a-z0-9.\-]+[.](?:com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps |
This gist contains lists of modules available in
in AWS Lambda.
| #!/bin/bash | |
| LATEST_RELEASE=$(curl https://api.github.com/repos/hashicorp/terraform/releases/latest | jq --raw-output '.tag_name' | cut -c 2-) | |
| if [[ ! -e ${LATEST_RELEASE} ]]; then | |
| echo "Installing Terraform ${LATEST_RELEASE}..." | |
| rm terraform-* | |
| rm terraform | |
| wget https://releases.hashicorp.com/terraform/${LATEST_RELEASE}/terraform_${LATEST_RELEASE}_linux_amd64.zip | |
| unzip terraform_${LATEST_RELEASE}_linux_amd64.zip | |
| rm terraform_${LATEST_RELEASE}_linux_amd64.zip |
Security Advisories / Bulletins / vendors Responses linked to Log4Shell (CVE-2021-44228)