See Darkadia profile
Game name | Status |
---|---|
Bowser’s Fury | Credits * |
Donkey Kong Country | Credits |
Donkey Kong Country 2 | Credits |
Donkey Kong Country 3 | Credits |
Donkey Kong Country: Tropical Freeze | Credits |
Mario vs Donkey Kong | Credits+ |
From 9ed72ef140d40bc1ccea5911b38fa78e7faea160 Mon Sep 17 00:00:00 2001 | |
From: Dan Aloni <[email protected]> | |
Date: Wed, 1 Apr 2020 12:28:15 +0300 | |
Subject: [PATCH 1/2] Support a script to be executed when the device goes up | |
This adds the `ifup_script` config option. The script receives the | |
following environment variables as input: | |
- NET_DEVICE: The name of the network device of the VPN. | |
- DNS_SUFFIX: DNS domain search prefix, if provided by the VPN server. |
See Darkadia profile
Game name | Status |
---|---|
Bowser’s Fury | Credits * |
Donkey Kong Country | Credits |
Donkey Kong Country 2 | Credits |
Donkey Kong Country 3 | Credits |
Donkey Kong Country: Tropical Freeze | Credits |
Mario vs Donkey Kong | Credits+ |
The HPLIP UI is sometimes very buggy when it comes a) detecting plug-ins are already installed, and b) downloading the ones from HP's site. This has been my experience.
This page shows the list of supported devices and whether they need a plugin and for what reason. If you only want to use printing functionality of your device and your print functionality does not require a plugin, you can skip plugin installation with the steps below.
/usr/share/hplip/data/models/models.dat
(or equivalent path).underscore_style
and may not be exactly what is written on your box or device. I have the Color LaserJet MFP M277dw, so I search for m277dw
.plugin=1
. Change this to plugin=0
.hp-setup
.#!/usr/bin/osascript -l JavaScript | |
ObjC.import('stdlib') | |
const t = Application('Google Chrome') | |
.windows[0] | |
.activeTab() | |
t.url = 'chrome://net-internals/#dns' | |
delay(0.5) | |
t.execute({ | |
javascript: 'document.querySelector("#dns-view-clear-cache").click()' | |
}) |
#!/usr/bin/env bash | |
set -e | |
SIGNING_IDENTITY=- | |
mkdir -p ~/dev/retroarch | |
cd ~/dev/retroarch | |
if ! [ -d retroarch ]; then | |
git clone https://github.com/libretro/RetroArch.git retroarch | |
fi |
============================================================================== | |
Language: en [teams] | |
de fr it nl pl pt ru | |
PF: The OpenBSD Packet Filter | |
------------------------------------------------------------------------------ | |
Table of Contents |
#!/usr/bin/env python | |
from datetime import datetime | |
from os import fstat | |
from struct import unpack | |
from typing import (Any, BinaryIO, Mapping, MutableMapping, List, Optional, | |
Sequence, Union, cast) | |
import json | |
import sys | |
__all__ = ('SolMapping', 'parse_sol') |
#!/usr/bin/env python | |
from dataclasses import dataclass | |
from os.path import isdir, join | |
from struct import unpack | |
from typing import Optional, Tuple | |
import logging | |
import os | |
import sys | |
__all__ = ('extract_concatenated_oggs', ) |