This file contains hidden or 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
| #cloud-config | |
| autoinstall: | |
| version: 1 | |
| source: | |
| id: ubuntu-desktop-minimal | |
| identity: | |
| hostname: orbital | |
| username: kashmir | |
| password: "$6$psBe8CEg/e8JW5a3$zTghAora5FbxV6wReueN14WiLO5TLK09co87QUp6LvWaT.hNgDVmwIGc6YClE8.YpDYaiYCNntrO4JfNLGx/B1" |
This file contains hidden or 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
| google-chrome --kiosk https://www.google.com \ | |
| --no-first-run \ | |
| --disable-infobars \ | |
| --disable-translate \ | |
| --disable-pinch \ | |
| --overscroll-history-navigation=0 \ | |
| --disable-gesture-requirement-for-media-playback \ | |
| --disable-sync \ | |
| --disable-features=TranslateUI \ | |
| --no-default-browser-check \ |
This file contains hidden or 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
| services: | |
| firefox: | |
| image: jlesage/firefox | |
| environment: | |
| - DISPLAY=host.docker.internal:0.0 | |
| - XAUTHORITY=/root/.Xauthority | |
| volumes: | |
| - /tmp/.X11-unix:/tmp/.X11-unix | |
| - $HOME/.Xauthority:/root/.Xauthority | |
| restart: unless-stopped |
This file contains hidden or 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
| # ~/.conan2/profiles/default | |
| [settings] | |
| arch=armv8 | |
| build_type=Debug | |
| compiler=clang | |
| compiler.cppstd=gnu17 | |
| compiler.libcxx=libc++ | |
| compiler.version=17 | |
| os=Macos |
This file contains hidden or 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/env python3 | |
| import re | |
| import functools | |
| import itertools | |
| from pathlib import Path | |
| import click | |
| from jinja2 import Environment, BaseLoader, Template | |
| try: |
This file contains hidden or 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
| zfs create tank/apps/gphotos | |
| iocage create --release 11.2-RELEASE --name "gphotos" \ | |
| boot="on" \ | |
| vnet="on" \ | |
| defaultrouter="192.168.1.1" \ | |
| ip4_addr="vnet0|192.168.1.40/24" | |
| iocage exec gphotos "mkdir -p /usr/local/etc/pkg/repos" | |
| iocage exec gphotos "echo -e 'FreeBSD: { url: \"pkg+http://pkg.FreeBSD.org/\${ABI}/latest\" }' > /usr/local/etc/pkg/repos/FreeBSD.conf" |
This file contains hidden or 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
| wget freevps.us/downloads/bench.sh -O - -o /dev/null | bash |
This file contains hidden or 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
| TEMPLATE = app | |
| CONFIG -= console | |
| CONFIG -= app_bundle | |
| CONFIG -= qt | |
| CONFIG -= windows | |
| SDL2_PATH = D:\Workspace\SDL2 | |
| LIBS += -L $${SDL2_PATH}\lib -lSDL2 -lSDL2main -lSDL2_image | |
| INCLUDEPATH += $${SDL2_PATH}\include |
This file contains hidden or 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
| #include <QtDebug> | |
| #include <QImage> | |
| #include <QString> | |
| #include <QBitArray> | |
| #include <QByteArray> | |
| #include <QFile> | |
| #include <QCommandLineParser> | |
| namespace { | |
| enum { headerSize = 32 }; |
This file contains hidden or 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
| background yes | |
| use_xft yes | |
| xftfont Sans:size=8 | |
| xftalpha 1 | |
| update_interval 1.0 | |
| total_run_times 0 | |
| own_window yes | |
| own_window_transparent yes | |
| own_window_type desktop | |
| own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager |
NewerOlder