- Instance Extensions: count = 11
VK_EXT_debug_report
: extension revision 9VK_EXT_debug_utils
: extension revision 2VK_EXT_swapchain_colorspace
: extension revision 4VK_KHR_device_group_creation
: extension revision 1VK_KHR_external_fence_capabilities
: extension revision 1VK_KHR_external_memory_capabilities
: extension revision 1VK_KHR_external_semaphore_capabilities
: extension revision 1VK_KHR_get_physical_device_properties2
: extension revision 2
VK_KHR_get_surface_capabilities2
: extension revision 1
View install-fonts.ps1
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
# Note that there is actually a "fonts" bucket in scoop that makes this obsolete in this specific case | |
$FontRelease = "2111.01" | |
$FontArchive = "CascadiaCode-${FontRelease}.zip" | |
wget.exe "https://github.com/microsoft/cascadia-code/releases/download/v$FontRelease/$FontArchive" | |
# -aoa = always overwrite | |
7z x -oCascadiaCode -aoa "${FontArchive}" | |
# https://blog.simontimms.com/2021/06/11/installing-fonts/ | |
$fonts = (New-Object -ComObject Shell.Application).Namespace(0x14) |
View ring-buffer-with-all-iterators.h
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
// Copyright 2021, Collabora, Ltd. | |
// SPDX-License-Identifier: BSL-1.0 | |
/*! | |
* @file | |
* @brief Ringbuffer implementation for keeping track of the past state of things | |
* @author Ryan Pavlik <ryan.pavlik@collabora.com> | |
* @author Moses Turner <moses@collabora.com> | |
* @ingroup aux_util | |
*/ |
View code.py
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
# SPDX-FileCopyrightText: 2021 Phil Burgess for Adafruit Industries | |
# SPDX-FileCopyrightText: 2021, Ryan Pavlik <ryan.pavlik@gmail.com> | |
# | |
# SPDX-License-Identifier: MIT | |
import math | |
import random | |
import time | |
from supervisor import reload | |
import board |
View adafruit_displayio_sh1107_wrapper.py
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
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries | |
# SPDX-FileCopyrightText: Copyright (c) 2020 Mark Roberts for Adafruit Industries | |
# SPDX-FileCopyrightText: 2021 James Carr | |
# SPDX-FileCopyrightText: 2021 Ryan Pavlik | |
# | |
# SPDX-License-Identifier: MIT | |
""" | |
`adafruit_displayio_sh1107_wrapper` | |
================================================================================ |
View code.py
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
# Adapted from SpaceX Launch Display example | |
# SPDX-FileCopyrightText: Anne Barela November 2020, for Adafruit Industries LLC | |
# SPDX-FileCopyrightText: 2020-2021, Ryan Pavlik | |
# SPDX-License-Identifier: MIT | |
import time | |
import terminalio | |
from adafruit_magtag.magtag import MagTag | |
from secrets import secrets |
View cs-unc-tr-to-ris-zotero.sh
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/env bash | |
# Copyright 2021, Collabora, Ltd. | |
# SPDX-License-Identifier: MIT | |
# | |
# needs bibutils and sed and wget on debian. | |
# Import the resulting .ris file into zotero and enjoy! | |
# References: | |
# https://en.wikipedia.org/wiki/EndNote#Tags_and_fields | |
# https://en.wikipedia.org/wiki/RIS_(file_format)#Tags |
View errors-4.2.0.txt
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
Executing tasks: [:app:assembleDebug] in project /home/ryan/AndroidStudioProjects/PrefabProblem | |
> Task :app:preBuild UP-TO-DATE | |
> Task :app:preDebugBuild UP-TO-DATE | |
> Task :app:compileDebugAidl NO-SOURCE | |
> Task :app:compileDebugRenderscript NO-SOURCE | |
> Task :app:dataBindingMergeDependencyArtifactsDebug | |
> Task :app:dataBindingMergeGenClassesDebug | |
> Task :app:generateDebugResValues | |
> Task :app:generateDebugResources |
View setup.ps1
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
# install scoop | |
Set-ExecutionPolicy RemoteSigned -scope CurrentUser | |
# for bare metal | |
iwr -useb get.scoop.sh | iex | |
# or, for VM with a shared w:\ drive already | |
$env:SCOOP = 'w:\scoop' | |
[Environment]::SetEnvironmentVariable('SCOOP', $env:SCOOP, 'User') | |
iwr get.scoop.sh -outfile 'install.ps1' |
View aq-funhouse.py
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
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries | |
# SPDX-FileCopyrightText: Copyright (c) 2021 Melissa LeBlanc-Williams for Adafruit Industries | |
# SPDX-FileCopyrightText: 2021, Ryan Pavlik <ryan.pavlik@gmail.com> | |
# SPDX-License-Identifier: MIT | |
try: | |
from typing import Optional | |
except ImportError: | |
pass |
View WindowsRX580.md
NewerOlder