For educational reasons I've decided to create my own CA. Here is what I learned.
Lets get some context first.
Links from https://www.apple.com/final-cut-pro/trial/ | |
Release history https://en.wikipedia.org/wiki/Final_Cut_Pro_X#Release_history | |
Final Cut Pro 10.1.3 | |
https://secure-appldnld.apple.com/Final_Cut_Pro_X/031-05296.20140814.VRR4r/FinalCutProTrial10.1.3.dmg | |
Final Cut Pro 10.1.4 | |
https://secure-appldnld.apple.com/Final_Cut_Pro_X/031-02980.20141202.Jgt44/FinalCutProTrial10.1.4.dmg | |
Final Cut Pro 10.2 |
(async () => { | |
/* | |
Get the encoded message, encrypt it and display a representation | |
of the ciphertext in the "Ciphertext" element. | |
*/ | |
async function encrypt(key, plainText, iv) { | |
let encoded = new TextEncoder().encode(plainText); | |
#!/bin/bash | |
# 1 = VMware Tools ISO is mounted from vSphere | |
# 2 = Download VMware Tools (assumes you can connect to internet) | |
INSTALL_METHOD=2 | |
# Thanks to Rich Trouton for tip on Tools being available online | |
VMWARE_TOOLS_DOWNLOAD_URL=http://softwareupdate.vmware.com/cds/vmw-desktop/fusion/11.1.0/13668589/packages/com.vmware.fusion.tools.darwin.zip.tar | |
You can use in two ways.
Directly as the pre-commit hook in your .git/hooks folder.
With Husky by updating your package.json with:
"husky": {
defaults | |
timeout connect 5s | |
timeout client 24h | |
timeout server 24h | |
global | |
log /dev/log local0 | |
frontend ssl | |
log global |
2017-03-03 fm4dd
The gcc compiler can optimize code by taking advantage of CPU specific features. Especially for ARM CPU's, this can have impact on application performance. ARM CPU's, even under the same architecture, could be implemented with different versions of floating point units (FPU). Utilizing full FPU potential improves performance of heavier operating systems such as full Linux distributions.
These flags can both be used to set the CPU type. Setting one or the other is sufficient.
OPTS='' | |
## nginx | |
curl -OL http://nginx.org/download/nginx-1.19.3.tar.gz | |
tar -xf nginx-*.tar.gz | |
## pcre | |
curl -OL https://ftp.pcre.org/pub/pcre/pcre-8.44.tar.gz | |
tar -xf pcre-*.tar.gz | |
OPTS="$OPTS --with-pcre=../pcre-8.44/" |
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath 'net.sf.proguard:proguard-gradle:5.3.3' | |
} | |
} | |
ext { |
var isoCountries = { | |
'AF' : 'Afghanistan', | |
'AX' : 'Aland Islands', | |
'AL' : 'Albania', | |
'DZ' : 'Algeria', | |
'AS' : 'American Samoa', | |
'AD' : 'Andorra', | |
'AO' : 'Angola', | |
'AI' : 'Anguilla', | |
'AQ' : 'Antarctica', |