Skip to content

Instantly share code, notes, and snippets.

on:
workflow_dispatch:
permissions:
id-token: write # This is required for AWS OIDC connection
contents: read # This is required for actions/checkout
jobs:
docker-build:
environment: ssg_dev
@bikefrivolously
bikefrivolously / PKGBUILD
Created January 16, 2019 23:53
Arch Linux xf86-video-qxl-git
# Maintainer: Peter Mattern <pmattern at arcor dot de>
# Contributor: Ansgar Taflinski <ataflinski at uni-koblenz dot de>
# Contributor: Jordy van Wolferen <jordy at kluisip dot nl>
_pkgname=xf86-video-qxl
pkgname=$_pkgname-git
pkgver=0.1.5.14.ge298116
pkgrel=1
pkgdesc='X Window System QXL driver including Xspice server'
arch=('i686' 'x86_64')
#!/usr/bin/vmware
.encoding = "UTF-8"
config.version = "8"
virtualHW.version = "16"
pciBridge0.present = "TRUE"
pciBridge4.present = "TRUE"
pciBridge4.virtualDev = "pcieRootPort"
pciBridge4.functions = "8"
pciBridge5.present = "TRUE"
pciBridge5.virtualDev = "pcieRootPort"
@bikefrivolously
bikefrivolously / main.cpp
Created February 1, 2017 01:44
wxwidgets & SFML integration example
// compiles with
// g++ `wx-config --cxxflags` `pkg-config --cflags sfml-graphics` `pkg-config --cflags gtk+-2.0` -o test main.cpp `wx-config --libs` `pkg-config --libs sfml-graphics` `pkg-config --libs gtk+-2.0`
#include <wx/wx.h>
#include <SFML/Graphics.hpp>
#include <gtk/gtk.h>
#include <gdk/gdkx.h>
class MyApp : public wxApp