Note: Office only
mso-ansi-font-size: large | larger | <length> | medium | <percentage> | small | smaller | x-large | x-small | xx-large | xx-small
| This list was compiled from https://web.archive.org/web/20230911135706/https://docs.docker.com/desktop/release-notes/, retrieved on 2024-05-24 | |
| It appears links for later updates than 4.22.1 are currently (as of early Aug 2024) being kept up to date on https://docs.docker.com/desktop/release-notes, I'm not going to continuously update this but others may in the comments below, so check that link or the comments if you need a later version than 4.22.1. | |
| The information may not be correct in all cases, or may have changed since archive.org archived the page. At time of posting, I spot-checked a few links and they appeared to be good, but really, all I've done is copied, pasted, and visually formatted the information I found on archive.org, so no warrantee that it's good. | |
| If the download links don't work, sometimes archive.org has the download archive, and you can try adding https://web.archive.org/web/20230911135706/ to the beginning of the URL. For instance, as of this writing, the 4.22.1 Windows download i |
| /* @flow */ | |
| // The following three lines are from https://gist.github.com/nmn/b20a92e848c68d88f7fdb8353c71b1ca | |
| type $Object<V> = { +[ key : string] : V } | |
| type $ObjectValues<V, O : $Object<V>> = V | |
| type $Values<O: Object> = $ObjectValues<*, O> | |
| type Enumerables = { [ key : string ] : any } | |
| const UserRoles : Enumerables = { |
| [ -s $HOME/.nvm/nvm.sh ] && . $HOME/.nvm/nvm.sh # This loads NVM | |
| function node { | |
| rawnode=$(which node) | |
| icu4cdata=$(dirname $(dirname $rawnode))/lib/node_modules/icu4c-data | |
| [[ -d $icu4cdata ]] || npm install -g icu4c-data@$($rawnode -e ' | |
| console.log((v => v.icu_ver_major + v.icu_endianness)( | |
| process.config.variables));') | |
| NODE_ICU_DATA=$icu4cdata $rawnode "$@" | |
| } |
| import android.app.Activity; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.content.pm.ResolveInfo; | |
| import android.content.res.AssetFileDescriptor; | |
| import android.database.Cursor; | |
| import android.graphics.Bitmap; | |
| import android.graphics.BitmapFactory; | |
| import android.graphics.Matrix; | |
| import android.media.ExifInterface; |
| /** | |
| * Bitwise Mathematics Utilities | |
| * | |
| * A collection of fast bitwise operations for integer mathematics. | |
| * These functions prioritize performance over readability and should be used | |
| * when micro-optimizations are critical (game engines, real-time applications). | |
| * | |
| * References: | |
| * - http://michalbe.blogspot.com.br/2013/03/javascript-less-known-parts-bitwise.html | |
| * - http://jsperf.com/bitwise-vs-math-object |