Skip to content

Instantly share code, notes, and snippets.

View ukcoderj's full-sized avatar

Justin ukcoderj

View GitHub Profile
// backup copy of https://github.com/denniske/ngx-translate-multi-http-loader
import {HttpClient} from "@angular/common/http";
import {TranslateLoader} from "@ngx-translate/core";
import {Observable, forkJoin, of} from "rxjs";
import {catchError, map} from "rxjs/operators";
import merge from 'deepmerge';
export interface ITranslationResource {
@ukcoderj
ukcoderj / combobox-component.html
Last active May 20, 2021 13:58
Angular combobox (a box you can type in, or select an option from - not a typeahead!)
<div class="cbx-container">
<div class="input-group">
<!--combobox style view -->
<input class="form-control cbx-input" type="text"
autocomplete="off"
(click)="closeOptionsDialog()"
[(ngModel)]="state.displayValue"
(input)="onValueTypedChange($event.target.value)"
#inputBox="ngModel" />
<button type="button" class=" btn btn-outline-dark cbx-button"
@ukcoderj
ukcoderj / state-machine-page.component.html
Created April 26, 2021 11:05
Angular XState State Machine - Using Events
<h3>State Machine</h3>
<button (click)="moveBack()">Back</button>
<button (click)="moveNext()">Next</button>
<p>State: {{currentState}}</p>
@ukcoderj
ukcoderj / state-machine-page.component.html
Created April 26, 2021 10:01
Angular XState State Machine - Queries State - Doesn't use the event
<h3>State Machine</h3>
<button (click)="moveBack()">Back</button>
<button (click)="moveNext()">Next</button>
<p>State: {{currentState}}</p>
@ukcoderj
ukcoderj / IsDirectoryTraversing.cs
Last active March 25, 2021 05:07
C# Helper To See If There Is A Directory Traversal Attempt on a File
/// <summary>
/// This is to guage whether someone is trying a directory traversal attack.
/// I.e. they should be requesting 'somefilename.pdf'
/// but they request '../anotherlocation/someotherfilename.pdf
/// </summary>
/// <param name="fileName">The file name to check</param>
/// <returns></returns>
public bool IsDirectoryTraversing(string fileName)
{
bool isTraversing = false;
@ukcoderj
ukcoderj / Download.service.ts
Last active November 5, 2020 14:55
Download a blob held in azure to an angular client
import { Injectable, EventEmitter } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable, throwError, of } from 'rxjs';
import { catchError, tap } from 'rxjs/operators';
import { saveFile, saveAs } from 'file-saver'; // npm install file-saver
import { Base64 } from 'js-base64'; // npm install js-base64
import { DownloadFile } from '../models/dowload/download-file';
@Injectable({
providedIn: 'root'
@ukcoderj
ukcoderj / angular-enum-select
Created October 26, 2020 09:04
Angular Select In Child Component Bound to Enumeration
// CHILD COMPONENT HTML
<select id="upload_type_select" #uploadTypeSelect
class="form-control"
(change)="onUploadTypeChange(uploadTypeSelect.value)">
<option *ngFor="let upType of uploadTypesMapping"
[value]="upType.value"
[selected]="upType.value === uploadDataType">
{{ upType.type }}
</option>
@ukcoderj
ukcoderj / consolewithusersecrets.cs
Created May 5, 2020 13:09
.NET Core Console Accessing User Secrets
using Microsoft.Extensions.Configuration;
using System;
namespace TestSecrets
{
// NuGet
//
// Microsoft.Extensions.Configuration
// Microsoft.Extensions.Configuration.UserSecrets
@ukcoderj
ukcoderj / service-fabric-fix-local-cluster.ps1
Created December 19, 2019 14:58
Fix a Broken Local Service Fabric Cluster
#
# WARNING: YOU MUST STOP 'SERVICE FABRIC HOST SERVICE' IN SERVICES FIRST
# IF THE APPLICATION IS STUCK IN 'STARTING', RESTART YOUR MACHINE
#
# This script will completely reset the local cluster
#
Remove-Item 'C:\SfDevCluster' -Recurse -Force -ErrorAction Stop
New-Item -ItemType directory -Path 'C:\SfDevCluster'
@ukcoderj
ukcoderj / CopyConstructorExample.cs
Created June 14, 2019 10:31
Copy Constructor Example
using System;
using System.Collections.Generic;
namespace DeleteMeConsole
{
public class StateChecking
{
public void DoTest()