In Windows PowerShell do the following:
$folderPath = "$ENV:LOCALAPPDATA\Microsoft\Windows\WinX\Group3"
$adminFilePath = Join-Path $folderPath "00 - Windows Terminal.lnk"
$normalFilePath = Join-Path $folderPath "00a - Windows Terminal.lnk"
class FlashAsyncToken(AbortToken): | |
def __init__(self, color, times=1, time_on=0.1, time_off=0.1, abort_token=None): | |
super().__init__() | |
self.color = color | |
self.counter = 0 | |
self.times = times | |
self.time_on = time_on | |
self.time_off = time_off | |
self.parent = abort_token | |
self.__alarm = Timer.Alarm(self.__light_on, us=5, periodic=False) |
#define LED_WHITE PIN_A1 | |
#define LED_GREEN PIN_A0 | |
void setup() { | |
pinMode(LED_WHITE, OUTPUT); | |
pinMode(LED_GREEN, OUTPUT); | |
} | |
void loop() { | |
digitalWrite(LED_WHITE, HIGH); |
root = true | |
# Defaults | |
[*] | |
indent_size = 4 | |
indent_style = space | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
[*.{xml,js,ts,json,*proj,targets,html,props,nim,nimble,nim.cfg}] |
<?xml version="1.0" encoding="utf-8"?> | |
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>netcoreapp2.1</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="AWSSDK.DynamoDBv2" Version="3.3.100.5" /> |
<?xml version="1.0" encoding="utf-8"?> | |
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>netcoreapp2.2</TargetFramework> | |
<UserSecretsId>0864c15e-1de4-426a-97df-a43cb2700536</UserSecretsId> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.2.4" /> | |
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="2.2.0" /> |
root = true | |
# Defaults | |
[*] | |
indent_size = 4 | |
indent_style = space | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
[*.{xml,json,js,ts,jsx,tsx,vue,css,styl,*proj,targets,html,props,yml,nim,nimble,nim.cfg,wsdl,wadl,cmake}] |