Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
export CURDIR="$(cd $(dirname $0); pwd -P)"
export PROTON_VER=Proton-6.21-GE-2
export WINE="$CURDIR/$PROTON_VER/files/bin/wine"
export WINEPREFIX="$CURDIR/prefix"
export WINEARCH=win64
export PATH="$CURDIR/$PROTON_VER/files/bin:$PATH"
export XL_WINEONLINUX=true
export DXVK_FRAME_RATE=0
#!/bin/bash
#
# Adobe Air Installer for Ubuntu 64-bit Systems
#
# Pretty sure the name says it all, but if not, here's some more detail. Adobe
# Air is currently only supported on 32-bit Linux systems. Because of this you
# have to jump through some hoops to get it running. Specifically, you need to
# install 32-bit libraries to satisfy the dependencies of Adobe Air. This
# particular script makes it as easy as running a single script.
#
@tscho
tscho / unix_server.c
Created May 11, 2010 16:57
An example of a unix socket echo server that can run as a daemon
#include <signal.h>
#include <stdio.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <string.h>
#include <stdlib.h>
#include <sys/un.h>
#include <errno.h>
#include <sys/signal.h>
#include <wait.h>