Some notes on Audio pitch correction (eg. autotune, melodyne, etc).
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 | |
| # Copyright © 2023 Justin McGettigan | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of this software | |
| # and associated documentation files (the “Software”), to deal in the Software without | |
| # restriction, including without limitation the rights to use, copy, modify, merge, publish, | |
| # distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the | |
| # Software is furnished to do so, subject to the following conditions: | |
| # | |
| # The above copyright notice and this permission notice shall be included in all copies or |
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
| # 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' |
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
| # 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 |
For downloads and more information about VSeeFace, please check out the website.
Version 1.13.38c4:
- Applied Unity security patch
Version 1.13.38c3:
- Blacklisted Meta Quest virtual camera to avoid freezing at startup.
- Changed "OSC/VMC" to just "VMC".
Version 1.13.38c2:
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
| #!/bin/sh | |
| # SPDX-FileCopyrightText: 2020-2024, Rylie Pavlik | |
| # SPDX-License-Identifier: CC0-1.0 | |
| # Nothing sh-specific here, these work fine in pwsh as well | |
| ### Aliases | |
| # Lots of people use these, and I guess I type them a lot... | |
| git config --global alias.ci commit | |
| git config --global alias.co checkout |
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
| List with Compatible devices: | |
| Look under About on the watch for the device Id. | |
| looks something like this: | |
| MOY-TEH5-1.7.7 | |
| the middle section is the interesting part, if that is in this list here | |
| it has the compatible bootloader and the same pinout as pinetime for Display and External Flash |
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
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "copyOnSelect": false, | |
| "defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
| // Add custom keybindings to this array. | |
| // To unbind a key combination from your defaults.json, set the command to "unbound". | |
| // To learn more about keybindings, visit https://aka.ms/terminal-keybindings | |
| "keybindings": | |
| [ | |
| // Copy and paste are bound to Ctrl+Shift+C and Ctrl+Shift+V in your defaults.json. |
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 aioesphomeapi | |
| import asyncio | |
| async def main(): | |
| loop = asyncio.get_running_loop() | |
| cli = aioesphomeapi.APIClient(loop, "foobarhostname", 6053, "foobarpassword") | |
| await cli.connect(login=True) |
NewerOlder