TL;DR:
- The design of both search and recommendations is to find and filter information
- Search is a "recommendation with a null query"
- Search is "I want this", recommendations is "you might like this"
| #!/usr/bin/env python3 | |
| # include the decorator | |
| from apprise.decorators import notify | |
| from apprise.logger import logger | |
| import requests | |
| import re | |
| import json | |
| import sys |
TL;DR:
| brew uninstall --force --ignore-dependencies ffmpeg | |
| brew install --ignore-dependencies chromaprint | |
| brew install amiaopensource/amiaos/decklinksdk | |
| brew cask install xquartz | |
| options=$(brew options homebrew-ffmpeg/ffmpeg/ffmpeg | grep -vE '\s' | grep -- '--with-' | grep -vi game-music-emu | tr '\n' ' ') | |
| brew install homebrew-ffmpeg/ffmpeg/ffmpeg ${options} |
| const puppeteer = require('puppeteer'); | |
| const imagemin = require('imagemin'); | |
| const imageminPngquant = require('imagemin-pngquant'); | |
| // Get the URL and the slug segment from it | |
| const url = process.argv[2]; | |
| const segments = url.split('/'); | |
| const slug = segments[segments.length-2]; | |
| (async () => { |
| I was able to find a VERY QUICK AND DIRTY way to use the media-autobuild suite to compile my own 64-bit static FFmpeg for Windows with the NDI library. | |
| Download it and extract to a place on your computer, and keep note of the path. I put it in "D:\ndi\media-autobuild_suite-master", so for the sake of these instructions when you see "<autobuild>", you need to substitute whatever path you've put it in. | |
| During the initial setup process, request to use the static build and add whatever else you'd like to have in your ffmpeg, then pause what you're doing when the on-screen prompts tell you the ffmpeg_options file has been written, then go into <autobuild>\build\ffmpeg_options.txt and add somewhere a line with | |
| Code: | |
| --enable-libndi_newtek | |
| import boto3 | |
| import datetime | |
| def lambda_handler(event, context): | |
| print("Connecting to RDS") | |
| client = boto3.client('rds') | |
| print("RDS snapshot backups stated at %s...\n" % datetime.datetime.now()) | |
| client.create_db_snapshot( | |
| DBInstanceIdentifier='web-platform-slave', |