python main.py --amount 100
- Panning by left-click + drag
- Scale by rotating the mouse wheel
FROM python:3.10-slim-buster | |
WORKDIR /app | |
COPY reiquirements.txt main.py | |
RUN pip install -r requirements.txt | |
CMD [ "python", "waitress_server" ] |
// i686-w64-mingw32-gcc -o M msgbox.c | |
#include <stdio.h> | |
#include <windows.h> | |
int main(int argc, char *argv[]){ | |
if(argc != 3){ | |
printf("usage: %s MESSAGE TITLE",argv[0]); | |
} | |
// MessageBox function (winuser.h) | |
// Displays a modal dialog box that contains | |
// a system icon, |
package main | |
import ( | |
"fmt" | |
"syscall" | |
"unicode/utf16" | |
"unsafe" | |
) | |
//https://github.com/golang/go/wiki/WindowsDLLs |
#!/usr/bin/lua5.1 | |
--- Async/Await for Lua 5.1 | |
-- This script implements async/await functions for Lua, allowing tasks to | |
-- be queued and scheduled independently. | |
-- | |
-- This is just an example and has a bunch of issues, isn't tested, isn't | |
-- even actually used anywhere; I basically just got bored and had one of | |
-- those "what if?" type ideas 6 hours ago. | |
local co_create = coroutine.create |
#!/bin/bash | |
set -x | |
USAGE() { | |
cat << EOF | |
Usage: ${0##*/} <-i ident.p12> [-p password] <-m profile.mobileprovision> [-a com.example.app] [-n NewName] [-I Info.plist] | |
-i ident.p12 The signing identity file. | |
-p password The password of signing identity file. | |
-m profile.mobileprovision Signing provision profile | |
-a com.example.app Override CFBundleIdentifier |
:: Build client | |
RunUAT BuildCookRun -project="full_path.uproject"^ | |
-noP4 -platform=Win64^ | |
-clientconfig=Development -serverconfig=Development^ | |
-cook -allmaps -build -stage^ | |
-pak -archive -archivedirectory="Output Directory" | |
:: Cook client | |
RunUAT BuildCookRun -project="full_project_path_and_project_name".uproject^ | |
-noP4 -platform=Win64^ |
-- Function to select a menu item | |
-- We will use this to trigger the search box for the App Store | |
on do_menu(app_name, menu_name, menu_item) | |
try | |
-- bring the target application to the front | |
tell application app_name | |
activate | |
end tell | |
tell application "System Events" | |
tell process app_name |