dig o-o.myaddr.l.google.com txt @ns1.google.com +short
# OR
nslookup -type=txt o-o.myaddr.l.google.com ns1.google.com| /** | |
| * Script to transfer QuPath objects from one image to another, applying an AffineTransform to any ROIs. | |
| * | |
| * This is a based upon the script I posted on the epic forum thread https://forum.image.sc/t/interactive-image-alignment/23745/9?u=petebankhead | |
| * It has been updated for QuPath v0.2.0 (and made quite a lot shorter along the way). | |
| * | |
| * @author Pete Bankhead | |
| */ | |
| // SET ME! Define transformation matrix |
Written by Zehao Sun on Jun 12, 2020 (Last revised on Aug 13, 2020)
This article is licensed under a Creative Commons Attribution-ShareAlike 4.0 License.
| #!/usr/bin/env bash | |
| # Author: Aeghn | |
| # A script for buffer switching between emacs buffers, firefox tabs and other windows. | |
| # dependences: jq i3 qutebrowser emacs | |
| # set -eo pipefail | |
| # QUTEBROWSER_SESSION_FILE="/tmp/qutebrowser_buffers_zsbd" |
⚠️ Note 2023-01-21
Some things have changed since I originally wrote this in 2016. I have updated a few minor details, and the advice is still broadly the same, but there are some new Cloudflare features you can (and should) take advantage of. In particular, pay attention to Trevor Stevens' comment here from 22 January 2022, and Matt Stenson's useful caching advice. In addition, Backblaze, with whom Cloudflare are a Bandwidth Alliance partner, have published their own guide detailing how to use Cloudflare's Web Workers to cache content from B2 private buckets. That is worth reading,
| /** | |
| * Create a region annotation with a fixed size in QuPath, based on the current viewer location. | |
| * | |
| * @author Pete Bankhead | |
| */ | |
| import qupath.lib.objects.PathAnnotationObject | |
| import qupath.lib.objects.classes.PathClassFactory | |
| import qupath.lib.roi.RectangleROI | |
| import qupath.lib.scripting.QPEx |
Update: As of 11 January 2022, git.io no longer accepts new URLs.
Command:
curl https://git.io/ -i -F "url=https://github.com/YOUR_GITHUB_URL" -F "code=YOUR_CUSTOM_NAME"URLs that can be created is from:
https://github.com/*https://*.github.com
| Scripts mostly taken from Pete, and also from the forums. For easy access and reference. | |
| TOC | |
| Alignment: Several scripts to assist in alignment as of M9. Store scripts make files using the Affine transformation while | |
| TransferObjects uses the stored file in the Affine folder with the current image name to move objects into it. | |
| The final result is that one set of files can be generated for the transforms, and those transforms can be accessed to move objects | |
| back and forth between the images. | |
| Change annotations into Cell objects.groovy - Converts annotations into PathCellObjects, which allows certian functions to work within |
