Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<# | |
.SYNOPSIS | |
This module provides functions to reset Docker WSL integration. | |
.DESCRIPTION | |
The module includes functions to stop Docker Desktop, shut down WSL, and unregister Docker WSL data. | |
.NOTES | |
Version: 1.0 | |
Author: Daethyra |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 logging | |
import discord | |
from langchain_openai import OpenAI | |
from langchain.chains import LLMChain | |
from langchain_core.prompts import PromptTemplate | |
from langchain.schema import StrOutputParser | |
from langchain.memory import ConversationBufferWindowMemory | |
# Configure our logger |
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
# Set up the console colors - black background with dark green text for that Matrix feel | |
$host.UI.RawUI.BackgroundColor = 'Black' # Sets terminal background to black | |
$host.UI.RawUI.ForegroundColor = 'DarkGreen' # Sets text color to dark green | |
Clear-Host # Clears the terminal screen (like cls in CMD or clear in bash) | |
# Define the characters that can appear in our digital rain | |
# Includes numbers, letters, and some Japanese-looking characters for style | |
$chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZヲアウエオカキケコサシスセソタツテナニヌネハヒホマミムメモヤユラリワ' | |
# Get the width of the terminal window - we'll need this to know how many "rain streams" to create |
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
version: 3 | |
agent: | |
authtoken: | |
api_key: | |
connect_timeout: 30s | |
console_ui: iftty | |
console_ui_color: black | |
heartbeat_interval: 1m | |
heartbeat_tolerance: 90s |
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> | |
<title>Matrix Rain</title> | |
<style> | |
body { | |
margin: 0; | |
overflow: hidden; | |
background: black; | |
} |
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
""" | |
Filename: facial_transformation.py | |
Description: Uses a webcam to help the user center their face and take a photo. | |
Author: Daethyra Carino | |
Date: 2025-02-23 | |
Version: 0.1.0 | |
License: MIT | |
Requires: | |
- package: opencv-python |