ffmpeg is a fast video and audio converter that can also grab from a live audio/video source.
- -h show all options
- -h(elp) topic show help
- -version show version
- -formats show available formats
| // ==UserScript== | |
| // @name Add AlpineJs to Tailwind UI | |
| // @namespace http://tampermonkey.net/ | |
| // @version 3.0 | |
| // @description Add Alpine JS code to Tailwind Ui copy/paste | |
| // @author https://gist.github.com/KevinBatdorf/8bd5f808fff6a59e100dfa08a7431822 | |
| // @match https://tailwindui.com/components/* | |
| // @grant none | |
| // ==/UserScript== |
| /* | |
| * MIT License | |
| * | |
| * Copyright (c) 2023-2024 Fabio Lima | |
| * | |
| * 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 |
| CONFIG = {} | |
| NOTION_TOKEN = "NOTION_TOKEN" | |
| NOTION_CONFIG = "NOTION_CONFIG" | |
| JIRA_STOCKY_URL="Jira Stocko Api" | |
| JIRA_STOCKY_USER="Jira Stocko User" | |
| JIRA_STOCKY_KEY="Jira Stocko Key" | |
| NOTION_CONFLUENCE_DB = "Confluence DB" |
| version: "3" | |
| services: | |
| traefik: | |
| image: "traefik:v2.2" | |
| container_name: "traefik" | |
| command: | |
| # Globals | |
| - "--log.level=DEBUG" | |
| - "--api=true" |
| version: "3.3" | |
| services: | |
| caddy: | |
| image: abiosoft/caddy:1.0.3-no-stats | |
| container_name: caddy | |
| hostname: caddy | |
| restart: unless-stopped | |
| volumes: |
| import { MiddlewareConsumer, Module, NestModule } from "@nestjs/common"; | |
| import { APP_INTERCEPTOR } from "@nestjs/core"; | |
| import { RequestContextMiddleware } from "./request-context/request-context.middleware"; | |
| import { RequestContextModule } from "./request-context/request-context.module"; | |
| @Module({ | |
| imports: [ | |
| ConfigModule.load(path.resolve(__dirname, "config", "**/!(*.d).{ts,js}")), | |
| WebappUsersModule, | |
| RequestContextModule, |
| #!/bin/sh | |
| if [ $(docker ps -f name=blue-cms -q) ] | |
| then | |
| BG_NEW="green-cms" | |
| BG_OLD="blue-cms" | |
| else | |
| BG_NEW="blue-cms" | |
| BG_OLD="green-cms" | |
| fi |
| version: '3' | |
| services: | |
| traefik: | |
| image: traefik:v2.0 | |
| container_name: traefik | |
| restart: unless-stopped | |
| security_opt: | |
| - no-new-privileges:true | |
| networks: |
| import base64 | |
| import json | |
| from phpserialize import loads | |
| import hashlib | |
| import hmac | |
| from Crypto.Cipher import AES | |
| def decrypt(payload, key): | |
| """ | |
| Decrypt strings that have been encrypted using Laravel's encrypter (AES-256 encryption). |