- Networking
- System installation & LUKS
- Time & date
Navigate to %localappdata%\fontconfig\cache
Sort the files by date and check the most recent ones. There should be:
- some-long-hash (usually 1MB or more)
- some-long-hash.NEW (usually 1MB or more, slightly bigger that the one above if you added fonts)
Rename someverylongname
to someverylongname.OLD
This document describes hot to build ares emulator from a source code on a Fedora system. This build uses GTK3 as this is the default version available in modern Fedora systems.
ares is a multi-system emulator that is a descendent of higan and bsnes, and focuses on accuracy and preservation.
- Official homepage of ares
- Source code repository on github
This file contains hidden or 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
#ifndef __F_WINHANDLES_HPP__ | |
#define __F_WINHANDLES_HPP__ | |
typedef void* HANDLE; | |
typedef unsigned long long WPARAM; | |
typedef long long LPARAM; | |
typedef long long LRESULT; | |
#define FORWARD_DECLARE_HANDLE(name) structname##__; typedef struct name##__ *name; | |
FORWARD_DECLARE_HANDLE(HINSTANCE); |
This article describes how to add pip, install custom modules and use an interpreter form the embeddable package via batch files.
- Navigate to https://www.python.org/downloads/
- Scroll to Python releases by version number section and choose Download for a required version
Add the following config to .zshrc
:
# Load colors
autoload -U colors && colors
# Load version control information
autoload -Uz vcs_info
precmd() { vcs_info }