There are two parts to networking within QEMU:
- The virtual network device that is provided to the guest (e.g. a PCI network card).
- The network backend that interacts with the emulated NIC (e.g. puts packets onto the host's network).
| # Zellij | |
| context.terminal = ["zellij", "action", "new-pane", "-d", "right", "-c", "--", "bash", "-c"] | |
| # Alacritty | |
| context.terminal = ["alacritty", "-e", "bash", "-c"] | |
| # GNOME Terminal | |
| context.terminal = ["gnome-terminal", "--", "bash", "-c"] | |
| # GNOME Console |
| exiftool -r -d %s -tagsfromfile "%d/%F.json" "-GPSAltitude<GeoDataAltitude" "-GPSLatitude<GeoDataLatitude" "-GPSLatitudeRef<GeoDataLatitude" "-GPSLongitude<GeoDataLongitude" "-GPSLongitudeRef<GeoDataLongitude" "-Keywords<Tags" "-Subject<Tags" "-Caption-Abstract<Description" "-ImageDescription<Description" "-DateTimeOriginal<PhotoTakenTimeTimestamp" "-FileCreateDate<PhotoTakenTimeTimestamp" -ext "*" -overwrite_original -progress --ext json . |
| def sanitize(content): | |
| return content.replace(" ","").replace("\n","").replace("\r","") | |
| def main(): | |
| with open("binary_as_text", "r") as f: | |
| content = f.read() | |
| content = sanitize(content) | |
| bin_content = b'' |
| /* ONE LINE TOOLBAR */ | |
| #navigator-toolbox { | |
| display: flex; | |
| flex-direction: row-reverse; | |
| justify-content: flex-end; | |
| } | |
| #titlebar { | |
| min-width: 40px !important; | |
| flex: 0; |
| #!/usr/bin/env sh | |
| set -o errexit | |
| _local="$HOME/.local/bin" | |
| [ -n `echo $PATH | grep "${_local}"` ] || \ | |
| export PATH="$PATH:${_local}" | |
| which telegram-download 1>2 2>/dev/null || \ | |
| pip install --user telegram-upload |
| #!/bin/bash | |
| ## Author : Aditya Shakya | |
| ## Github : adi1090x | |
| ## Edited by me | |
| PDIR="$HOME/.config/polybar" | |
| LAUNCH="polybar-msg cmd restart" | |
| # Replacing colors |
| /* | |
| Trabalho PAA - Crush | |
| Menor caminho com Dijkstra | |
| Autor: Pedro Henrique Lara Campos (UFSCar RA 726578) | |
| Data: 2018-11-21 | |
| https://run.codes/exercises/view/9772 | |
| */ | |
| #include<stdio.h> | |
| #include<stdlib.h> | |
| #include<stdbool.h> |
| // By Pedro H. Lara Campos (RA 726578) | |
| // Trabalho de PAA | |
| // 2018-09-18 | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <stdbool.h> | |
| #include <string.h> | |
| #define dprintf(...) //fprintf(stderr, __VA_ARGS__) |
| # | |
| # | |
| # Created by Olivato :D | |
| # | |
| # | |
| import pygame, sys | |
| from pygame.locals import * |