
@theartofmadeline

Discoholic đȘ©

No title available
Sweet Seals For You, Always

â
The Stonewall Inn
tumblr dot com
Stranger Things
TVSTRANGERTHINGS
Noah Kahan

Kiana Khansmith
Jules of Nature

No title available
hello vonnie
Xuebing Du

titsay
đ©” avery cochrane đ©”
occasionally subtle
Monterey Bay Aquarium

Love Begins
seen from United States

seen from United States
seen from United States
seen from United States

seen from United States

seen from United States

seen from United States

seen from Spain
seen from United States
seen from Malaysia
seen from United States

seen from United States

seen from United States

seen from United States
seen from United States

seen from United States
seen from Brazil
seen from United States
seen from United States
seen from United States
@techandstream
Close the feedback loop in vibe coding. Use Sentry traces with MCP to give your AI agent real execution visibility and smarter code iteratio
Laravel sites across Forge and Liquid Web
itâs 27.6 kB
A free test data generator and API mocking tool - Mockaroo lets you create custom CSV, JSON, SQL, and Excel datasets to test and demo your s
There are plenty of great data mocking libraries available for almost every language and platform. But not everyone is a programmer or has time to learn a new framework. Mockaroo allows you to quickly and easily to download large amounts of randomly generated test data based on your own specs which you can then load directly into your test environment using SQL or CSV formats. No programming is required.
juste un bouton + un formulaire simple, pour que ça reste fluide
<button onclick="ajouterLigne()">Ajouter un mec</button>
<script>
// ... le reste du script d'avant
function ajouterLigne() {
const tbody = document.querySelector("#myTable tbody");
const id = tbody.children.length + 1;
const name = prompt("Nom ?");
const age = prompt("Ăge ?");
const city = prompt("Ville ?");
if (name && age && city) { // juste un petit check
const row = document.createElement("tr");
row.innerHTML = `<td>${id}</td><td>${name}</td><td>${age}</td><td>${city}</td>`;
tbody.appendChild(row);
}
}
</script>
full absorption and energized focus
on peut mĂȘme ajouter une colonne ârangâ avec RANK() pour un classement propre :
RANK() OVER (ORDER BY gasto_total DESC) AS position
Ouvre-le avec Excel ou nâimporte quel Ă©diteur : nom, prix, tout est lĂ .
\copy (
SELECT u.nom, u.age, c.produit, c.precio
FROM usuarios u
LEFT JOIN commandes c ON u.id = c.usuario_id
) TO 'rapport_complet.csv' CSV HEADER;
exporter ta table commandes (ou tout ce que tu veux) en CSV.
\copy (SELECT * FROM commandes) TO 'commandes_export.csv' CSV HEADER;