Alisa U Zemlji Chuda

izzy's playlists!

oozey mess
Show & Tell

Discoholic 🪩

No title available

Product Placement
Monterey Bay Aquarium
Game of Thrones Daily

⁂
No title available
Today's Document
One Nice Bug Per Day
Cosimo Galluzzi
d e v o n
KIROKAZE
sheepfilms
DEAR READER
dirt enthusiast
Peter Solarz

seen from United Kingdom
seen from Indonesia
seen from United States

seen from Philippines

seen from Malaysia
seen from United States

seen from Malaysia

seen from Brazil
seen from United States

seen from Romania
seen from United States

seen from United States

seen from Singapore

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

seen from Malaysia
seen from Canada
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;