cat /proc/sys/net/bridge/bridge-nf-call-iptables
sysctl vm.swappiness=0
swapoff -a
For some reason, it is surprisingly hard to create a bootable Windows USB using macOS. These are my steps for doing so, which have worked for me in macOS Monterey (12.6.1) for Windows 10 and 11. After following these steps, you should have a bootable Windows USB drive.
You can download Windows 10 or Windows 11 directly from Microsoft.
After plugging the drive to your machine, identify the name of the USB device using diskutil list
, which should return an output like the one below. In my case, the correct disk name is disk2
.
{{- /* trivy fs . --ignore-unfixed --format template -t "@$(realpath ~/trivy-markdown.tpl)" > vuln.md */ -}} | |
| Library/Package | CVE | Severity | Installed Version | Fixed Version | Title | | |
|-----------------|-------------------|----------|--------------------|---------------|-------| | |
{{- range . }} | |
{{- range .Vulnerabilities }} | |
| {{ .PkgID }} | {{ .VulnerabilityID }} | {{ .Severity }} | {{ .InstalledVersion }} | {{ .FixedVersion }} | {{ .Title }} | | |
{{- end }} | |
{{- end }} |
Source: https://www.truenas.com/community/threads/enable-wol.95856/
As an Admin user you can use the ethtool with sudo rights to check if WoL is available on your system. The usual ethernet NIC name is "enp3s0" so I use everytime this name.
<?php | |
namespace Tests\Support\Extension; | |
use Codeception\Event\SuiteEvent; | |
use Codeception\Event\TestEvent; | |
use Codeception\Events; | |
use Codeception\Exception\ExtensionException; | |
use Codeception\Extension; | |
use PHPUnit\Framework\SkippedTestError; |
#!/bin/bash +e | |
#0 black COLOR_BLACK 0,0,0 | |
#1 red COLOR_RED 1,0,0 | |
#2 green COLOR_GREEN 0,1,0 | |
#3 yellow COLOR_YELLOW 1,1,0 | |
#4 blue COLOR_BLUE 0,0,1 | |
#5 magenta COLOR_MAGENTA 1,0,1 | |
#6 cyan COLOR_CYAN 0,1,1 | |
#7 white COLOR_WHITE 1,1,1 |
#!/bin/bash +e | |
#0 black COLOR_BLACK 0,0,0 | |
#1 red COLOR_RED 1,0,0 | |
#2 green COLOR_GREEN 0,1,0 | |
#3 yellow COLOR_YELLOW 1,1,0 | |
#4 blue COLOR_BLUE 0,0,1 | |
#5 magenta COLOR_MAGENTA 1,0,1 | |
#6 cyan COLOR_CYAN 0,1,1 | |
#7 white COLOR_WHITE 1,1,1 |
https://www.europa-passage.de/gastronomie/alle/
Datum | Wo | Bild |
---|---|---|
10.11.2017 | Bao (Burger) | |
? | Pommes Freunde | ? |
16.01.2018 | Vincent Vegan |
#!/bin/bash | |
# | |
# Depends on buster.js and phantom.js being installed | |
# | |
BUSTERPATH_OSX="/usr/local/lib/node_modules/buster" | |
BUSTERPATH_GNU="/usr/lib/node_modules/buster" | |
BUSTER_PHANTOMSCRIPT="script/phantom.js" | |
BUSTER_CMD="buster-server" |