Skip to content

Instantly share code, notes, and snippets.

@killgxlin
killgxlin / windows.sh
Created November 23, 2021 07:56 — forked from fasterthanlime/windows.sh
Building ffmpeg & libx264 with MSVC from msys2
#!/bin/bash
set -e
if [[ -z "${FFRUST_VC_PATH}" ]]; then
if [[ -n "${FFRUST_RECURSING}" ]]; then
echo "Something went terribly wrong with our MVSC/msys2 magic"
exit 1
fi
@killgxlin
killgxlin / main.go
Created August 27, 2019 08:09 — forked from KatelynHaworth/main.go
Example of run an interactive process on the current user from system service on windows (Golang)
package main
import (
"github.com/kardianos/service"
"log"
"flag"
)
type Service struct {}