This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -ss signals the position, in HH:MM:SS format. | |
# -i signals input video | |
# -vframes signals number of video frames | |
# -q:v signals quality, lower the number the better. | |
# screencap1.jpg signals output file name | |
ffmpeg -ss 00:00:02 -i video.mp4 -vframes 1 -q:v 2 screencap1.jpg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# input video URL first | |
# -f signals quality, in this case the best possible | |
youtube-dl https://vimeo.com/156202023 -f best | |
# Best Audio | |
youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 https://www.youtube.com/watch\?v\=SYIXLx7on7w |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* Safe Search and Replace on Database with Serialized Data v2.0.1 | |
* | |
* This script is to solve the problem of doing database search and replace when | |
* developers have only gone and used the non-relational concept of serializing | |
* PHP arrays into single database columns. It will search for all matching | |
* data on the database and change it, even if it's within a serialized PHP | |
* array. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/php | |
<?php | |
/** | |
* PHP script that perform a find and replace in a database dump (tested with | |
* MySQL) with adjustments of the PHP serialize founded. | |
* | |
* Don't forget to escape your "special characters": | |
* "a$b" -> "a\$b" | |
* "a"b" -> "a\"b" | |
* "a`b" -> "a\`b" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Semi-pseudo code below | |
<template> | |
<video :muted="muted"></video> | |
</template> | |
<script> | |
export default { | |
data: function() { | |
return { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AppConfig[:plugins] = ['your-plugins', 'sourcery'] | |
AppConfig[:sourcery_org_id] = 'your-ID-here' | |
AppConfig[:sourcery_endpoint] = 'https://sourcery-dev.web.app' | |
# Especially required if you are building outside of the docker release. | |
AppConfig[:session_expire_after_seconds] = -1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# docker-compose -f docker-compose-release.yml build | |
# docker-compose -f docker-compose-release.yml up | |
version: '3.8' | |
services: | |
app: | |
container_name: as_release_app | |
build: | |
context: . | |
dockerfile: Dockerfile |