This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension String { | |
var javaScriptEscapedString: String { | |
// Because JSON is not a subset of JavaScript, the LINE_SEPARATOR and PARAGRAPH_SEPARATOR unicode | |
// characters embedded in (valid) JSON will cause the webview's JavaScript parser to error. So we | |
// must encode them first. See here: http://timelessrepo.com/json-isnt-a-javascript-subset | |
// Also here: http://media.giphy.com/media/wloGlwOXKijy8/giphy.gif | |
let str = self.replacingOccurrences(of: "\u{2028}", with: "\\u2028") | |
.replacingOccurrences(of: "\u{2029}", with: "\\u2029") | |
// Because escaping JavaScript is a non-trivial task (https://github.com/johnezang/JSONKit/blob/master/JSONKit.m#L1423) | |
// we proceed to hax instead: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: statsd-exporter | |
namespace: <namespace> | |
spec: | |
strategy: | |
rollingUpdate: | |
maxSurge: 25% | |
maxUnavailable: 25% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function (Alpine) { | |
const recognizer = new window.SpeechRecognition() | |
recognizer.lang = navigator.language | |
recognizer.continuous = false | |
recognizer.interimResults = true | |
Alpine.store('speechRecognizer', { | |
state: 'stopped', | |
error: null, | |
api: recognizer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kubectl get secrets -o json | \ | |
jq -r '.items[].metadata.name' | \ | |
while read i; do kubectl get secret $i -o json > $i.json; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule HTTPDownloader do | |
@moduledoc """ | |
Stream wrapper around HTTPoison.get!(...) | |
Source: https://elixirforum.com/t/how-to-stream-file-from-aws-to-client-through-elixir-backend/20693/15?u=bfolkens | |
HTTPDownloader.stream!(url_to_my_s3_file) | |
|> Enum.each(fn chunk -> send_chunk_to_client(client_conn, chunk) end) | |
""" | |
def stream!(url) do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Util.Enum do | |
@doc ~S""" | |
Collates a list of lists in sequence until the longest | |
list is exhausted. | |
## Examples | |
iex> Util.Enum.collate([[1, 2, 3], [1, 2], [1, 2, 3, 4]]) | |
[1, 1, 1, 2, 2, 2, 3, 3, 4] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH RECURSIVE pg_inherit(inhrelid, inhparent) AS | |
(select inhrelid, inhparent | |
FROM pg_inherits | |
UNION | |
SELECT child.inhrelid, parent.inhparent | |
FROM pg_inherit child, pg_inherits parent | |
WHERE child.inhparent = parent.inhrelid), | |
pg_inherit_short AS (SELECT * FROM pg_inherit WHERE inhparent NOT IN (SELECT inhrelid FROM pg_inherit)) | |
SELECT table_schema | |
, TABLE_NAME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
[ -z "$3" ] && echo "Usage: $0 host user password" >&2 && exit 1 | |
dt="tmp_$RANDOM$RANDOM" | |
mysql -h $1 -u $2 -p$3 -ABNe "create database $dt;" | |
[ $? -ne 0 ] && echo "Error: $0 terminating" >&2 exit 1 | |
echo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Test for now - eventually use this to continue | |
const mutationObserver = new MutationObserver(mutations => { | |
mutations.forEach(mutation => { | |
console.debug(mutation) | |
}) | |
}) | |
mutationObserver.observe(elementToWatch, { | |
attributes: true, | |
characterData: true, |
NewerOlder