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
| β Downloads ./Bottles-3.1.15-x86_64.AppImage | |
| Gtk-Message: 16:35:15.626: Failed to load module "appmenu-gtk-module" | |
| 2021-06-29 16:35:16 INFO: Connection status: online β¦ | |
| 2021-06-29 16:35:17 INFO: Runners path doens't exist, creating now. | |
| 2021-06-29 16:35:17 INFO: Bottles path doens't exist, creating now. | |
| 2021-06-29 16:35:17 INFO: Dxvk path doens't exist, creating now. | |
| 2021-06-29 16:35:17 INFO: Temp path doens't exist, creating now. | |
| 2021-06-29 16:35:17 WARNING: No dxvk found. | |
| 2021-06-29 16:35:17 INFO: Connection status: online β¦ | |
| 2021-06-29 16:35:17 INFO: Connection status: online β¦ |
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
| [011C:0120][2021-05-31T20:56:20]i001: Burn v3.8.1128.0, Windows v6.1 (Build 7601: Service Pack 1), path: Z:\home\filbot\.var\app\com.valvesoftware.Steam\.local\share\Steam\steamapps\common\Necromunda Hired Gun\Engine\Extras\Redist\en-us\UE4PrereqSetup_x64.exe, cmdline: '' | |
| [011C:0120][2021-05-31T20:56:20]i000: Setting string variable 'WixBundleLog' to value 'C:\users\steamuser\Temp\UE4_Prerequisites_(x64)_20210531205620.log' | |
| [011C:0120][2021-05-31T20:56:20]i000: Setting string variable 'WixBundleOriginalSource' to value 'Z:\home\filbot\.var\app\com.valvesoftware.Steam\.local\share\Steam\steamapps\common\Necromunda Hired Gun\Engine\Extras\Redist\en-us\UE4PrereqSetup_x64.exe' | |
| [011C:0120][2021-05-31T20:56:20]i000: Setting string variable 'WixBundleName' to value 'UE4 Prerequisites (x64)' | |
| [011C:0120][2021-05-31T20:56:20]i100: Detect begin, 9 packages | |
| [011C:0120][2021-05-31T20:56:20]i000: Setting string variable 'NETFRAMEWORK40' to value '1' | |
| [011C:0120][2021-05-31T20:56:20]i000: Setting string variable 'Netfx20Vers |
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
| # Phillip tmux Configuration | |
| # Change the prefix key to C-a | |
| set-option -g prefix C-a | |
| # Remove the <C-b> binding. | |
| unbind-key C-b | |
| # This sends the <C-a> combo after doing <C-a> + <C-a> | |
| bind-key C-a send-prefix |
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
| ββfilbot@oryx-pop ~/Documents/Development/Buildbot | |
| β°ββ€ pip install buildbot 127 β΅ | |
| Collecting buildbot | |
| Downloading buildbot-2.10.0-py3-none-any.whl (879 kB) | |
| |ββββββββββββββββββββββββββββββββ| 879 kB 9.8 MB/s | |
| Collecting sqlalchemy>=1.2.0 | |
| Downloading SQLAlchemy-1.3.22-cp38-cp38-manylinux2010_x86_64.whl (1.3 MB) | |
| |ββββββββββββββββββββββββββββββββ| 1.3 MB 59.0 MB/s | |
| Collecting zope.interface>=4.1.1 | |
| Downloading zope.interface-5.2.0-cp38-cp38-manylinux2010_x86_64.whl (244 kB) |
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
| # -*- coding: utf-8 -*- | |
| """Azure DevOps REST API Client | |
| A personally developed REST API Client for Azure DevOps. | |
| .. _Azure DevOps REST API Documentation: | |
| https://docs.microsoft.com/en-us/rest/api/azure/devops/ | |
| """ | |
| import base64 |
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 python | |
| """Create service principals with the azure-cli, for now. | |
| Once I figure out the Python Library or the REST API, I'll use that. | |
| """ | |
| import argparse | |
| import json | |
| import logging | |
| import subprocess |
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 python | |
| """List and Sort Groups in Azure DevOps Project | |
| .. _Azure DevOps Python API: | |
| https://github.com/microsoft/azure-devops-python-api | |
| """ | |
| import configparser | |
| import logging |
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 bash | |
| # I had to download the Typora electron app from their home page: https://typora.io | |
| # Then get the Linux version that is a tar.gz. Place it in the location being called below | |
| # and then also install these packages inside of the toolbox you're using. | |
| sudo dnf install -y \ | |
| nss \ | |
| libX11 \ | |
| libX11-xcb \ | |
| libXcomposite \ |