###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| docker run --rm -ti -v /tmp:/tmp postgres:alpine pg_dump -U postgres -h 123.45.67.89 -p 15432 -f /tmp/dump.sql -F t |
| https://wiki.archlinux.org/index.php/NetworkManager#/etc/resolv.conf | |
| sudo nvim /etc/NetworkManager/conf.d/dns.conf | |
| ``` | |
| [main] | |
| dns=none | |
| ``` |
| #!/bin/bash | |
| # /usr/bin/blurlock | |
| image_file=/tmp/screen_lock.png | |
| resolution=$(xdpyinfo | grep dimensions | awk '{print $2}') | |
| filters='noise=alls=10,scale=iw*.05:-1,scale=iw*20:-1:flags=neighbor' | |
| ffmpeg -y -loglevel 0 -s "$resolution" -f x11grab -i $DISPLAY -vframes 1 \ | |
| -vf "$filters" "$image_file" | |
| i3lock -e -i "$image_file" |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| dnf copr enable -y jdoss/wireguard | |
| dnf update | |
| dnf distro-sync -y | |
| dnf install -y wireguard-dkms | |
| dnf install -y wireguard-tools | |
| dnf install -y git | |
| dnf install -y zsh | |
| dnf install -y tmux |
| tree --prune -P something.elm |
| import Html exposing (Attribute) | |
| import Json.Decode as Json | |
| onChange : (String -> msg) -> Attribute msg | |
| onChange handler = | |
| on "change" <| Json.map handler <| Json.at ["target", "value"] Json.string |