A curated list of generative AI applications for creating, editing, and enhancing visual assets: images, videos, 3D models and more.
💎 : nearly unmatched
A curated list of generative AI applications for creating, editing, and enhancing visual assets: images, videos, 3D models and more.
💎 : nearly unmatched
Note
Ubuntu 24.04 Compatibility
This guide is not compatible with Ubuntu 24.04 and a clear migration path from the Ubuntu 22.04 setup described here is not available. A guide for Ubuntu 24.04 has not been prepared.
The major differences in Ubuntu 24.04 are:
| /* | |
| 1. Replace my snippets json with yours. | |
| 2. Copy paste this whole file into your browser console. | |
| */ | |
| beeftext_json = { | |
| "combos": [ | |
| { | |
| "creationDateTime": "2019-01-25T11:23:30.000", | |
| "enabled": true, |
WSL 2 uses a Hyper-V Virtual Network adapter. Network connectivity works without any issue when a VPN is not in use. However when a Cisco AnyConnect VPN session is established Firewall Rules and Routes are added which breaks connectivity within the WSL 2 VM. This issue is tracked WSL/issues/4277
Below outline steps to automatically configure the Interface metric on VPN connect and update DNS settings (/etc/resolv.conf) on connect/disconnect.
| ############################################## | |
| # Sample client-side OpenVPN 2.0 config file # | |
| # for connecting to multi-client server. # | |
| # # | |
| # This configuration can be used by multiple # | |
| # clients, however each client should have # | |
| # its own cert and key files. # | |
| # # | |
| # On Windows, you might want to rename this # | |
| # file so it has a .ovpn extension # |
| Set WshShell = WScript.CreateObject("WScript.Shell") | |
| WshShell.Run """%PROGRAMFILES(x86)%\Cisco\Cisco AnyConnect Secure Mobility Client\vpnui.exe""" | |
| WScript.Sleep 1500 | |
| WshShell.AppActivate "Cisco AnyConnect Secure Mobility Client" | |
| WshShell.SendKeys "{TAB}" | |
| WshShell.SendKeys "{TAB}" |
sudo apt-get update
sudo apt-get install cmake
sudo apt-get install libusb-1.0-0-dev
mkdir ~/proj
cd ~/proj
git clone https://github.com/texane/stlink stlink-repo
cd stlink-repo
| #!/usr/bin/env python | |
| # Jacob Salmela | |
| # 2016-06-02 | |
| # Writes text to a PDF at coordinates. Use for quickly filling out forms that you use regularly. | |
| # This takes some manual setup, but saves a ton of time once done | |
| # http://stackoverflow.com/a/17538003 | |
| # Make sure to install the two utilities below first | |
| # sudo easy_install pyPdf | |
| # sudo easy_install reportlab |
| #requires -version 4.0 | |
| #requires -modules Storage,DISM | |
| #Requires -RunAsAdministrator | |
| <# | |
| .NOTES | |
| =========================================================================== | |
| Created with: SAPIEN Technologies, Inc., PowerShell Studio 2016 v5.2.117 | |
| Created on: 3/16/2016 10:05 | |
| Created by: Colin Squier <[email protected]> | |
| Filename: Imaging-Win10.ps1 |
| # PS-BGInfo | |
| # Powershell script that updates the background image with a random image from a folder and writes out system info text to it. | |
| # run as a lower priority task | |
| [System.Threading.Thread]::CurrentThread.Priority = 'BelowNormal' | |
| # Configuration: | |
| # Font Family name | |
| $font="Input" |