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
// ==UserScript== | |
// @name Grok Conversation Overview Overlay | |
// @namespace http://tampermonkey.net/ | |
// @version 0.31 | |
// @description Displays a hierarchical list of prompts, answers, and code blocks with scroll and copy functionality | |
// @author Grok | |
// @match https://grok.com/* | |
// @grant none | |
// ==/UserScript== |
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
;Autohotkeyscript to remove "mailto:" in front of Copy/Paste | |
;Download https://www.autohotkey.com/ | |
;https://www.autohotkey.com/docs/v2/lib/A_Clipboard.htm | |
Persistent | |
OnClipboardChange ClipChanged | |
ClipChanged(clip_type) { | |
result := RegExReplace(A_Clipboard,"mailto\:(.*)","$1") |
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
# -*- coding: utf-8 -*- | |
#Alpha-Version - no UAC handling, no Error-Handling, no checks | |
#pip uninstall -y pywinauto | |
#This is necessary beacuse of Bug with fetching a lot of elements in the current pywinauto-Release : | |
#pip install https://github.com/pywinauto/pywinauto/archive/atspi.zip | |
#Tested with winutil commit f83ffaf0a9acd343dc7470d03d640fceade7450b | |
import pywinauto | |
from pywinauto.application import Application | |
import subprocess |
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
param( | |
[string] $username = "tweeter", | |
[string] $open_ssh_version = "v7.9.0.0p1-Beta" | |
) | |
$ErrorActionPreference = 'Stop'; # stop on all errors | |
$log_stamp = get-date -format 'yyyyMMdd-HHmmss' | |
Start-Transcript -Path "$(pwd)/bootstrap.$($log_stamp).log" -IncludeInvocationHeader | |
# Make the administrator user | |
$Count = Get-Random -min 24 -max 32 |