CREATE LOGIN bingo WITH PASSWORD = 'StrongPasswordHere123!';
GO
CREATE DATABASE BingoDb;
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
| digraph { | |
| compound=true; | |
| node [shape=Mrecord] | |
| rankdir="LR" | |
| "Drafted" [label="Drafted"]; | |
| "Staffing" [label="Staffing"]; | |
| "Frozen" [label="Frozen"]; | |
| "Committed" [label="Committed"]; | |
| "Published" [label="Published"]; | |
| "Changed" [label="Changed"]; |
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/xfreerdp \ | |
| /v:192.168.122.117 \ | |
| /scale:180 \ | |
| /gfx:AVC420:on \ | |
| /compression \ | |
| /network:broadband \ | |
| '/u:.\Marc' \ | |
| '/p:Pa$$w0rd' \ | |
| +clipboard \ | |
| -themes \ |
Here are the steps to get an Oracle Database 19c up and running in an OCI container. Since there are several bash scripts involved, a linux machine is advised. (while WSL may work, untested).
I ran the following on Fedora 37 with podman installed and an alias docker=podman.
#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
| # -*- coding: utf-8 -*- | |
| from collections import OrderedDict | |
| from PyPDF2 import PdfReader | |
| import os | |
| def _getFields(obj, tree=None, retval=None, fileobj=None): | |
| """ | |
| Extracts field data if this PDF contains interactive form fields. |
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; | |
| using System.Xml.Linq; | |
| using Microsoft.AspNetCore.DataProtection.Repositories; | |
| using Npgsql; | |
| namespace IdentityService.Infrastructure.DataProtection | |
| { | |
| public class PostgresDataProtectionKeyRepository : IXmlRepository |
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.Linq; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| using JetBrains.Annotations; | |
| namespace TicketShop.Domain.Sales | |
| { |
NewerOlder