Author: tim
talemate RPG LLM
How to Create a Setup File in Visual Studio 2022 | Create Installer for C#, VB and C++ Applications
There is a lot to get excited about in Ollama
Flexible solar and mW-scale AI – efficient tech at CES 2024
Ollama Copilot (YouTube Transcripts) v1.0.1
Building A Halo Inspired Plasma Knife (20,000 volts!)
youtube-transcript-api-sharp
Ollama Copilot v1.0.0
Writing Better Code with Ollama
Apple is coming for Rabbit
GPT-4 Vision + Zapier + MindStudio (INSANE Automations)
Matt creates an automation that transcribes handwritten notes and emails as text.
AutoGen Studio 2.0 Tutorial – Skills, Multi-Agent Teams, and REAL WORLD Use Cases (NO CODE)
How to use splitters
Open-source PixArt-δ image generator spits out high-resolution AI images in 0.5 seconds
Confrontation in Hawaii – Can they CONFISCATE your Drone?
Customize Ollama with Environment Variables
C# WebSocket Server
WebSocket Sharp
[WebSocket Sharp] is a very nice C# WebSocket library for server and client.
AppKit C# Wrapper for MacOS
using MonoMac.AppKit;
namespace Blazor_MacOS_UI
{
internal class NativeUtils
{
public static string GetActiveWindowTitle()
{
NSWorkspace sharedWorkspace = NSWorkspace.SharedWorkspace;
NSRunningApplication currentApp = NSRunningApplication.CurrentApplication;
// Get the process identifier of the frontmost (foreground) application
int processIdentifier = currentApp.ProcessIdentifier;
// Get the NSRunningApplication for the frontmost application
NSRunningApplication frontmostApp = NSRunningApplication.GetRunningApplication(processIdentifier);
// Get the localized name (title) of the frontmost application's main window
string foregroundWindowTitle = frontmostApp.LocalizedName;
return foregroundWindowTitle;
}
}
}