Thanks for saying you like my camera set up! As you asked, here are the deets. There are cheaper ways to achieve some of the same results and possibly better ways to - however this is what I ended up with.
This file contains hidden or 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
[CollectionDefinition(nameof(PlaywrightFixture))] | |
public class SharedPlaywrightCollection : ICollectionFixture<PlaywrightFixture> {} | |
// ReSharper disable once ClassNeverInstantiated.Global | |
public class PlaywrightFixture : IAsyncLifetime | |
{ | |
public async Task InitializeAsync() | |
{ | |
PlaywrightInstance = await Playwright.CreateAsync(); | |
Browser = await PlaywrightInstance.Chromium.LaunchAsync(); |
This file contains hidden or 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
private static int _bufferHeight; | |
private static int _bufferY; | |
public static async Task Main() | |
{ | |
_bufferWidth = Console.WindowWidth; | |
_bufferHeight = Console.WindowHeight; | |
_bufferY = _bufferHeight; | |
Console.SetBufferSize(_bufferWidth, _bufferHeight * 2); |
This file contains hidden or 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
# ???? Blammo ???? | |
Get-ChildItem | gh gist create | |
#region issues | |
cd C:\github\dbatools | |
gh issue list | |
gh issue view 6886 | |
# easy to understand visuals and navigation - RUN THIS ON PS CORE! |
This file contains hidden or 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
# What protocol to use when performing git operations. Supported values: ssh, https | |
git_protocol: https | |
# What editor gh should run when creating issues, pull requests, etc. If blank, will refer to environment. | |
editor: | |
# When to interactively prompt. This is a global config that cannot be overriden by hostname. Supported values: enabled, disabled | |
prompt: enabled | |
# A pager program to send command output to. Example value: less | |
pager: | |
# Aliases allow you to create nicknames for gh commands | |
aliases: |
This file contains hidden or 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 your oh-my-zsh installation. | |
export ZSH="/Users/brett.miller/.oh-my-zsh" | |
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin" | |
# Set name of the theme to load | |
ZSH_THEME="powerlevel9k/powerlevel9k" | |
DISABLE_AUTO_TITLE="true" | |
# Plugins |
This file contains hidden or 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
export HISTCONTROL='ignorespace:ignoredups' | |
export HISTIGNORE='bg:fg:clear:exit:h:history:l:l[ls]:pwd' | |
export HISTSIZE=10000 | |
export AWS_PAGER= | |
export EDITOR=vi | |
export KUBECONFIG=$(find ~/.kube -maxdepth 1 -type f 2>/dev/null | grep -E 'config[^.]*$' | xargs -I{} -r echo -n ':{}') | |
export PATH=$HOME/.dotnet/tools:$PATH | |
alias h='history' |
This file contains hidden or 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
Import-Module -Name Toolbox | |
Import-Module -Name Microsoft.PowerShell.UnixCompleters | |
Import-Module -Name Terminal-Icons | |
function BackOne { | |
Set-Location .. | |
} | |
function BackTwo { | |
Set-Location ../.. | |
} |
This file contains hidden or 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
# Replace the "❯" symbol in the prompt with "➜" | |
[character] | |
symbol = "➜" | |
# Configure the number of directories to truncate in the current path | |
[directory] | |
truncation_length = 3 | |
truncate_to_repo = true | |
style = "blue" |
This file contains hidden or 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
name: Standard | |
on: | |
pull_request: | |
paths: | |
- '*.js' | |
jobs: | |
lint: | |
name: lint |
NewerOlder