This file contains 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
How to fix the error "This version of ... is designed to run on a 32-bit windows operating system" on ARM version of windows? | |
Run this command in the cmd with your msi file. | |
msiexec -i FILENAME.MSI /passive |
This file contains 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
import os | |
def get_window_name_with_applescript(): | |
window_name = os.popen("osascript -e 'tell application \"System Events\" to get the name of window 1 of (first application process whose frontmost is true)'").read().strip() | |
process_name = os.popen("osascript -e 'tell application \"System Events\" to get the name of (first application process whose frontmost is true)'").read().strip() | |
return window_name, process_name |
This file contains 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
def decompress_lz_buffer(src_buffer: bytes) -> bytes: | |
""" | |
Decompress a byte array using custom LZ77 algorithm. | |
Args: | |
src_buffer: Compressed bytes | |
Returns: | |
Decompressed bytes | |
""" |
This file contains 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
package main | |
import ( | |
"fmt" | |
"time" | |
"github.com/progrium/darwinkit/dispatch" | |
"github.com/progrium/darwinkit/helper/action" | |
"github.com/progrium/darwinkit/helper/layout" | |
"github.com/progrium/darwinkit/macos" |
OlderNewer