A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| % Fourier Series of Square Wave - illustrated and computed by TeX. | |
| % Author : Seungwon Park (swpark.me) | |
| % convert -delay 10 -loop 0 -density 400 -alpha remove square-wave.pdf square-wave.gif | |
| \documentclass[tikz]{standalone} | |
| \usepackage{tikz} | |
| \usetikzlibrary{calc} | |
| \usepackage{amsmath,amssymb} | |
| \usepackage{centernot} | |
| \begin{document} | |
| \foreach \angle in {0,4,...,360}{ |
| _contracts = {} | |
| class Contract: | |
| @classmethod | |
| def __init_subclass__(cls): | |
| _contracts[cls.__name__] = cls | |
| def __set__(self, instance, value): | |
| self.check(value) |
A list of useful commands for the FFmpeg command line tool.
Download FFmpeg: https://www.ffmpeg.org/download.html
Full documentation: https://www.ffmpeg.org/ffmpeg.html
| #!/bin/sh | |
| # onedrive-ubu.sh | |
| # A BASH script to set up OneDrive integration with GNOME on Ubuntu | |
| # Copyright (C) 2018 Garrett Mills ([email protected]) | |
| # This software is licensed under the MIT License. | |
| # This sofware is provided without warranty or even any implied intent of purpose. | |
| # | |
| # OnedriveD: https://github.com/xybu/onedrived-dev |
| # 셀레늄 패키지와 rvest 패키지를 설치합니다. | |
| source("https://install-github.me/ropensci/RSelenium") | |
| install.packages("rvest") | |
| install.packages("dplyr") | |
| # 패키지를 불러서 사용할 준비를 합니다. | |
| library(RSelenium) | |
| library(rvest) | |
| library(dplyr) |
| <# | |
| .SYNOPSIS | |
| Converts Mermaid diagram code to SVG with a text-based UI | |
| .DESCRIPTION | |
| This PowerShell script provides a menu-driven interface to convert Mermaid diagram code to SVG files | |
| using either the Mermaid CLI (if installed) or the Mermaid Live Editor API. | |
| .PARAMETER OutputPath | |
| Path to save the SVG file (default: current directory) | |
| .EXAMPLE | |
| .\mermaid_to_svg.ps1 |