More guides:
The easiest way to install Emacs is by using Chocolatey:
More guides:
The easiest way to install Emacs is by using Chocolatey:
STLink Upgrade software is written in Java. As of the date this gist was initially written, it did not seem to work with Java natively installed on Apple M1. It requires x86_64 architecture execution under Rosetta.
This guide is about installing Java OpenJDK 17 support via Homebrew x86_64, on Apple M1 machine, in order to be able to run STLinkUpgrade.jar software by ST Microelectronics.
https://www.st.com/en/development-tools/stsw-link007.html
It is similar to installing Homebrew natively, with added arch --x86_64
prefix before the command line:
The latest builds of Windows 10 and Windows 11 include a build-in SSH server and client that are based on OpenSSH. This means now you can remotely connect to Windows 10/11 or Windows Server 2019 using any SSH client, like Linux distros. Let's see how to configure OpenSSH on Windows 10 and Windows 11, and connect to it using Putty or any other SSH client.
OpenSSH is an open-source, cross-platform version of Secure Shell (SSH) that is used by Linux users for a long time. This project is currently ported to Windows and can be used as an SSH server on almost any version of Windows. In the latest versions of Windows Server 2022/2019 and Windows 11, OpenSSH is built-in to the operating system image.
#!/bin/bash | |
# The default BAR address space available on the CM4 may be too small to allow | |
# some devices to initialize correctly. To avoid 'failed to assign memory' | |
# errors on boot, you can increase the range of the PCIe bus in the Raspberry | |
# Pi's Device Tree (a .dtb file specific to each Pi model). | |
# | |
# You should probably read up on Device Trees if you don't know what they are: | |
# https://www.raspberrypi.org/documentation/configuration/device-tree.md | |
# |
# Connect from macOS to remote Linux server. For example to Debian or Ubuntu. | |
# Prepare remote server. | |
# Enable X11 Forwarding in SSH. | |
vim /etc/ssh/sshd_config | |
#X11Forwarding yes | |
#X11DisplayOffset 10 | |
#X11UseLocalhost no | |
systemctl restart sshd |
$ uname -r
#! /bin/bash | |
# | |
# Diffusion youtube avec ffmpeg | |
# Configurer youtube avec une résolution 720p. La vidéo n'est pas scalée. | |
VBR="2500k" # Bitrate de la vidéo en sortie | |
FPS="30" # FPS de la vidéo en sortie | |
QUAL="medium" # Preset de qualité FFMPEG | |
YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2" # URL de base RTMP youtube |
events { | |
worker_connections 1024; | |
} | |
http { | |
default_type text/html; | |
access_log /dev/stdout; | |
sendfile on; | |
keepalive_timeout 65; |