Some Useful After Effects Expression for Editing Text Proporties

Setting multiple features: Here are some other settings: Here are the set of functions available for text styling in After Effects expressions (all used on the style object): Function Purpose setFont(fontName, [startIndex], [endIndex]) Set font by PostScript/system name setFontSize(size, [startIndex], [endIndex]) Set font size setFauxBold(boolean, [startIndex], [endIndex]) Enable/disable faux bold setFauxItalics(boolean, [startIndex], [endIndex]) Enable/disable faux italics…

Image Merger Grid

Image Merger Grid Description Image Merger Grid is a simple Python desktop application that lets you batch‑merge images into customizable grid layouts (e.g., 2×2, 4×4, or any rows×columns) with adjustable margins and background colors. Built with Tkinter and Pillow, it automatically processes all images in a folder, pads incomplete grids with blanks, and shows real‑time…

Raster to Vector Halftone Generator

Vector Halftone Generator is a Python-based application that transforms raster images into artistic vector halftones. With an intuitive graphical user interface built using PyQt5, this tool enables designers and digital artists to create unique halftone effects that can be easily exported as SVG files for further editing in graphic design software like Adobe Illustrator. Overview…

System Environment Diagnostic and GPU Information Script

System Environment Diagnostic and GPU Information Script This Python script provides a comprehensive overview of the system environment. It displays the Python version, PyTorch details (if installed), the maximum supported CUDA version from nvidia-smi, the installed CUDA Toolkit version (using nvcc), the NVIDIA driver version, and detailed GPU diagnostics such as memory usage and temperatures.…

Conda Environment Manager – Python Script

Pythonimport tkinter as tk from tkinter import ttk, messagebox, filedialog import os import shutil from pathlib import Path import sys import subprocess from datetime import datetime class CondaEnvManager: def __init__(self, root): self.root = root self.root.title("Conda Environment Manager") self.root.geometry("1000×600") self.main_frame = ttk.Frame(self.root, padding="10") self.main_frame.grid(row=0, column=0, sticky="nsew") self.root.columnconfigure(0, weight=1) self.root.rowconfigure(0, weight=1) self.create_widgets() self.refresh_env_list() def create_widgets(self): # Control…