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
| using Microsoft.AspNetCore.JsonPatch; | |
| using Microsoft.AspNetCore.JsonPatch.Operations; | |
| using Newtonsoft.Json; | |
| using Newtonsoft.Json.Serialization; | |
| using Serializer = System.Text.Json.JsonSerializer; | |
| var bld = WebApplication.CreateBuilder(); | |
| bld.Services | |
| .AddAuthorization() | |
| .AddFastEndpoints() |
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
| #!/usr/bin/env node | |
| var path = require('path'); | |
| var process = require('process'); | |
| var fs = require('fs'); | |
| class Environment { | |
| constructor(args) { | |
| args = JSON.parse(args).original; | |
| const defaultEnv = 'development'; //Set default environment | |
| let env; |
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
| import { Injectable } from "@angular/core"; | |
| import { ReplaySubject, Observable } from "rxjs/Rx"; | |
| interface Message { | |
| channel: string; | |
| data: any; | |
| } | |
| @Injectable() | |
| export class MessageBus { |
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
| # ... more above ... | |
| # wsfl bash is not a login shell | |
| if [ -d "$HOME/bin" ] ; then | |
| PATH="$HOME/bin:$PATH" | |
| fi | |
| # ssh-agent configuration | |
| if [ -z "$(pgrep ssh-agent)" ]; then | |
| rm -rf /tmp/ssh-* |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| namespace TopologicalSort { | |
| static class Program { | |
| static void Main() { | |
| // | |
| // digraph G { | |
| // "7" -> "11" |