Version | Offset | Offset | Change |
---|---|---|---|
3093 | Win x64 | 0xF0A8B | 85 -> 3B |
3094 | Win x64 | 0xF0A8B | 85 -> 3B |
3095 | Win x64 | 0xF0BDF | 85 -> 3B |
3100 | Win x64 | 0xE888D | F8 -> E0 |
3101 | Win x64 | 0xE7721 | F8 -> E0 |
3102 | Win x64 | 0xE849D | F8 -> E0 |
These commands are based on a askubuntu answer http://askubuntu.com/a/581497 | |
To install gcc-6 (gcc-6.1.1), I had to do more stuff as shown below. | |
USE THOSE COMMANDS AT YOUR OWN RISK. I SHALL NOT BE RESPONSIBLE FOR ANYTHING. | |
ABSOLUTELY NO WARRANTY. | |
If you are still reading let's carry on with the code. | |
sudo apt-get update && \ | |
sudo apt-get install build-essential software-properties-common -y && \ | |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y && \ |
Using VAAPI's hardware accelerated video encoding on Linux with Intel's hardware on FFmpeg and libav
Hello, brethren :-)
As it turns out, the current version of FFmpeg (version 3.1 released earlier today) and libav (master branch) supports full H.264 and HEVC encode in VAAPI on supported hardware that works reliably well to be termed "production-ready".
% upLaTeX文書, 文字コードはUTF-8 | |
\documentclass[uplatex,a4paper]{jsarticle} | |
% 源ノアレはアレなので 'directunicode*' が必要 | |
\usepackage[directunicode*,noalphabet]{pxchfon}[2017/04/08]% v0.9 | |
\usepackage[english]{babel} | |
\usepackage[main=japanese]{pxbabel} | |
% TTC版の源ノアレを使う | |
\setminchofont [0]{SourceHanSerif-Regular.ttc} | |
\setkoreanminchofont [1]{SourceHanSerif-Regular.ttc} | |
\setschineseminchofont[2]{SourceHanSerif-Regular.ttc} |
## /etc/firewall.user | |
# This file is interpreted as shell script. | |
# Put your custom iptables rules here, they will | |
# be executed with each firewall (re-)start. | |
# Internal uci firewall chains are flushed and recreated on reload, so | |
# put custom rules into the root chains e.g. INPUT or FORWARD or into the | |
# special user chains, e.g. input_wan_rule or postrouting_lan_rule. |
After installing the latest Wine release, which currently is 2.0 (I chose the development branch) on XQuartz 2.7.11, I was having problems with blurry text in both winecfg, regedit and other programs launched through Wine. After trying to enable font smoothing and font replacements (source) with only slight changes I found someone trying to solve the same issues (source), albeit compiling everything from scratch which I don't want to do. It turns out that the Retina display on my MacBook Pro was causing the issues with blurry fonts because Wine was not using the "real" resolution, only the reported "lower resolution".
To enable Retina support in Wine open the registry editor via a terminal, preferably through Wine Devel.app installed with Wine:
$ wine regedit
Then find the folder/key:
sudo apt-get update | |
sudo apt-get install -y git cmake | |
git clone https://github.com/Kitware/CMake.git | |
cd CMake | |
Make sure you are on a supported release | |
git checkout tags/v3.9.0 | |
mkdir out | |
cd out |
/* Note: this Google copyright notice only applies to the original file, which has large sections copy-pasted here. my changes are under CC0 (public domain). | |
* Copyright 2015 Google Inc. | |
* | |
* Use of this source code is governed by a BSD-style license that can be | |
* found in the LICENSE file. | |
*/ | |
/* | |
The official instructions don't work well. These alternative instructions are intended to be the shortest path to get a minimal setup running. |