- Latest BIOS file
- ME Analyzer
- (CS)ME System Tools
- (CS)ME Firmware
first thing to do
If the input and output filenames don't contain spaces, quotation marks or other special characters:
ffmpeg -i input.webm -c:v libx264 -preset slow -crf 22 -c:a aac -b:a 128k output.mp4
#!/usr/bin/env bash | |
SCRIPT_VERSION="1.0" | |
usage() { | |
echo "Uso: $0 [OPTIONS] [where-to-look] [what-to-look] [replacement]" | |
echo | |
echo "It looks in the given path and replaces matches of the given regex with the given replacement." | |
echo | |
echo "Options:" |
import QtQuick 2.0 | |
/*! | |
An alternative implementation, | |
this one causes a binding loop for some reason. | |
*/ | |
Rectangle { | |
width: 500 | |
height: 300 |
#!/usr/bin/env python | |
import datetime | |
from sqlalchemy import create_engine | |
from sqlalchemy import Column, Integer, String, DateTime | |
from sqlalchemy.schema import CheckConstraint | |
from sqlalchemy.orm import validates | |
from sqlalchemy.orm import sessionmaker | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlalchemy.exc import IntegrityError |
#!/usr/bin/env sh | |
sudo apt-get update -y && \ | |
sudo apt-get upgrade -y && \ | |
sudo apt-get dist-upgrade -y && \ | |
sudo apt-get install build-essential software-properties-common -y && \ | |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y && \ | |
sudo apt-get update -y && \ | |
sudo apt-get install gcc-9 g++-9 -y && \ | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-9 && \ |