cmd@fb:/tmp|❯ wc -l 33m-subdomain-wordlist.txt
33927885 33m-subdomain-wordlist.txt
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
#include <stdio.h> | |
#include <ctype.h> // For isdigit() and isalpha() | |
#include <string.h> // For strlen() | |
#define MAX 100 // Maximum size of the stack | |
char stack[MAX]; | |
int top = -1; | |
// Function to push onto the stack |
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
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"alignment": "left", | |
"segments": [ | |
{ | |
"background": "#c386f1", | |
"foreground": "#ffffff", | |
"leading_diamond": "\ue0b6", |
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
version: "3.7" | |
services: | |
rabbitmq: | |
image: rabbitmq:3.11.1-management | |
container_name: rabbitmq | |
hostname: rabbitmq | |
restart: always | |
ports: | |
- 5672:5672 |
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
#invoke oh-my-posh | |
oh-my-posh init pwsh --config 'https://gist.githubusercontent.com/kek-Sec/6c5ca377cec9d904a02b59a962a9b351/raw/0006478fc0901b80d8328d291325c0bcbf4774a7/clean-detailed-custom.omp.json' | Invoke-Expression | |
# Terminal-Icons | |
Import-Module -Name Terminal-Icons | |
# tab completion | |
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete | |
# PowerShell parameter completion shim for the dotnet CLI | |
Register-ArgumentCompleter -Native -CommandName dotnet -ScriptBlock { | |
param($commandName, $wordToComplete, $cursorPosition) | |
dotnet complete --position $cursorPosition "$wordToComplete" | ForEach-Object { |
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
# escape=` | |
FROM mcr.microsoft.com/windows/servercore:20H2 | |
# Download channel for fixed install. | |
ARG CHANNEL_URL=https://aka.ms/vs/16/release/channel | |
ADD ${CHANNEL_URL} C:\TEMP\VisualStudio.chman | |
# Download and install Build Tools for Visual Studio. | |
ADD https://aka.ms/vs/16/release/vs_BuildTools.exe C:\TEMP\vs_buildtools.exe |
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
resource appInsights 'Microsoft.Insights/components@2021-05-01-preview' = { | |
name: '<your-appinsights-name>' | |
location: '<location>' | |
properties: {} | |
} | |
resource containerApp 'Microsoft.ContainerInstance/containerGroups@2021-11-01' = { | |
name: '<your-containerapp-name>' | |
location: '<location>' | |
dependsOn: [ |
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
<Target Name="PostBuild" AfterTargets="PostBuildEvent"> | |
<!-- do not run if not release --> | |
<PropertyGroup> | |
<IsRelease Condition="'$(Configuration)' == 'Release'">true</IsRelease> | |
</PropertyGroup> | |
<!-- place nuget package one folder up from root in a folder called nuget --> | |
<Exec Command="dotnet pack -c Release -o nuget -p:PackageVersion=$([System.DateTime]::Now.ToString("yyyy.MM.dd.HHmmss")) --no-build" Condition="'$(IsRelease)' == 'true'" /> | |
<Message Text="Package created " /> | |
<!-- print build summary --> |
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
# .NET 6 Pipeline | |
# Build and test a .NET 6 project | |
# Triggers the pipeline on pushes to the master branch | |
# https://learn.microsoft.com/en-us/azure/devops/pipelines/ecosystems/dotnet-core | |
trigger: | |
branches: | |
include: | |
- master | |
# specify the pool for the pipeline |
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
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"alignment": "left", | |
"newline": true, | |
"segments": [ | |
{ | |
"background": "#FEF5ED", | |
"foreground": "#011627", |
NewerOlder