Name: Franklin Gothic
Heading Font: Franklin Gothic Demi
Body Font: Franklin Gothic Book
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
| [CmdletBinding()] | |
| Param( | |
| [Parameter()] | |
| [string]$path = ".\computer-info.txt" | |
| ) | |
| $bios = Get-CimInstance Win32_BIOS | Select-Object -Property Manufacturer,Name,SerialNumber,Version | |
| $os = Get-CimInstance Win32_OperatingSystem | Select-Object -Property Version,BuildNumber,RegisteredUser,SerialNumber | |
| $qfe = Get-CimInstance Win32_QuickFixEngineering | Select-Object -Property Description,HotFixID,InstalledOn | |
| $products = Get-CimInstance Win32_Product | Select-Object -Property Name,Vendor,Version,Caption | Format-List |
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
| { | |
| "globals" : | |
| { | |
| "alwaysShowTabs" : true, | |
| "defaultProfile" : "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
| "initialCols" : 120, | |
| "initialRows" : 30, | |
| "keybindings" : | |
| [ | |
| { |
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
| iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI" |
yarn add -D @fortawesome/fontawesome-freeangular.json
{
"projects": {
"web-app": {
"architect": {For an example application that integrates this process, see my FullstackOverview repo on GitHub. The code in this example is taken directly from this app.
This component allows you have a custom styled file upload element.
This will provide an example of integrating Active Directory authentication in an ASP.NET Core app.
Note, you'll need to be running on a Windows domain with Visual Studio debugging in IIS Express for this to work.
In launchSettings.json, you'll want to modify iisSettings by turning on windowsAuthentication:
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
| // A core service function | |
| generateInputObservable = (input: ElementRef): Observable<string> => | |
| fromEvent(input.nativeElement, 'keyup') | |
| .pipe( | |
| debounceTime(300), | |
| map((event: any) => event.target.value), | |
| distinctUntilChanged() | |
| ); | |
| // An API service |
