This file contains 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
// 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 { |
This file contains 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
<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" |
This file contains 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
<h3>State Machine</h3> | |
<button (click)="moveBack()">Back</button> | |
<button (click)="moveNext()">Next</button> | |
<p>State: {{currentState}}</p> |
This file contains 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
<h3>State Machine</h3> | |
<button (click)="moveBack()">Back</button> | |
<button (click)="moveNext()">Next</button> | |
<p>State: {{currentState}}</p> |
This file contains 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
/// <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; |
This file contains 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 { 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' |
This file contains 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
// 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> |
This file contains 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
using Microsoft.Extensions.Configuration; | |
using System; | |
namespace TestSecrets | |
{ | |
// NuGet | |
// | |
// Microsoft.Extensions.Configuration | |
// Microsoft.Extensions.Configuration.UserSecrets | |
This file contains 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
# | |
# 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' |
This file contains 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
using System; | |
using System.Collections.Generic; | |
namespace DeleteMeConsole | |
{ | |
public class StateChecking | |
{ | |
public void DoTest() |