redis-server --version
redis-cli --version
apt-get install build-essential
Usage: configure [options] [assignments] | |
Configure understands variable assignments like VAR=value on the command line. | |
Each uppercased library name (obtainable with -list-libraries) supports the | |
suffixes _INCDIR, _LIBDIR, _PREFIX (INCDIR=PREFIX/include, LIBDIR=PREFIX/lib), | |
_LIBS, and - on Windows and Darwin - _LIBS_DEBUG and _LIBS_RELEASE. E.g., | |
ICU_PREFIX=/opt/icu42 ICU_LIBS="-licui18n -licuuc -licudata". | |
It is also possible to manipulate any QMAKE_* variable, to amend the values | |
from the mkspec for the build of Qt itself, e.g., QMAKE_CXXFLAGS+=-g3. |
import QtQuick 2.12 | |
import QtQuick.Controls 2.12 | |
import QtQuick.Layouts 1.12 | |
import QtGraphicalEffects 1.0 | |
import QtQuick.Controls.Material 2.3 | |
Popup { | |
id: globalPopUpDialog | |
property var title : "Unknown title" |
package main | |
import ( | |
"crypto/rand" | |
"crypto/rsa" | |
"crypto/x509" | |
"crypto/x509/pkix" | |
"encoding/pem" | |
"fmt" | |
"math/big" |
# Define where to store the generated certs and metadata. | |
DIR="$(pwd)/tls" | |
# Optional: Ensure the target directory exists and is empty. | |
rm -rf "${DIR}" | |
mkdir -p "${DIR}" | |
# Create the openssl configuration file. This is used for both generating | |
# the certificate as well as for specifying the extensions. It aims in favor | |
# of automation, so the DN is encoding and not prompted. |
"""Downloads and extract the Visual C++ Redistributables. | |
This is useful when working with minidump files as the user may be running | |
with a new different version of the runtime. This script aims to maintain | |
a copy of the various versions. | |
Versions are normally added once I encounter them, in November 2022, I added | |
a rather large back catalogue of versions. | |
This requires dark.exe from Wix (http://wixtoolset.org/releases/) and |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using Microsoft.AspNetCore.Builder; | |
using Microsoft.AspNetCore.Hosting; | |
using Microsoft.Extensions.Configuration; | |
using Microsoft.Extensions.DependencyInjection; | |
using Microsoft.AspNetCore.Routing; | |
using Microsoft.AspNetCore.Http; |
import QtQuick 2.0 | |
Item { | |
id: arrow | |
property var origin: null | |
property var end: null | |
property int duration: 2000 | |
property color color: "red" |
/* | |
Go-Language implementation of an SSH Reverse Tunnel, the equivalent of below SSH command: | |
ssh -R 8080:127.0.0.1:8080 operatore@146.148.22.123 | |
which opens a tunnel between the two endpoints and permit to exchange information on this direction: | |
server:8080 -----> client:8080 |