Some notes and techniques for reverse engineering Webpack (and a little bit about React/Vue/Angular) apps.
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
# Copied from https://trac.ffmpeg.org/wiki/CompilationGuide/Centos | |
yum install -y autoconf automake bzip2 cmake freetype-devel gcc gcc-c++ git libtool make mercurial pkgconfig zlib-devel | |
mkdir ~/ffmpeg_sources | |
# NASM | |
cd ~/ffmpeg_sources | |
curl -O -L https://www.nasm.us/pub/nasm/releasebuilds/2.15.05/nasm-2.15.05.tar.bz2 | |
tar xjvf nasm-2.15.05.tar.bz2 |
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
// Instagram started setting cross-origin-resource-policy: same-origin when it sees bad referer headers. | |
// this change leads to ERR_BLOCKED_BY_RESPONSE error and broken images if instagram image is embedded to external website. | |
// to mitigate this, simple image proxy can be used. | |
// Steps to install this worker: | |
// 1. Create CNAME cdn.<yourdomain.com> in your CloudFlare panel | |
// 2. Create new worker and put the code below into the worker code | |
// 3. Setup worker route so the worker launches on your cdn. subdomain. | |
// 4. Modify your image urls from | |
// https://scontent-arn2-1.cdninstagram.com/v/t51.2885-15/sh0xxx.jpg | |
// to: |