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
# llama_cpp_python==0.2.20 | |
# requests==2.23.0 | |
# timeout_decorator==0.5.0 | |
import json | |
import re | |
import uuid | |
import requests | |
import time | |
import urllib |
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
# llama_cpp_python==0.2.20 | |
# requests==2.23.0 | |
import json | |
import requests | |
import time | |
import urllib | |
from llama_cpp import Llama |
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
clusterIp=$(microk8s kubectl get service kubernetes-dashboard -n kube-system -o yaml | grep clusterIP: | awk '{print $2}') | |
echo "Found clusterIp=$clusterIp, now $clusterIp:443 port is forwarded to 0.0.0.0:443" | |
redir --lport 443 --laddr=0.0.0.0 --cport 443 --caddr=$clusterIp |
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
;----------------------------------- | |
; Macro Recorder v2.1 By FeiYue | |
; | |
; Description: This script records the mouse | |
; and keyboard actions and then plays back. | |
; | |
; F1 --> Record(Screen) (CoordMode, Mouse, Screen) | |
; F2 --> Record(Window) (CoordMode, Mouse, Window) | |
; F3 --> Stop Record/Play | |
; F4 --> Play LogFile |