See the new site: https://postgresisenough.dev
| #!/usr/bin/env bash | |
| # Download VMware Workstation for Linux | |
| # Handles legacy versions (12.x - 17.6.3) from Cloudflare CDN cache and | |
| # newer versions (17.6.4+) from Archive.org. | |
| # | |
| # Use '-k' to keep the CDN download file compressed, exiting after download. (Ignored for v17.6.4+) | |
| # Use '-v <Version>' to specify desired version directly. | |
| BASE_URL="https://softwareupdate-prod.broadcom.com/cds/vmw-desktop/" |
| ||aic.recommend.lgtvcommon.com | |
| ||aic.sports.lgtviot.com | |
| ||images.pluto.tv | |
| ||discovery.meethue.com | |
| ||aic.homeprv.lgtvcommon.com | |
| ||aic.lgtviot.com | |
| ||us.emp.lgsmartplatform.com | |
| ||us.lgeapi.com | |
| ||aic.nudge.lgtvcommon.com | |
| ||www.ueiwsp.com |
Out of the box, my SMB performance on macOS 12.3.1 would top out at around 20MB/s in short ~5 second bursts, which was absolutely horrendous, slow to navigate in Finder and slugish to interact with.
Since making these changes, I now get sustained ~80-100MB/s+ and instant Finder navigation which is superb and how things should be out-of-the-box (OOTB)!
May 2023 update: As of Ventura, the SMB issues were just horribly inconsistent and hard to maintain. Something in the combination of Unraid, macOS and SMB just doesn't play nice. I ended up binning NFS/SMB all together and heading to a locally hosted Nextcloud instance for file syncing, then using SFTP/Ansible Git flow for editing files within appdata.
Helper bookmarklets to display all keys and values of a gitlab secrets page in a single element. This way, you can copy them all in one go.
Why? Because otherwise, you'd have to select, copy and paste each key and value manually, which is tedious.
Not a common use case, but I needed this several times, e.g. when requested by project managers, or when you need to replicate deployments or builds on a different system or locally.
| function Get-ColorMode { | |
| <# | |
| .SYNOPSIS | |
| Tests for FullColor (RGB) mode and X11/XTerm (XColor) modes by writing SGR and verifying it with a DECRQSS | |
| Returns "Uknown" if there's no DECRQSS support, or "FullColor" and/or "XColor" otherwise | |
| .NOTES | |
| See the XTerm FAQ for details on why some terminals use ; (to be compatible with a mistake made by XTerm) | |
| https://invisible-island.net/xterm/xterm.faq.html#color_by_number | |
| See the ISO-8613-6 standard for details on the ODA color modes |
| curl https://raw.githubusercontent.com/cleanbrowsing/dnsperftest/master/dnstest.sh | bash | sort -k 22 -n |
Below links provide source, reference link and relevant quote
https://github.com/usnistgov/800-63-3/blob/nist-pages/sp800-63b/sec5_authenticators.md
Verifiers SHOULD NOT impose other composition rules (e.g., requiring mixtures of different character types or prohibiting consecutively repeated characters) for memorized secrets. Verifiers SHOULD NOT require memorized secrets to be changed arbitrarily (e.g., periodically).However, verifiers SHALL force a change if there is evidence of compromise of the authenticator.
| to check if the server works - https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice | |
| stun: | |
| stun.l.google.com:19302, | |
| stun1.l.google.com:19302, | |
| stun2.l.google.com:19302, | |
| stun3.l.google.com:19302, | |
| stun4.l.google.com:19302, | |
| stun.ekiga.net, | |
| stun.ideasip.com, |
| /** | |
| * Simple userland CPU profiler using v8-profiler | |
| * Usage: require('[path_to]/CpuProfiler').init('datadir') | |
| * | |
| * @module CpuProfiler | |
| * @type {exports} | |
| */ | |
| var fs = require('fs'); | |
| var profiler = require('v8-profiler'); |
