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
| #cloud-config | |
| # ============================================================================= | |
| # VPS Cloud-Init Configuration | |
| # ============================================================================= | |
| # | |
| # Author: Samuel Mukoti | |
| # Organization: OpenMyAI | |
| # Email: samuelm@openmy.ai | |
| # Website: https://dev.myai1.ai | |
| # Version: 1.0.4 |
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
| """ | |
| title: Langfuse Filter Pipeline with Open WebUI Feedback Integration | |
| author: Samuel Mukoti | |
| date: 2025-07-23 | |
| version: 0.0.2 | |
| license: MIT | |
| description: A filter pipeline that uses Langfuse and integrates with Open WebUI's built-in feedback system. | |
| requirements: langfuse<3.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
| #ver. 1.8 | |
| blueprint: | |
| name: HVAC Start-Pause | |
| description: Pauses HVAC when windows/doors open; resumes last state once closed | |
| domain: automation | |
| source_url: https://gist.github.com/samuelmukoti/183a508ae9dd424c756b76593097dd2d | |
| input: | |
| climate_device: | |
| description: Climate entity used for climate control. | |
| name: Climate Device |
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 pygame as pg | |
| # -- Global constants | |
| # Colors | |
| BLACK = (0, 0, 0) | |
| GEY = (50, 50, 50) | |
| WHITE = (255, 255, 255) | |
| BLUE = (50, 50, 255) | |
| RED = (255, 50, 50) |
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
| # <SRCUSER> <SRCPW> <DSTUSER> <DSTPW> |
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
| image: microsoft/aspnetcore-build:1.1 | |
| variables: | |
| PROJECT_DIR: "app" | |
| cache: | |
| key: "$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME" | |
| paths: | |
| - .nuget/ |
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
| #!/bin/bash | |
| ## Install .NET Core 2.0.0 SDK on Ubuntu 16.04 64Bits | |
| ## Author: Nilton OS www.linuxpro.com.br | |
| ## https://www.microsoft.com/net/core#linuxubuntu | |
| ## https://docs.microsoft.com/en-us/aspnet/core/publishing/apache-proxy | |
| ## https://medium.com/@renato.groffe/net-core-e-sql-server-em-linux-primeiros-passos-89a7cb475ebd | |
| ## Version 0.1 | |
| curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg |