Skip to content
View ljredux's full-sized avatar

Block or report ljredux

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Simulates periodic beeping with cust... Simulates periodic beeping with customizable frequency, duration, and interval. Outputs timestamps with each beep. Devised to keep my Oticon TV Streamer awake in extended low volume situations so the default frequency is set beyond the range of human hearing. Adjust the value to a number between 3000 and 9000 for a more satisfying audible beep.
    1
    param (
    2
        [int]$Frequency = 32767,    # Beep frequency (37 to 32767)
    3
        [int]$Duration = 35,        # Beep duration in milliseconds.
    4
        [int]$Interval = 240        # Beep interval in seconds (delay between beeps)
    5
    )
  2. Simple Windows Notification with Pow... Simple Windows Notification with Powershell
    1
    function Show-BalloonTip {
    2
        param (
    3
            [string]$Title,
    4
            [string]$Text,
    5
            [ValidateSet('Error', 'Info', 'None', 'Warning')]
  3. Llama Loader - A bat file which cycl... Llama Loader - A bat file which cycles through .bin (model) files in the same folder as llama.cpp (https://github.com/ggerganov/llama.cpp) executables and asks the user which one to load. An asterisk denotes the previous model loaded.
    1
    @echo off
    2
    :start
    3
    title llama.cpp
    4
    setlocal EnableDelayedExpansion
    5