| title | author | created | updated | version | purpose |
|---|---|---|---|---|---|
GitHub Copilot Security and Compliance Instructions |
Richard Slater |
2025-10-16 |
2025-10-16 |
1.0 |
Security and compliance guidelines for AI coding assistants |
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
| package main | |
| import ( | |
| "log" | |
| "crypto/mlkem" | |
| "crypto/aes" | |
| "crypto/cipher" | |
| "encoding/base64" | |
| "io" | |
| "crypto/rand" |
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
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| mQINBGBplmMBEAC4/lTwUbkk6KB7sC9AoY5OPu8dgInZig58EPHjviENNVr8do+Q | |
| n0slQp6Fp3C6Mj6gyVtfaWVxb9ZE9aTMPf8Kg/bxSHCYKYYLa/ZAerbYQjWW/esa | |
| fsYIps46jHbj4HDIqtSwE9Qg+g3CcOAifos2v0Kqpu/Lwt9VXxwH1J5GMiGJHjf3 | |
| vnfZDBq1yRhxOs4pEvPJgfyw1OUFtFGhh1AMwtd+36SxzC0Jv0LdXzEAkwcmJVMC | |
| UeyZU98pZWjlIDndr9rYiuHF5DASwObD9GDf1hNP5y/bw3PmIUmdh09c+IfsYeyv | |
| YklZ5HCUsN20oqKKxTgD7ZVnlq7ZyMG1HbleqVyk6OrGyCG/X1wjZFe1cCOvNZKS | |
| +qFzzZFnHTPCkOqbC3IskcA7IfALhHCeKjZE7niXjZ8Nm/e7kFmCT1bdd2VZiZ8B | |
| 5SGz+4zu9Ohiguu6SF+R65zc3hmGdWggQE3y/ySlEvpPZ9rJ9yB5E0eZ7J/grpoF |
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
| "use client" | |
| import styles from './page.module.css' | |
| import { useCallback, useEffect } from 'react'; | |
| import React from 'react' | |
| import WalletButton from './components/WalletButton'; | |
| import { SessionKit, Session } from "@wharfkit/session" | |
| import { WebRenderer } from "@wharfkit/web-renderer" |
Linking my account richardslater on GitHub with my address 0x0860f22da6ba75627ddad10ad198ffb215a8fe76 on EVM in mycryptoprofile.io, and the challenge code is: dda32788572262c2df8133ca19e79e9a. #LitentryVerifyMyAddress
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
| from google.colab import drive | |
| drive.mount('/content/drive') |
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 Format-IP ($ip) { | |
| $octets = $ip.Split(".") | Select-Object @{label="Octet";expression={ [Int32]::Parse($_).ToString("000") }} | |
| return [String]::Join(".", $octets.Octet) | |
| } | |
| $ips = Import-Csv .\ru.csv | Select-Object -Property Start, End, Notes | |
| $output = $ips | Select-Object @{label="Start";expression={ Format-IP $_.Start }}, @{label="End";expression={ Format-IP $_.End }}, notes | |
| $output | ForEach-Object { "{0} - {1} , 000 , {2}" -f $_.Start, $_.End, $_.Notes } |
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
| var depths = File.ReadAllLines(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "input.txt")).Select(x => Int32.Parse(x)); | |
| // part 1 | |
| depths | |
| .Skip(1) | |
| .Zip(depths, (curr, prev) => curr > prev) | |
| .Count(x => x == true) | |
| .Dump("Part 1: Depths larger than previous depth"); | |
| // part 2 |
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
| Get-WindowsCapability -Online | ? Name -like 'OpenSSH*' |
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
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Go-Live Plan</title> | |
| <meta name="description" content="Go-live Plan"> | |
| <meta name="author" content="Richard Slater"> | |
| <meta http-equiv="refresh" content="3000"> |
NewerOlder