- Remove desktop background (if your company enforces one)
- If you search in the start menu for Ease of Access, you'll see a result for Ease of Access brightness setting.
- Once that settings page has been opened, if you scroll down to the bottom, you’ll see an option to Show desktop background image. If you toggle this to off, it will set the background to the default black.
I want to copy this layout
https://dev-to-uploads.s3.amazonaws.com/i/71w6824uld2tn1ujyc5i.png
This is a cheat sheet for how to perform various actions to ZSH, which can be tricky to find on the web as the syntax is not intuitive and it is generally not very well-documented.
Description | Syntax |
---|---|
Get the length of a string | ${#VARNAME} |
Get a single character | ${VARNAME[index]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def send_email(sender, recipient, aws_region, subject, file_name): | |
# The email body for recipients with non-HTML email clients. | |
BODY_TEXT = "Hello,\r\nPlease find the attached file." | |
# The HTML body of the email. | |
BODY_HTML = """\ | |
<html> | |
<head></head> | |
<body> | |
<h1>Hello!</h1> | |
<p>Please find the attached file.</p> |
Hello and welcome to my Shortcuts Catalog!
This is a public resource designed to help people get started with Siri Shortcuts and the Shortcuts app.
It’s made up of the Shortcuts Library, a collection of over 125+ shortcuts grouped into folders, and the Action Directory, a documentation of 125+ of the actions in the Shortcuts app used to build shortcuts.
Enjoy!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Buy A PS5 | |
// @version 1.0.0 | |
// @description A userscript that collapses markdown headers | |
// @author Bruce Bentley <[email protected]> (https://brucebentley.io) | |
// @copyright 2021, Bruce Bentley (https://github.com/brucebentley) | |
// @license MIT; https://opensource.org/licenses/MIT | |
// @namespace https://github.com/brucebentley | |
// @description | |
// @match https://www.target.com/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# path to sonarscanner for msbuild | |
$SonarQubeRunner = $(Resolve-Path ".\SonarScanner.MSBuild.exe").Path; | |
# sonar qube token for auth | |
$sonarQubeToken = ""; | |
# sonar server hostname | |
$sonarQubeHostName = ""; | |
$sonarQubeScheme = "https"; | |
$sonarQubeUrl = "$sonarQubeScheme://$sonarQubeHostName"; | |
# sonarqube project name | |
$sonarQubeProjectName = ""; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Variables used by Scriptable. | |
// These must be at the very top of the file. Do not edit. | |
// icon-color: deep-gray; icon-glyph: file-code; | |
// To use this script, you need to configure an OAuth App on GitHub. | |
// Follow the instructions on the link below to create your OAuth App. | |
// | |
// When you are asked to put in a redirect URL, you should put the URL for running this script in Scriptable. Assuming the name of this script is "Create Gist", the URL is scriptable:///run?scriptName=Create%20Gist | |
// | |
// https://developer.github.com/apps/building-oauth-apps/creating-an-oauth-app/ | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const initialData = { | |
servers: [ | |
{ | |
url: 'https://1.example.com/', | |
title: 'Server 1', | |
online: null, | |
}, | |
{ | |
url: 'https://2.example.com/', | |
title: 'Server 2', |