Skip to content

Instantly share code, notes, and snippets.

View jduartedj's full-sized avatar
🏠
Working from home

Duarte Sotto-Mayor Ribeirinho jduartedj

🏠
Working from home
View GitHub Profile
@jduartedj
jduartedj / privacy-policy.html
Created February 1, 2026 23:06
Drinking Mode Privacy Policy
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Drinking Mode | Política de Privacidade</title>
<style>
:root {
--primary: #FF6B35;
--secondary: #2E4057;
@jduartedj
jduartedj / ballot.sol
Created June 24, 2019 17:27
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.1+commit.c8a2cb62.js&optimize=true&gist=
pragma solidity >=0.4.22 <0.6.0;
contract Mensagens {
//lista de nomes de pessoas
address[] public pessoas;
mapping(address => string) public nomes;
struct Mensagem {
string mensagem;
address recetor;