Skip to content

Instantly share code, notes, and snippets.

namespace collections;
class Program
{
static void Main(string[] args)
{
Dictionary<string, string> dict = new Dictionary<string, string>();
dict.Add("word1", "value1");
dict.Add("word2", "value2");
dict.Add("word3", "value3");
@choco-bot
choco-bot / FilesSnapshot.xml
Created February 11, 2025 19:03
greyhound-crm v4.9.19 - Failed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<files>
<file path="C:\ProgramData\chocolatey\lib\greyhound-crm\greyhound-crm.nupkg" checksum="40A2351A9CECDC79536E14916BDDFA33" />
<file path="C:\ProgramData\chocolatey\lib\greyhound-crm\greyhound-crm.nuspec" checksum="D207987ED11358455ABC6787DBCFEB69" />
<file path="C:\ProgramData\chocolatey\lib\greyhound-crm\tools\chocolateyinstall.ps1" checksum="151EFB0573F7ADC990528ADDA9BA8A39" />
</files>
</fileSnapshot>
@lvanasse
lvanasse / ci-sim-01.log
Created February 11, 2025 19:03
[sim-01] CI Log for nuttx @ 381d3fe64f4da2b09f12bd8f0cd2d1f07d86b3d3 / nuttx-apps @ fb0c1e10ded2a6fb9f066b9893662cbcc86e4646
Script started on 2025-02-11 18:11:02+00:00 [COMMAND="/home/ludovic/nuttx-release/run-job.sh sim-01" <not executed on terminal>]
Now running https://github.com/lupyuen/nuttx-release/blob/main/run-job.sh
Called by https://github.com/lupyuen/nuttx-release/blob/main/run-ci.sh
+ job=sim-01
+ neofetch
.-/+oossssoo+/-.
`:+ssssssssssssssssss+:`
-+ssssssssssssssssssyyssss+-
.ossssssssssssssssssdMMMNysssso.
/ssssssssssshdmmNNmmyNMMMMhssssss/
@abenevaut
abenevaut / self-signed-certificate-with-custom-ca.md
Last active February 11, 2025 19:07 — forked from fntlnz/self-signed-certificate-with-custom-ca.md
Self Signed Certificate with Custom Root CA

Create Root CA (Done once)

Create Root Key

Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!

docker run --rm -it -w /app -v .:/app alpine/openssl genrsa -des3 -out rootCA.key 4096
@AmirAliManzar
AmirAliManzar / sftp.json
Last active February 11, 2025 19:10
VSCode SFTP Configure
{
"name": "Profile Name",
"host": "domain.ir",
"protocol": "ftp",
"port": 21,
"username": "username@domain.ir",
"password": "password",
"remotePath": "/",
"watcher": {
"files": "**/*",
@Schoolads
Schoolads / gist:01dd99cd717097cc55586ca0171a3f29
Created February 11, 2025 19:02
College of Nursing Sciences, UEC, Ochadamu, Kogi state 2025/2026 {O8125777035} Admission Form Is STILL ON SALE.. Call DR.MRS ALICE OGUNSOLA on {O8125777035}.The Management of the school hereby inform the general public of the sales of the general Nursing Admission form into the School of Nursing, Also midwifery, post-basic midwifery form, post-b…
College of Nursing Sciences, UEC, Ochadamu, Kogi state 2025/2026 {O8125777035} Admission Form Is STILL ON SALE.. Call DR.MRS ALICE OGUNSOLA on {O8125777035}.The Management of the school hereby inform the general public of the sales of the general Nursing Admission form into the School of Nursing, Also midwifery, post-basic midwifery form, post-basic nursing form and internship form are still on sale for more information on purchase of the form and admission assistance call Admin Officer{O8125777035}
@vilaik
vilaik / main.py
Created February 11, 2025 19:02
ege2025#5
m = []
for n in range(1,100):
b = f'{n:b}'
if b.count('1')%2==0:
b = b + '0'
else:
b = b + '1'
if b.count('1')%2==0:
b = b + '0'
else:
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created February 11, 2025 19:02
Rimworld output log published using HugsLib
Log uploaded on Tuesday, February 11, 2025, 2:02:32 PM
Loaded mods:
Harmony(brrainz.harmony)[v:2.3.1.0][mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
Core(Ludeon.RimWorld): (no assemblies)
Log Publisher from HugsLib(m00nl1ght.UnofficialUpdates.HugsLogPublisher): LunarLoader(1.1.8), LunarFramework(1.1.8), HugsLogPublisher(2.1.4)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
Vanilla Expanded Framework(OskarPotocki.VanillaFactionsExpanded.Core): 0ModSettingsFramework(1.0.0), 0MultiplayerAPI(av:0.3.0,fv:0.3.0), 0PrepatcherAPI(1.1.1), ExplosiveTrailsEffect(1.0.7140.31563), GraphicCustomization(1.0.0), HeavyWeapons(1.0.0), KCSG(av:1.1.2,fv:25.2.3), MVCF(2.0.0.1), NoCamShakeExplosions(1.0.0), OPToxic(1.0.0), Outposts(av:3.0.0,fv:1.0.0), PipeSystem(av:1.0.1,fv:22.7.29), RecipeInheritance(1.0.1), RRO(1.0.0), SmokingGun(1.0.0), VanillaStorytellersExpanded(1.0.0), VanillaWeaponsExpandedLaser(0.0.0), VFECore(av:1.1.7,fv:1.1.9), VWEMakeshift(1.0.0)
Vanilla Quests E
@mypy-play
mypy-play / main.py
Created February 11, 2025 19:02
Shared via mypy Playground
from __future__ import annotations
from typing import TypeVar, TypeAlias
Ty = TypeVar("Ty", str, int, float, bool, None)
SingularJsonTy: TypeAlias = dict[str, "SingularJsonTy"] | list["SingularJsonTy"] | Ty
legal_singular: SingularJsonTy = {}
legal_singular["a"] = 3;
legal_singular["b"] = 3;
@choco-bot
choco-bot / Install.txt
Created February 11, 2025 19:01
pixie v4.1 - Passed - Package Tests Results
2025-02-11 19:00:50,269 5004 [DEBUG] - XmlConfiguration is now operational
2025-02-11 19:00:50,409 5004 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2025-02-11 19:00:50,409 5004 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco'
2025-02-11 19:00:50,409 5004 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2025-02-11 19:00:50,409 5004 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco'
2025-02-11 19:00:50,409 5004 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco'
2025-02-11 19:00:50,427 5004 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco'
2025-02-11 19:00:50,427 5004 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco'
2025-02-11 19:00:50,427 5004 [DEBUG] - Adding new typ