MYSQL
PHP
https://www.php.net/downloads.php
COMPOSER
MYSQL
PHP
https://www.php.net/downloads.php
COMPOSER
GUIA EXTENSO DE PROGRAMAÇÃO
📚 SITES PARA ESTUDAR PROGRAMAÇÃO:
🔖 Seja Dev Full Stack: https://sejadevfullstack.com
🔖 ROCKETSEAT: https://www.rocketseat.com.br
import ctypes, base64;ctypes.windll.WINMM.mciSendStringW(base64.b64decode('c2V0IGNkYXVkaW8gZG9vciBvcGVu').decode('utf8'), None, 0, None) |
https://sourceforge.net/projects/gladewin32/
pacman -S mingw-w64-x86_64-glade
pacman -S mingw-w64-x86_64-gobject-introspection
pacman -S mingw-w64-x86_64-gtk3
pacman -S mingw-w64-x86_64-gtksourceview3
#!/usr/bin/env python3 | |
import time | |
class Debugger: | |
debug = True | |
def __init__(self, message): | |
self.message = message | |
self.t1 = time.time() | |
def __enter__(self): |
#!/usr/bin/bash | |
log_file="/home/$USER/Projects/log.txt" | |
export LC_ALL="en_US.UTF-8" | |
exec > >(tee -a "$log_file") 2>&1 | |
function create-python-app() { | |
echo "Creating and entering folder..." | |
mkdir $1 |
https://f-droid.org/pt_BR/packages/com.termux/
https://play.google.com/store/apps/details?id=studio.com.techriz.andronix
import tinytag | |
import glob | |
import sys | |
def get_mp3_duration(filename): | |
"""Function to get the duration of an MP3 file using TinyTag""" | |
tag = tinytag.TinyTag.get(filename) | |
return tag.duration | |
def format_duration_in_minutes_seconds(seconds): |
''' | |
exemplo de uso: python app.py artigo.txt | |
lembre de instalar esses módulos: | |
asyncio | |
edge_tts |