All of the following information is based on go version go1.17.1 darwin/amd64.
| GOOS | Out of the Box |
|---|---|
aix |
✅ |
android |
✅ |
| // PROUD BOYS REGIONAL DOMAIN NAMES, CREATED SINCE THE INSURRECTION // | |
| inproudboys.com | Squarespace Domains LLC | Creation Date: 2021-01-09T01:38:07Z | | |
| holycityproudboys.com | Epik Inc. | Creation Date: 2021-01-12T04:26:21Z | | |
| proudboysusa.site | eNom, Inc. | Creation Date: 2021-01-14T01:13:00.0Z | | |
| proudboysus.org | DreamHost LLC | Creation Date: 2021-01-14T01:12:45Z | |
When connecting to a remote server via SSH it is often convenient to use SSH agent forwarding so that you don't need a separate keypair on that server for connecting to further servers.
This is enabled by adding the
ForwardAgent yes
option to any of your Host entries in ~/.ssh/config (or alternatively with the -A option). Don't set this option in a wildcard Host * section since any user on the remote server that can bypass file permissions can now als use keys loaded in your SSH agent. So only use this with hosts you trust.
this is a rough draft and may be updated with more examples
GitHub was kind enough to grant me swift access to the Copilot test phase despite me @'ing them several hundred times about ICE. I would like to examine it not in terms of productivity, but security. How risky is it to allow an AI to write some or all of your code?
Ultimately, a human being must take responsibility for every line of code that is committed. AI should not be used for "responsibility washing." However, Copilot is a tool, and workers need their tools to be reliable. A carpenter doesn't have to
If you're a privacy enthusiast, you probably clicked a link to this post thinking it's going to vindicate you; that it's going to prove how you've been right all along, and "normies just don't care about privacy", despite your best efforts to make them care. That it's going to show how you're smarter, because you understand the threats to privacy and how to fight them.
Unfortunately, you're not right. You never were. Let's talk about why, and what you should do next.
So, first of all, let's dispense with the "normie" term. It's a pejorative term, a name to call someone when they don't have your exact set of skills and interests, a term to use when you want to imply that someone is clueless or otherwise below you. There's no good reason to use it, and it suggests that you're looking down on them. Just call them "people", like everybody else and like yourself - you don't need to turn them into a group of "others" to begin with.
Why does that matter? Well, would *y
| <h1>Usage Template</h1> | |
| <h2>With integer to decimal conversion</h2> | |
| <p> | |
| {% include numf.html number=12345 %} <!-- output is 12.345,00 --><br /> | |
| {% include numf.html number=12345 decimals=0 %} <!-- output is 12.345 --><br /> | |
| {% include numf.html number=12345 decimals=4 %} <!-- output is 12.345.0000 --><br /> | |
| {% include numf.html number=12345 ds='.' ts=',' %} <!-- output is 12,345.00 --><br /> | |
| </p> |
| {% include numberWithCommas.html number=1 %} | |
| {% include numberWithCommas.html number=12 %} | |
| {% include numberWithCommas.html number=123 %} | |
| {% include numberWithCommas.html number=1234 %} | |
| {% include numberWithCommas.html number=12345 %} | |
| {% include numberWithCommas.html number=123456 %} | |
| {% include numberWithCommas.html number=1234567 %} | |
| {% include numberWithCommas.html number=12345678 %} | |
| {% include numberWithCommas.html number=123456789 %} | |
| {% include numberWithCommas.html number=1234567890 %} |
| #!/bin/bash | |
| # Example: | |
| # > echo "key1 value1 key2 value2" | ./key_value_pipe_to_json.sh | |
| # {'key1': value1, 'key2': value2} | |
| arr=(); | |
| while read x y; | |
| do |
| import numpy as np | |
| from scipy.stats import entropy | |
| from math import log, e | |
| import pandas as pd | |
| import timeit | |
| def entropy1(labels, base=None): | |
| value,counts = np.unique(labels, return_counts=True) | |
| return entropy(counts, base=base) |