(Noob) I'm Replacing PC Magazine's Robotype, which served me well since the mid-2000's. AHK is confusing me.

This page summarizes the projects mentioned and recommended in the original post on /r/AutoHotkey

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • Clip

    Clip() - Send and Retrieve Text using the Clipboard (by berban)

  • ; https://github.com/berban/Clip/blob/master/Clip.ahk ; Clip() - Send and Retrieve Text Using the Clipboard ; by berban - updated February 18, 2019 ; https://www.autohotkey.com/boards/viewtopic.php?f=6&t=62156 Clip(Text="", Reselect="") { Static BackUpClip, Stored, LastClip If (A_ThisLabel = A_ThisFunc) { If (Clipboard == LastClip) Clipboard := BackUpClip BackUpClip := LastClip := Stored := "" } Else { If !Stored { Stored := True BackUpClip := ClipboardAll ; ClipboardAll must be on its own line } Else SetTimer, %A_ThisFunc%, Off LongCopy := A_TickCount, Clipboard := "", LongCopy -= A_TickCount ; LongCopy gauges the amount of time it takes to empty the clipboard which can predict how long the subsequent clipwait will need If (Text = "") { SendInput, c ClipWait, LongCopy ? 0.6 : 0.2, True } Else { Clipboard := LastClip := Text ClipWait, 10 SendInput, v } SetTimer, %A_ThisFunc%, -700 Sleep 20 ; Short sleep in case Clip() is followed by more keystrokes such as {Enter} If (Text = "") Return LastClip := Clipboard Else If ReSelect and ((ReSelect = True) or (StrLen(Text) < 3000)) SendInput, % "{Shift Down}{Left " StrLen(StrReplace(Text, "`r")) "}{Shift Up}" } Return Clip: Return Clip() }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Show HN: Screencast and accesibility app: KeyPress OSD

    2 projects | news.ycombinator.com | 10 Apr 2024
  • KeyPress OSD – a unique OSD for screencasts; my first ever developed app

    3 projects | news.ycombinator.com | 5 Apr 2024
  • Show HN: Fixkey is a keyboard-focused AI copilot for writing

    2 projects | news.ycombinator.com | 1 Feb 2024
  • Automating Workday Job Application Forms

    1 project | news.ycombinator.com | 8 Jan 2024
  • Wordstar-keys: Implement wordstar cursor control keys in Linux using xkb

    2 projects | news.ycombinator.com | 11 Dec 2023