- Because it's farking impossible to figure this out elsewhere
- Where your see AD.x.x.com or AD in this guide, use your domain
- Anywhere you see "RANDOM_PHRASE" it actually needs to be random. Use this page: https://www.random.org/strings/?num=10&len=20&digits=on&upperalpha=on&loweralpha=on&unique=on&format=html&rnd=new
- This guide is released under the DBAD license: https://github.com/SFEley/candy/blob/master/LICENSE.markdown
- This configuration I believe is secure, but I could be wrong. I'd appreciate you letting me know if I didn't do something right.
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:097182a72ed441f55266b961fd8d210a740f4fdf] |
I hereby claim:
- I am exabrial on github.
- I am exabrial (https://keybase.io/exabrial) on keybase.
- I have a public key whose fingerprint is 8716 38A2 1A7F 2C38 0664 7142 0306 A354 336B 4F0D
To claim this, I am signing this object:
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
- They are the people who get things done. Effective Engineers produce results.
To generate a pom.xml file just run gradle writeNewPom
If you want to generate it as pom.xml in the root of the project, replace writeTo("$buildDir/newpom.xml")
with writeTo("pom.xml")
Health Bridge does not, will not, and can not store any of your data in long term storage. Temporal storage such as memory, encrypted temporary files, may be necessary in order to sync information between services. We strive to be a gateway between services, and that's it. You will always own your data, and we will never store it. | |
We will store authentication tokens for each of the connected services in a secured and encrypted database. These tokens are revokable by the user at any point. | |
In addition, HealthBridge will use the lastest version of TLS supported to transport any data between services. We will never roll our own cryptography and stick to industry standard encryption practices. |
<html> | |
<h1>Hello, world</h1> | |
<p> | |
It works | |
</p> | |
</html> |
public class PatchJdk18 { | |
public static void fixJdk18() { | |
try { | |
Field field = HttpURLConnection.class.getDeclaredField("methods"); | |
setFinalStatic(field, new String[] { "GET", "POST", "HEAD", "OPTIONS", "PUT", "DELETE", "TRACE", "PATCH", "KITTENS" }); | |
} catch (Exception e) { | |
throw new RuntimeException(e); | |
} | |
} |
Audio compression is used to reduce the dynamic range of a recording. Dynamic range is the difference between the loudest and softest parts of an audio signal. It was originally used to guard against defects when cutting wax and vinyl phonograph records, but generally became useful as a way of increasing the loudness of an audio recording without achieving distortion.
The goal of most compression applications is to increase the amplitude of the softest parts of a recording, without increasing the amplitude of the loudest parts.
Compressors generally all have the same conceptual parts. However, not all compressors present variable controls for all parts to the user. If you don't see all of your compressor's controls here, there's a chance it either has a fixed value (and no control), or is named something else:
#!/bin/sh | |
# | |
# This hook will run the eclipse code formatter before any commit | |
# to make the source look as it's supposed to look like in the repo. | |
ECLIPSE_HOME=$HOME/eclipse | |
STYLE_FILE=$HOME/org.eclipse.jdt.core.prefs | |
echo "Running pre-commit hook: run-eclipse-formatter---------------------" | |
echo "Will run eclipse formatter, using: $STYLE_FILE" | |
echo "Listing folders to run formatter on… " |