Learn how to create smart routines and automate repetitive tasks at home and at work. Turn technology into your ally to gain more time for your family.
Automatize Sua Vida com Python: 3 Scripts Essenciais
Descubra como pequenas automações podem poupar horas do seu dia.
By Takeshi Nakamoto Titulo
Negrito
Italico
Subscrito
Taxado
- Lista 1
- Lista 2
- lista a
- lista b
// Este bloco será colorido com o tema 'github-dark'
function hello() {
console.log("Olá, Shiki!");
}
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
// Outros plugins, se houver...
],
}
Quote