Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus
#' Making several text files from a single CSV file | |
#' | |
#' Convert a single CSV file (one text per row) into | |
#' separate text files. A function in R. | |
#' | |
#' To use this function for the first time run: | |
#' install.packages("devtools") | |
#' then thereafter you just need to load the function | |
#' fom github like so: | |
#' library(devtools) # windows users need Rtools installed, mac users need XCode installed |
[user] | |
name = Julien Bisconti | |
email = ****** | |
[core] | |
excludesfile = ~/.gitignore | |
pager = diff-so-fancy | less --tabs=1,5 -R | |
editor = /usr/bin/vim | |
[alias] | |
wow = log --all --graph --decorate --oneline --simplify-by-decoration |
We did it! We broke gist.github.com ;) So head over to the new home! Thank you all!
2021.10.20: https://github.com/AveYo/MediaCreationTool.bat now open for interaction
Not just an Universal MediaCreationTool wrapper script with ingenious support for business editions,
A powerful yet simple windows 10 / 11 deployment automation tool as well!
"workbench.colorCustomizations": { | |
// Contrast Colors - The contrast colors are typically only set for high contrast themes. If set, they add an additional border around items across the UI to increase the contrast. | |
"contrastActiveBorder": "", | |
"contrastBorder": "", | |
// Base Colors | |
"focusBorder": "", | |
"foreground": "", | |
"widget.shadow": "", | |
"selection.background": "", | |
"descriptionForeground": "", |
"use client"; | |
import { FieldValues, UseFormProps, UseFormReturn } from "react-hook-form"; | |
import { ApiCollections } from "../../../@types/api"; | |
export const DirectusInput = (props: { | |
element: ApiCollections["form_components"]; | |
hookForm: UseFormReturn<FieldValues, any>; | |
}) => { | |
const { element, hookForm } = props; |