Complete cross-platform solution supporting Windows and macOS for PDF digital signatures.
DigitalSignerApp/
├── DigitalSignerApp.sln
├── DigitalSignerApp/
| <?php | |
| require 'vendor/autoload.php'; | |
| use Playwright\Playwright; | |
| // Inicializa o Playwright | |
| $playwright = Playwright::create(); | |
| $browser = $playwright->chromium()->launch(['headless' => false]); // false para você ver o processo | |
| $context = $browser->newContext(); |
| #include <srl.hpp> | |
| using namespace SRL::Types; | |
| using namespace SRL::Math::Types; | |
| // Cube vertices (8 corners) | |
| Vector3D cubeVertices[8] = { | |
| Vector3D(-10.0, -10.0, -10.0), // 0: front bottom left | |
| Vector3D( 10.0, -10.0, -10.0), // 1: front bottom right | |
| Vector3D( 10.0, 10.0, -10.0), // 2: front top right |
Don't use original DOOM code directly with SGL because:
| import '@mantine/core/styles.css'; | |
| import React, { useEffect, useMemo, useReducer, useState } from 'react'; | |
| import { | |
| ActionIcon, | |
| Avatar, | |
| Badge, | |
| Box, | |
| Button, | |
| Divider, |
| import React, { useState } from "react"; | |
| import { ChevronLeft, ChevronRight, Pencil, Trash2 } from "lucide-react"; | |
| import { AnimatePresence, motion } from "framer-motion"; | |
| type Status = "Online" | "Ausente" | "Ocupado" | "Offline"; | |
| type Person = { | |
| name: string; | |
| email: string; | |
| role: string; |
| <p style="text-align: center; font-weight: bold; font-family: 'Times New Roman', serif; font-size: 12pt; margin-bottom: 0;">EXCELENTÍSSIMO(A) SENHOR(A) DOUTOR(A) JUIZ(A) DE DIREITO DA ____ VARA CÍVEL DA COMARCA DA CAPITAL - SP</p> | |
| <p style="font-family: 'Times New Roman', serif; font-size: 12pt;"> </p> | |
| <p style="font-family: 'Times New Roman', serif; font-size: 12pt;"> </p> | |
| <p style="font-family: 'Times New Roman', serif; font-size: 12pt;"> </p> | |
| <p style="text-align: justify; font-family: 'Times New Roman', serif; font-size: 12pt; line-height: 1.5;"> | |
| <strong>MARIA DA SILVA OLIVEIRA</strong>, brasileira, casada, arquiteta, portadora da Cédula de Identidade RG nº 12.345.678-9 SSP/SP, inscrita no CPF/MF sob o nº 123.456.789-00, residente e domiciliada na Rua das Flores, nº 1.000, Apartamento 41, Bairro Jardim Paulista, CEP 01400-000, São Paulo/SP, endereço eletrônico [email protected], vem, mui respeitosamente, à presença de Vossa Excelência, por intermédio de seus advogados e bastantes pr |
| # Script único para instalar/atualizar PowerShell 7 (pwsh) no Windows 11 | |
| Write-Host "==> Atualizando/instalando PowerShell 7..." -ForegroundColor Cyan | |
| # Garante TLS 1.2 pra falar com GitHub | |
| [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 | |
| # Função pra verificar se winget existe | |
| function Test-Winget { | |
| return [bool](Get-Command winget -ErrorAction SilentlyContinue) |