This guide is basically telling where you can get the best manga and LN
Directory
This guide is basically telling where you can get the best manga and LN
Directory
This gist will no longer be updated as the changelog will be on the official website.
Converted via https://domchristie.github.io/turndown
| # OpenBSD dhcpcd configuration to get an IPv6 prefix delegation from a native-IPv6 ISP (e.g., Comcast). | |
| # | |
| # Here, 'axe0' is the interface connected to the cable modem, 'em0' is on the LAN. | |
| # The configuration will ask for a /60, and will assign the /64 with subnet ID 1 | |
| # to em0. | |
| # Use an IPv6 router advertisement daemon to advertise this to the rest of the network! | |
| allowinterfaces axe0 | |
| ipv6only | |
| nooption domain_name_servers |
| #!/bin/sh | |
| egress=$1 | |
| internal=$2 | |
| # This should set up ipv6 on XFinity or Comcast on OpenBSD 6.1 | |
| # Stop everything | |
| /usr/bin/pkill dhcp6c | |
| route -qn delete -inet6 default | |
| ifconfig $egress -inet6 |
| #!/bin/bash | |
| echo "*** SVG 2 ICNS ***" | |
| if [ $# -ne 1 ]; then | |
| echo "Usage: svg2icns filename.svg" | |
| exit 100 | |
| fi | |
| filename="$1" | |
| name=${filename%.*} | |
| ext=${filename##*.} | |
| echo "processing: $name" |
| [Unit] | |
| Description=SocketCAN interface can0 with a baudrate of 250000 | |
| After=multi-user.target | |
| [Service] | |
| Type=oneshot | |
| RemainAfterExit=yes | |
| ExecStart=/sbin/ip link set can0 type can bitrate 250000 ; /sbin/ifconfig can0 up | |
| ExecReload=/sbin/ifconfig can0 down ; /sbin/ip link set can0 type can bitrate 250000 ; /sbin/ifconfig can0 up | |
| ExecStop=/sbin/ifconfig can0 down |
curl to get the JSON response for the latest releasegrep to find the line containing file URLcut and tr to extract the URLwget to download itcurl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \| convert -density 256x256 -background transparent favicon.svg -define icon:auto-resize -colors 256 favicon.ico |