Les ha costado arrancar después del parón vacacional, pero son solo las once de la mañana y ya están los servidores echando humo con preguntas de los alumnos y del profesorado.
Lee la noticia completa en nuestra web: www.elmundotoday.com/2025/09/los-...
08.09.2025 12:10 — 👍 218 🔁 46 💬 1 📌 3
A Model-based Solution for Automated (Re-)Engineering of Task-oriented Chatbots
#JSS (w/ Sara Pérez and Esther Guerra)
📃 Paper (open access): doi.org/10.1016/j.js...
⚙️ Tool: dimo1.ii.uam.es/CONGA/
🗂️ Chatbot dataset: github.com/Conga-dsl/Va...
🧪 Migration experiment: github.com/Conga-dsl/Bo...
02.09.2025 07:17 — 👍 2 🔁 2 💬 0 📌 0
Our paper for Model Management challenge at ACM Models is accepted!
We show how a Domain-Specific Modeling enables collaborative work, 𝐦𝐢𝐧𝐢𝐦𝐢𝐳𝐞𝐬 𝐭𝐡𝐞 𝐞𝐟𝐟𝐨𝐫𝐭 of modeling, 𝐩𝐫𝐨𝐯𝐢𝐝𝐞𝐬 𝐟𝐚𝐬𝐭 𝐟𝐞𝐞𝐝𝐛𝐚𝐜𝐤, keeps artefacts 𝐜𝐨𝐧𝐬𝐢𝐬𝐭𝐞𝐧𝐭, 𝐭𝐫𝐚𝐜𝐞𝐚𝐛𝐥𝐞 and provides 𝐡𝐚𝐬𝐬𝐥𝐞-𝐟𝐫𝐞𝐞 𝐯𝐞𝐫𝐬𝐢𝐨𝐧𝐢𝐧𝐠.
github.com/mccjpt/Satel...
01.09.2025 06:40 — 👍 3 🔁 1 💬 1 📌 0
Did you read the draft?
01.09.2025 07:44 — 👍 203 🔁 20 💬 0 📌 1
#SoSyM-Issue 2025/04 has been published: link.springer.com/journal/1027...
28.07.2025 06:27 — 👍 5 🔁 3 💬 0 📌 1
The slides of my plenary talk at the TMS track of ANNSIM'2025 last week at UCM are here:
es.slideshare.net/slideshow/ai...
(joint work with @gomezabajo.bsky.social, Pablo C. Cañizares, Esther Guerra and Alberto Núñez)
02.06.2025 17:28 — 👍 1 🔁 1 💬 0 📌 0
Merlin-A: A tool to engineer adaptive modelling languages #FSE #tool-demo
📹 video: youtu.be/fy171c7Afzk
📃pre-print: miso.es/pubs/fse_202...
🛠️tool: miso.es/tools/merlin...
08.05.2025 07:06 — 👍 1 🔁 1 💬 0 📌 0
- // Check four hex digits (must be 0-9 or A-F)
- char h3 = input[i+3], h4 = input[i+4], h5 = input[i+5], h6 = input[i+6];
- if (((h3 >= '0' && h3 <= '9') || (h3 >= 'A' && h3 <= 'F')) &&
- ((h4 >= '0' && h4 <= '9') || (h4 >= 'A' && h4 <= 'F')) &&
- ((h5 >= '0' && h5 <= '9') || (h5 >= 'A' && h5 <= 'F')) &&
- ((h6 >= '0' && h6 <= '9') || (h6 >= 'A' && h6 <= 'F'))) {
+ if (isxdigit(input[i + 3])
+ && isxdigit(input[i + 4])
+ && isxdigit(input[i + 5])
+ && isxdigit(input[i + 6])) {
+ static char hexstr[5];
+ memcpy(hexstr, input + i + 3, 4);
// Parse the 4-digit hex code point
- unsigned int codepoint = 0;
- const char *hex_digits = "0123456789ABCDEF";
- for (int j = 3; j < 7; ++j) {
- codepoint <<= 4;
- char c = input[i+j];
- if (c >= '0' && c <= '9') {
- codepoint |= (unsigned int)(c - '0');
- } else {
- codepoint |= (unsigned int)((c - 'A') + 10);
- }
- }
+ unsigned int codepoint = (unsigned int)strtoul(hexstr, NULL, 16);
Correct, but verbose and unreadable ChatGPT (4o) code (in red) vs the human-edited equivalent (in green). (The hex_digits string isn't even used.) Without human code ownership our software risks degenerating into unmaintainable junk.
23.04.2025 15:12 — 👍 14 🔁 5 💬 1 📌 0
Bogus GenAI diagram
Can you spot the six errors in this completely bogus GenAI-derived diagram? Read more in my blog entry on the perils of GenAI student submissions.
www.spinellis.gr/blog/20250408/
11.04.2025 06:56 — 👍 5 🔁 2 💬 2 📌 0
Automated Engineering of Domain-Specific Metamorphic Testing Environments
Automated Engineering of Domain-Specific Metamorphic Testing Environments - Descargar como PDF o ver en línea de forma gratuita
Automated Engineering of Domain-Specific MT Environments #ICSTconf #ICST2025 Naples 🇮🇹
👩💻 #metamorphictesting
w/ C. Cañizares, Núñez, Guerra & @miso-uam.bsky.social
📊Slides: es.slideshare.net/slideshow/au...
📖Article #IST: www.sciencedirect.com/science/arti...
🛠️Tool: g0tten.github.io/home.html
03.04.2025 10:05 — 👍 1 🔁 1 💬 0 📌 0
DSL of the week: Fish farm automation systems. Generates IEC61131 source code, SQL, device configuration, BoM, installation instructions
25.03.2025 13:03 — 👍 2 🔁 2 💬 0 📌 0
Cosmic Distance Calibration xkcd.com/3066
21.03.2025 19:49 — 👍 11998 🔁 1013 💬 99 📌 43
Corrections
20.03.2025 20:56 — 👍 75 🔁 10 💬 1 📌 4
Where you sit 🤓😎😴
18.03.2025 23:15 — 👍 134 🔁 32 💬 4 📌 10
DSL of the week: Design Space Exploration (DSE) applied to set platforms, workloads, simulations and allocations for design space exploration of embedded systems.
18.03.2025 08:24 — 👍 4 🔁 1 💬 0 📌 0
Máster en Sistemas Interactivos Inteligentes | UAM
Descubre toda la información y los detalles sobre el Máster en Sistemas Interactivos Inteligentes en la UAM
¿Buscas máster en informática?
En el máster de Sistemas Interactivos Inteligentes de la @uam.es aprenderás sobre interacción persona-ordenador, aprendizaje automático, videojuegos, realidad virtual, y más!
ℹ️ www.uam.es/uam/master-u...
ℹ️ www.uam.es/EPS/musii
1er plazo de solicitudes: 1 de Abril
11.03.2025 11:06 — 👍 1 🔁 1 💬 0 📌 0
Don't forget to put your calculator on flight mode (1975)
04.03.2025 14:36 — 👍 34 🔁 11 💬 1 📌 2
Dashboard to monitor open source UML tools
The UML dashboard shows a manually curated list of open source UML tools in GitHub. Some global stats and a deeper analysis of trends are discussed.
The #UML #dashboard is here 👏👏👏
Monitor #opensource UML tools and see their trends, e.g.:
- Can you guess how many (active) UML tools are out there? 🤔
- And which one is the pillar of many ? 🤔
- And whether UML tools are becoming smart? 🤔
Some answers ⬇️⬇️⬇️
modeling-languages.com/dashboard-um...
25.02.2025 08:28 — 👍 3 🔁 2 💬 0 📌 0
Our online playground now also supports live sharing! 🚀 eclipse.dev/epsilon/play...
24.02.2025 14:02 — 👍 2 🔁 3 💬 0 📌 0
Daily pixel art themes. Discord: http://discord.gg/T9Puddm
Daily nuggets of software wisdom.
Professor a NYU; Chief AI Scientist at Meta.
Researcher in AI, Machine Learning, Robotics, etc.
ACM Turing Award Laureate.
http://yann.lecun.com
Lingüista. Candidata a Rectora de la UAM. Cuenta personal.
PhD fellow @ University of Antwerp | Computer Engineering (Software) | rahelehbiglari.github.io
/lʊk/ | Rekenaarwetenskapper | @tue_softeng | @StellenboschUni | Views mine | loek@me.com | @loekhere@mastodon.social
La Biblioteca UAM trabaja para apoyar el desarrollo de la investigación, la docencia y el estudio, proporcionando el acceso a los recursos de información necesarios, propios de esta Universidad o ajenos a ella.
CS Prof @ TU Wien (Vienna), prev DevAI @ Google, Probability @ Meta, Researcher @ MIT and Uni Zurich
Co-founder at @BotCity (YC W22)
OSS Maintainer at MarvinJ and Marvin
Computer Scientist, AI, Open Source
⚡️Build context-aware, reasoning applications ⚡️
Full #Professor with the Department of #Computer #Science and #Engineering at the University of Cadiz (@univcadiz.bsky.social), Spain
https://orcid.org/0000-0002-8989-7509
Professor of Computer Science | Director GameLabGraz GameDevDays | #GameDev Research Science Tech VR AI | @TUGraz | past LMU ETH MIT EA | Forbes 30u30 Science | mountains ⛰️
twitch.tv/JoeyPrink
youtube.com/@JoeyPrink
jpirker.com
PostDoc at RWTH Aachen University, Germany | Passionate for research | #SoftwareEngineering #Modeling #DigitalTwins | private tweets
CEO at MetaCase, provider of MetaEdit+ tool; consultant on modeling, domain-specific language and code generation development, PhD
Prof. Software Engineering | University of Stuttgart, ISW | Editor at SoSyM & JoT | EAPLS | www.wortmann.ac
Software Engineering Professor, and Director of the Online Master of Digital Transformation and Innovation, University of Ottawa. Loves his family, Requirements Engineering / Modelling, Process Mining, soccer, teaching, and good craft beer.
Prof. Software Engineering University of Rennes & Institut Universitaire de France.
Président Informatics Europe
FREng MRIA MAE FACM
#SoftwareWithoutBoundaries: interplay of digital-physical-social spaces
#responsibleSoftwareEngineering
Professor: The Open University, UCL (Honorary), NII (Visiting), UCD (Visiting)
http://nuseibeh.com
Professor of Social Software Engineering. Eindhoven University of Technology, The Netherlands. Diversity, inclusion and source code.
🇧🇪🇮🇱🏳️🌈 🐕 He/him