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
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 |
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
# 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') |
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
#!/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" |
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
// 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 |