THESE INSTRUCTIONS ARE CRITICAL!
They dramatically improve the quality of the work you create.
When asked to implement any feature or make changes, ALWAYS start by asking: "Should I create a Spec for this task first?"
import json | |
import base64 | |
import os | |
# make sure the output directory exists before running! | |
folder = os.path.join(os.getcwd(), "imgs") | |
with open("scr.har", "r") as f: | |
har = json.loads(f.read()) |
Last revised on [DATE]
[COMPANY] operates the [SERVICE] service, which we hope you use. If you use it, please use it responsibly. If you don't, we'll have to terminate your account.
For paid accounts, you'll be charged on a monthly basis. You can cancel anytime, but there are no refunds.
Example inputs:
Variable | Value |
---|---|
key | the shared secret key here |
message | the message to hash here |
Reference outputs for example inputs above:
| Type | Hash |
$ ssh -A vm
$ git config --global url."[email protected]:".insteadOf "https://github.com/"
$ cat ~/.gitconfig
[url "[email protected]:"]
insteadOf = https://github.com/
$ go get github.com/private/repo && echo Success!
Success!
defmodule StreamIterator.Messages do | |
@moduledoc """ | |
The Stream Iterator can be used to consume items from an Elixir Stream incrementally. | |
## Examples | |
### Infinite Streams | |
When used on infinite streams such as the ones returned by `Stream.cycle/1`, the Stream | |
Iterator will always return the next item. |
DO $$ | |
BEGIN | |
IF NOT EXISTS(SELECT * | |
FROM information_schema.columns | |
WHERE table_name='my_table' and column_name='my_column') | |
THEN | |
ALTER TABLE "public"."my_table" RENAME COLUMN "my_column" TO "my_new_column"; | |
END IF; | |
END $$; |
Check requirements at https://pgmodeler.io/installation.
You will need Qt 5.9.x installed, full XCode installed, and homebrew installation of postgres and openssl.
The example below is v10.5 of PG and v5.9.6 of Qt, modify accordingly. Also, replace {{USERNAME}}
with you Mac username.
The installation is the same as the instructions at the link above. There are a few path differences due to homebrew installation locations.
Blogs
Books
Official Documentation