Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
$pinvokes = @' | |
[DllImport("Kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)] | |
[return: MarshalAs(UnmanagedType.Bool)] | |
public extern static bool GetVolumeInformationW( | |
string rootPathName, | |
System.Text.StringBuilder volumeNameBuffer, | |
int volumeNameSize, | |
out uint volumeSerialNumber, | |
out uint maximumComponentLength, | |
out uint fileSystemFlags, |
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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
; Keys on dell laptop: LCtrl, Fn, LWin, LAlt | |
; Result: LWin, Fn, LAlt, LCtrl | |
; ..to get Ctrl next to spacebar so most Cmd key bindings are where the mac user muscle memory says they should be :) | |
LWin::LAlt | |
LAlt::LCtrl |
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
<Page | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Background="Wheat"> | |
<Grid> | |
<Canvas Width="16" Height="16" SnapsToDevicePixels="True" ClipToBounds="True"> | |
<Canvas.Resources> | |
<SolidColorBrush x:Key="LevelBrush" Color="White"/> | |
<SolidColorBrush x:Key="NoLevelBrush" Color="Transparent"/> | |
<SolidColorBrush x:Key="LevelBarBorder" Color="Gray"/> | |
</Canvas.Resources> |
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: Build | |
on: [push, pull_request] | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: |
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
param( | |
$owner, | |
$repository_name, | |
$databaseid | |
) | |
gh api --method DELETE -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" /repos/$owner/$repository_name/deployments/$databaseid |
OlderNewer