This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ONE LINE TOOLBAR */ | |
#navigator-toolbox { | |
display: flex; | |
flex-direction: row-reverse; | |
justify-content: flex-end; | |
} | |
#titlebar { | |
min-width: 40px !important; | |
flex: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# From https://www.hiroom2.com/2017/09/24/parrotsec-3-8-docker-engine-en/ | |
# Changelog: | |
# @DavoedM: Apr 3, 2020 | |
# @C922A10971734: Jan 19, 2023 | |
set -e | |
# Install dependencies. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Author : Aditya Shakya | |
## Github : adi1090x | |
## Edited by me | |
PDIR="$HOME/.config/polybar" | |
LAUNCH="polybar-msg cmd restart" | |
# Replacing colors |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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__) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# | |
# Created by Olivato :D | |
# | |
# | |
import pygame, sys | |
from pygame.locals import * |
NewerOlder