See also:
Service | Type | RAM | Storage | Limitations |
---|---|---|---|---|
👉 Adaptable | PaaS | 256 MB | Non-persistent? (1 GB database storage available) | |
AWS EC2 | IaaS | 1 GB |
C++ package management can be complicated.
Below are some key tools involved:
Make runs commands defined in a Makefile, for example, to build and install programs with the compiler and linker. For our purposes, we won't worry about what this looks like; you only need to understand its purpose in relation to CMake.
Batch apply hex edits The edits to apply come from a CSV file in the same path
hexpatcher.ps1
has a short URL: https://git.io/vpNim
Start PowerShell 3.0+ and paste in:
Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
Convert WAV to MP3, mix down to mono (use 1 audio channel), set bit rate to 64 kbps and sample rate to 22050 Hz:
apply plugin: 'com.android.application' | |
android { | |
... | |
... | |
defaultConfig { | |
... | |
versionCode 2000 | |
... |
<!DOCTYPE html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Certetrminal</title> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/xterm.css" /> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/xterm.js"></script> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/addons/terminado/terminado.js"></script> | |
<script src="{{ static('terminado.js') }}"></script> |
import os | |
import json | |
import hashlib | |
import hmac | |
import base64 | |
from Crypto.Cipher import AES | |
from phpserialize import loads, dumps | |
def mcrypt_decrypt(value, iv): |
Boost is easy when you are using headers or pre-compiled binaries for visual studio, but it can be a pain to compile from source on windows, especially when you want the 64-bit version of MinGW to use gcc/g++. This installation process should be thorough enough to simply copy and paste commands, but robust enough to install everything you need.
Note: if you need to install any of the libraries that need dependencies, see this great answer from stack overflow
Get the MinGW installer mingw-w64-install.exe from Sourceforge
Get the boost_1_68_0.zip source from Sourceforge
__Note: This should work perfectly w