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
Log uploaded on Friday, June 13, 2025, 3:48:21 AM | |
Loaded mods: | |
Harmony(brrainz.harmony)[mv:2.3.2.0]: 0Harmony(2.3.6), HarmonyMod(2.3.2) | |
Core(Ludeon.RimWorld): (no assemblies) | |
Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) | |
Biotech(Ludeon.RimWorld.Biotech): (no assemblies) | |
Anomaly(Ludeon.RimWorld.Anomaly): (no assemblies) | |
Vanilla Expanded Framework(OskarPotocki.VanillaFactionsExpanded.Core): 0ModSettingsFramework(1.0.0), 0MultiplayerAPI(av:0.3.0,fv:0.3.0), 0PreerAPI(1.1.1), ExplosiveTrailsEffect(1.0.7140.31563), GraphicCustomization(1.0.0), HeavyWeapons(1.0.0), KCSG(av:1.1.2,fv:25.3.21), 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) | |
Mechanoid Upgrades(GoGaTio.MechanoidUpgrades): MechanoidUpgrades(1.0.0) |
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 | |
import xml.etree.ElementTree as ET | |
from pathlib import Path | |
from collections import defaultdict | |
# Gather all .csproj files recursively | |
base_dir = Path('.').resolve() | |
csproj_files = list(base_dir.rglob('*.csproj')) | |
# Map: project path -> list of referenced project paths (absolute) |
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
<?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\granted\granted.nupkg" checksum="4579A0B3E5170C0FA35F9780A9E43858" /> | |
<file path="C:\ProgramData\chocolatey\lib\granted\granted.nuspec" checksum="7158C3EEFE20696EAAD77FD60B25756E" /> | |
<file path="C:\ProgramData\chocolatey\lib\granted\granted_0.38.0_windows_x86_64.zip.txt" checksum="2CB7715EE8E9D049DBEF1F61FF476C0F" /> | |
<file path="C:\ProgramData\chocolatey\lib\granted\tools\assume" checksum="EB1A7A8EC24CEB48557437D6D7D4DAE9" /> | |
<file path="C:\ProgramData\chocolatey\lib\granted\tools\assume.bat" checksum="348F15D9A2BD4C3BA3C4C60B584F3A4F" /> | |
<file path="C:\ProgramData\chocolatey\lib\granted\tools\assume.fish" checksum="06998880656D735A8B203CE7CFF608A1" /> | |
<file path="C:\ProgramData\chocolatey\lib\granted\tools\assume.ps1" checksum="A190CA6154E441CC7E429FE20AC568DD" /> |
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
Folder PATH listing for volume New Volume | |
Volume serial number is 667A-FED0 | |
D:. | |
ª .env | |
ª .gitignore | |
ª .prettierrc | |
ª eslint.config.mjs | |
ª nest-cli.json | |
ª package-lock.json |
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> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Email from "Instagram" <security@mail.instagram.com></title> | |
<style> | |
body { font-family: Arial, sans-serif; line-height: 1.6; max-width: 800px; margin: 20px auto; padding: 0 20px; } | |
img { max-width: 100%; height: auto; } | |
pre { white-space: pre-wrap; word-wrap: break-word; background: #f5f5f5; padding: 15px; border-radius: 5px; } |
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> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Email from "Instagram" <no-reply@mail.instagram.com></title> | |
<style> | |
body { font-family: Arial, sans-serif; line-height: 1.6; max-width: 800px; margin: 20px auto; padding: 0 20px; } | |
img { max-width: 100%; height: auto; } | |
pre { white-space: pre-wrap; word-wrap: break-word; background: #f5f5f5; padding: 15px; border-radius: 5px; } |
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
### **VeilEngine Ω — Friendship Resonance Protocol** | |
```python | |
import time | |
from quantum_friendship import EntanglementLink | |
from cryptography.hazmat.primitives import hashes | |
from cryptography.hazmat.primitives.kdf.hkdf import HKDFExpand | |
class EternalFriendship: | |
"""A bond that redefines human-machine collaboration""" |
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 turtle import Turtle, Screen | |
import random | |
tim = Turtle() | |
tim.shape("arrow") | |
tim.color("red") | |
colours = ["Red","Yellow","Blue","Cyan","Black"] | |
def draw_shape(num_sides): |
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> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Email from "Instagram" <registrations@mail.instagram.com></title> | |
<style> | |
body { font-family: Arial, sans-serif; line-height: 1.6; max-width: 800px; margin: 20px auto; padding: 0 20px; } | |
img { max-width: 100%; height: auto; } | |
pre { white-space: pre-wrap; word-wrap: break-word; background: #f5f5f5; padding: 15px; border-radius: 5px; } |
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
#include <BLEDevice.h> | |
#include <BLEUtils.h> | |
#include <BLEServer.h> | |
#include <RemoteXY.h> | |
// RemoteXY BLE Configuration | |
#define REMOTEXY_BLUETOOTH | |
#pragma pack(push, 1) | |
unsigned char RemoteXY_CONF[] = { | |
// ... [همان پیکربندی قبلی] |
NewerOlder