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
target_language: "Go v1.22+" | |
coding_guidelines: | |
introduction: | | |
These coding guidelines are intended as a supportive framework to encourage clear, maintainable, and secure code. | |
They are not strict rules—use them as a reference, adapting as needed to | |
suit your project's context, goals, and team preferences. | |
When a guideline does not fit a particular situation, prioritize clarity, correctness, and the intent of the | |
user or team. Open communication and thoughtful collaboration are always encouraged. |
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
#!/usr/bin/env python3 | |
""" | |
MIT License | |
Copyright (c) 2024 itsjustregi (Regi E. [email protected]) | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights |
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
#!/usr/bin/env zsh | |
# Get the main directory | |
SCRIPT_DIR="${0:A:h}" | |
# Set paths relative | |
WATCH_DIR="$SCRIPT_DIR/nodes/" # Adjust this path as needed | |
RUN_INVOKEAI_SCRIPT="$SCRIPT_DIR/invoke-web.sh" | |
PID_FILE="$SCRIPT_DIR/invokeai.pid" | |
LOG_FILE="$SCRIPT_DIR/invokeai.log" |
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
@echo off | |
setlocal enabledelayedexpansion | |
rem Get the main directory | |
set "SCRIPT_DIR=%~dp0" | |
rem Set paths relative | |
set "WATCH_DIR=%SCRIPT_DIR%ComfyUI\custom_nodes" | |
set "RUN_COMFY_SCRIPT=%SCRIPT_DIR%comfyui_manager.bat" | |
set "PID_FILE=%SCRIPT_DIR%comfyui.pid" |
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
[ | |
{ | |
"name": "base", | |
"prompt": "{prompt}", | |
"negative_prompt": "" | |
} | |
] |
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
# The Caddyfile is an easy way to configure your Caddy web server. | |
# | |
# Unless the file starts with a global options block, the first | |
# uncommented line is always the address of your site. | |
# | |
# To use your own domain name (with automatic HTTPS), first make | |
# sure your domain's A/AAAA DNS records are properly pointed to | |
# this machine's public IP, then replace ":80" below with your | |
# domain name. |
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
{ | |
"last_node_id": 25, | |
"last_link_id": 41, | |
"nodes": [ | |
{ | |
"id": 4, | |
"type": "Width/Height Literal", | |
"pos": [ | |
-209, | |
451 |
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
{ | |
Tools = ordered() { | |
WirelessLink1 = Fuse.Wireless { | |
CtrlWZoom = false, | |
ViewInfo = OperatorInfo { Pos = { 32.7218, 477.305 } }, | |
Version = 110 | |
} | |
}, | |
ActiveTool = "WirelessLink1" | |
} |
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
export PATH=~/.npm-global/bin:$PATH | |
# System-wide .bashrc file for interactive bash(1) shells. | |
# To enable the settings / commands in this file for login shells as well, | |
# this file has to be sourced in /etc/profile. | |
# If not running interactively, don't do anything | |
#[ -z "$PS1" ] && return |
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
<!-- Press Windows Button + R, type “regedit”, and then click OK. | |
Navigate to the following registry subkey: | |
HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > Windows > CurrentVersion > SideBySide | |
Right-click, select NEW > DWORD (32 bit) Value | |
Type PreferExternalManifest, and then press ENTER. | |
Right-click PreferExternalManifest, and then click Modify. | |
Enter Value Data 1 and select Decimal. | |
Click OK. Exit Registry Editor. | |
For reference, here is a link to a Microsoft support file on the topic: http://support.microsoft.com/kb/912949/en-usi --> |
NewerOlder