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/python3 | |
# -*- coding: utf-8 -*- | |
# | |
# PyDice.py - version 2.0 - 08 july 2024 | |
# Copyright (c) 2024 Daniel Dias Rodrigues <[email protected]> | |
# | |
# This program is free software; you can redistribute it and/or modify it | |
# under the terms of the Creative Commons Zero 1.0 Universal (CC0 1.0) Public | |
# Domain Dedication (https://creativecommons.org/publicdomain/zero/1.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
#!/bin/bash | |
# First, make a copy of the original CSV file. We gonna work with the copy. | |
cp $1 $2 | |
# If no name is given for the output file, use a default. | |
if [ -z $2 ]; then | |
output='passwords_output.csv' | |
else | |
output=$2 | |
fi |
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 zsh | |
########################### | |
# ZAP | |
# By Daniel Dias Rodrigues | |
########################### | |
# Se o parâmetro for -c, compactar | |
if [[ $1 == "-c" || $1 == "c" ]]; then | |
local args=("$@") # array de argumentos |
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
msgid "" | |
msgstr "" | |
"Project-Id-Version: Exemplo\n" | |
"Report-Msgid-Bugs-To: [email protected]\n" | |
"POT-Creation-Date: 2021-08-05 14:45-0300\n" | |
"PO-Revision-Date: 2023-06-27 22:02-0300\n" | |
"Last-Translator: Daniel Dias Rodrigues <danieldiasr@gmail." | |
"com>\n" | |
"Language-Team: \n" | |
"Language: pt_BR\n" |
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
import locale, os, random | |
## CONFIGURATION ### | |
try: | |
lang = locale.getdefaultlocale()[0][:2] # ('pt_BR', 'UTF-8') | |
except: | |
lang = "en" | |
# DECLARAÇÃO DE VARIÁVEIS E FUNÇÕES | |
######################################################################## |
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 python3 | |
# CALCULADORA DE DATA JULIANA | |
# por Daniel Dias Rodrigues em 2459259.7188310185 | |
# Usando algoritmos da Wikipédia. | |
# Agradecimentos a "Jc3s5h" da Wikipedia por me ajudar a corrigir o algoritmo. | |
################################################################################ | |
# This source code is released under the license | |
# Creative Commons CC0 1.0 Universal Public Domain Dedication | |
# <https://creativecommons.org/publicdomain/zero/1.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
# Alone Among the Stars v2.0 | |
# ================================================= | |
# Por Takuma Okada | noroadhome.itch.io | |
# Traduzido por Daniel Dias Rodrigues | |
# Script Python por Daniel Dias Rodrigues | |
# https://www.gurpzine.com.br/alone-among-the-stars | |
# ================================================= | |
import os, time, random | |
def LimparTela(linhas=100): |
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 python3 | |
# -*- coding: utf-8 -*- | |
import time, sys, itertools, os, string, datetime | |
from zipfile import ZipFile | |
def LimparTela(linhas=100): | |
if os.name == 'posix': | |
os.system('clear') | |
elif os.name in ('nt', 'dos', 'ce'): | |
os.system('cls') |
NewerOlder