Last Sync: 2025-06-04 16:46 (Mobile)

This commit is contained in:
2025-06-04 16:47:51 +02:00
parent d7bb74442a
commit f36b6612d0
12 changed files with 1214 additions and 239 deletions
@@ -0,0 +1,9 @@
icon:: 📅
- ## Tasks
- DONE [[MODELS Journal-First-track + 1 more]]
id:: 683ee6f2-7304-4ea7-8000-46b4106b3ef5
- TODO [[REVIEWS]]
- Rispondere alle discussioni ICSE
- ## Notes
-
@@ -0,0 +1,9 @@
icon:: 📅
- ## Tasks
- DONE [[MODELS Journal-First-track + 1 more]]
id:: 683ee6f2-7304-4ea7-8000-46b4106b3ef5
- TODO [[REVIEWS]]
- Rispondere alle discussioni ICSE
- ## Notes
-
@@ -0,0 +1,363 @@
{:meta/version 1
;; Currently, we support either "Markdown" or "Org".
;; This can overwrite your global preference so that
;; maybe your personal preferred format is Org but you'd
;; need to use Markdown for some projects.
;; :preferred-format ""
;; Preferred workflow style.
;; Value is either ":now" for NOW/LATER style,
;; or ":todo" for TODO/DOING style.
:preferred-workflow :todo
;; The app will ignore those directories or files.
;; E.g. :hidden ["/archived" "/test.md" "../assets/archived"]
:hidden []
;; When creating the new journal page, the app will use your template if there is one.
;; You only need to input your template name here.
:default-templates
{:journals "JOURNAL-TEMPLATE"}
;; Set a custom date format for journal page title
;; Example:
;; :journal/page-title-format "EEE, do MMM yyyy"
;; Whether to enable hover on tooltip preview feature
;; Default is true, you can also toggle this via setting page
:ui/enable-tooltip? false
;; Show brackets around page references
;; :ui/show-brackets? true
;; Enable showing the body of blocks when referencing them.
:ui/show-full-blocks? true
;; Expand block references automatically when zoom-in
:ui/auto-expand-block-refs? false
;; Enable Block timestamp
:feature/enable-block-timestamps? false
;; Enable remove accents when searching.
;; After toggle this option, please remember to rebuild your search index by press (cmd+c cmd+s).
:feature/enable-search-remove-accents? true
;; Enable journals
;; :feature/enable-journals? true
;; Enable flashcards
;; :feature/enable-flashcards? true
;; Enable Whiteboards
;; :feature/enable-whiteboards? true
;; Disable the built-in Scheduled tasks and deadlines query
:feature/disable-scheduled-and-deadline-query? false
;; Specify the number of days in the future to display in the
;; scheduled tasks and deadlines query, with a default value of 7 which
;; displays tasks for the next 7 days.
;; Example usage:
;; Display all scheduled and deadline blocks for the next 14 days
:scheduled/future-days 7
;; Specify the date on which the week starts.
;; Goes from 0 to 6 (Monday to Sunday), default to 6
:start-of-week 6
;; Specify a custom CSS import
;; This option take precedence over your local `logseq/custom.css` file
;; You may find a list of awesome logseq themes here:
;; https://github.com/logseq/awesome-logseq#css-themes
;; Example:
;; :custom-css-url "@import url('https://cdn.jsdelivr.net/gh/dracula/logseq@master/custom.css');"
;; Specify a custom js import
;; This option take precedence over your local `logseq/custom.js` file
;; :custom-js-url ""
;; Set a custom Arweave gateway
;; Default gateway: https://arweave.net
;; :arweave/gateway ""
;; Set Bullet indentation when exporting
;; default option: tab
;; Possible options for `:export/bullet-indentation` are
;; 1. `:eight-spaces` as eight spaces
;; 2. `:four-spaces` as four spaces
;; 3. `:two-spaces` as two spaces
;; :export/bullet-indentation :tab
;; When :all-pages-public? true, export repo would export all pages within that repo.
;; Regardless of whether you've set any page to public or not.
;; Example:
;; :publishing/all-pages-public? true
;; Specify default home page and sidebar status for Logseq
;; If not specified, Logseq default opens journals page on startup
;; value for `:page` is name of page
;; Possible options for `:sidebar` are
;; 1. `"Contents"` to open up `Contents` in sidebar by default
;; 2. `page name` to open up some page in sidebar
;; 3. Or multiple pages in an array ["Contents" "Page A" "Page B"]
;; If `:sidebar` is not set, sidebar will be hidden
;; Example:
;; 1. Setup page "Changelog" as home page and "Contents" in sidebar
;; :default-home {:page "Changelog", :sidebar "Contents"}
;; 2. Setup page "Jun 3rd, 2021" as home page without sidebar
;; :default-home {:page "Jun 3rd, 2021"}
;; 3. Setup page "home" as home page with multiple pages in sidebar
;; :default-home {:page "home" :sidebar ["page a" "page b"]}
;; Tell logseq to use a specific folder in the repo as a default location for notes
;; if not specified, notes are stored in `pages` directory
;; :pages-directory "your-directory"
;; Tell logseq to use a specific folder in the repo as a default location for journals
;; if not specified, journals are stored in `journals` directory
;; :journals-directory "your-directory"
;; Set this to true will convert
;; `[[Grant Ideas]]` to `[[file:./grant_ideas.org][Grant Ideas]]` for org-mode
;; For more, see https://github.com/logseq/logseq/issues/672
;; :org-mode/insert-file-link? true
;; Setup custom shortcuts under `:shortcuts` key
;; Syntax:
;; 1. `+` means keys pressing simultaneously. eg: `ctrl+shift+a`
;; 2. ` ` empty space between keys represents key chords. eg: `t s` means press `t` followed by `s`
;; 3. `mod` means `Ctrl` for Windows/Linux and `Command` for Mac
;; 4. use `false` to disable particular shortcut
;; 5. you can define multiple bindings for one action, eg `["ctrl+j" "down"]`
;; full list of configurable shortcuts are available below:
;; https://github.com/logseq/logseq/blob/master/src/main/frontend/modules/shortcut/config.cljs
;; Example:
;; :shortcuts
;; {:editor/new-block "enter"
;; :editor/new-line "shift+enter"
;; :editor/insert-link "mod+shift+k"
;; :editor/highlight false
;; :ui/toggle-settings "t s"
;; :editor/up ["ctrl+k" "up"]
;; :editor/down ["ctrl+j" "down"]
;; :editor/left ["ctrl+h" "left"]
;; :editor/right ["ctrl+l" "right"]}
:shortcuts {}
;; By default, pressing `Enter` in the document mode will create a new line.
;; Set this to `true` so that it's the same behaviour as the usual outliner mode.
:shortcut/doc-mode-enter-for-new-block? false
;; Block content larger than `block/content-max-length` will not be searchable
;; or editable for performance.
:block/content-max-length 10000
;; Whether to show command doc on hover
:ui/show-command-doc? true
;; Whether to show empty bullets for non-document mode (the default mode)
:ui/show-empty-bullets? false
;; Pre-defined :view function to use with advanced queries
:query/views
{:pprint
(fn [r] [:pre.code (pprint r)])}
;; Pre-defined :result-transform function for use with advanced queries
:query/result-transforms
{:sort-by-priority
(fn [result] (sort-by (fn [h] (get h :block/priority "Z")) result))}
;; The app will show those queries in today's journal page,
;; the "NOW" query asks the tasks which need to be finished "now",
;; the "NEXT" query asks the future tasks.
:default-queries
{:journals
[{:title "🔨 NOW"
:query [:find (pull ?h [*])
:in $ ?start ?today
:where
[?h :block/marker ?marker]
[(contains? #{"NOW" "DOING"} ?marker)]
[?h :block/page ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(>= ?d ?start)]
[(<= ?d ?today)]]
:inputs [:14d :today]
:result-transform (fn [result]
(sort-by (fn [h]
(get h :block/priority "Z")) result))
:group-by-page? false
:collapsed? true}
{:title "📅 NEXT"
:query [:find (pull ?h [*])
:in $ ?start ?next
:where
[?h :block/marker ?marker]
[(contains? #{"NOW" "LATER" "TODO"} ?marker)]
[?h :block/page ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(> ?d ?start)]
[(< ?d ?next)]]
:inputs [:today :7d-after]
:group-by-page? false
:collapsed? true}
{:title "Reviews"
}]}
;; Add your own commands to slash menu to speedup.
;; E.g.
;; :commands
;; [
;; ["js" "Javascript"]
;; ["md" "Markdown"]
;; ]
:commands
[]
;; By default, a block can only be collapsed if it has some children.
;; `:outliner/block-title-collapse-enabled? true` enables a block with a title
;; (multiple lines) can be collapsed too. For example:
;; - block title
;; block content
:outliner/block-title-collapse-enabled? true
;; Macros replace texts and will make you more productive.
;; For example:
;; Change the :macros value below to:
;; {"poem" "Rose is $1, violet's $2. Life's ordered: Org assists you."}
;; input "{{poem red,blue}}"
;; becomes
;; Rose is red, violet's blue. Life's ordered: Org assists you.
:macros {}
;; The default level to be opened for the linked references.
;; For example, if we have some example blocks like this:
;; - a [[page]] (level 1)
;; - b (level 2)
;; - c (level 3)
;; - d (level 4)
;;
;; With the default value of level 2, `b` will be collapsed.
;; If we set the level's value to 3, `b` will be opened and `c` will be collapsed.
:ref/default-open-blocks-level 1
:ref/linked-references-collapsed-threshold 0
;; Favorites to list on the left sidebar
:favorites ["inbox" "todoist-logseqed" "planner" "desktop" "diario" "brainstorming" "reviews" "services/phdict" "cv empower" "projects" "services/dottorato" "papers" "teaching" "books" "todoist-dashboard" "consigliodisim" "services/placement" "ideas"]
;; any number between 0 and 1 (the greater it is the faster the changes of the next-interval of card reviews) (default 0.5)
;; :srs/learning-fraction 0.5
;; the initial interval after the first successful review of a card (default 4)
;; :srs/initial-interval 4
;; hide specific properties for blocks
;; E.g. :block-hidden-properties #{:created-at :updated-at}
;; :block-hidden-properties #{}
:block-hidden-properties #{:todoistid }
;; Enable all your properties to have corresponding pages
:property-pages/enabled? true
;; Properties to exclude from having property pages
;; E.g.:property-pages/excludelist #{:duration :author}
;; :property-pages/excludelist
;; By default, property value separated by commas will not be treated as
;; page references. You can add properties to enable it.
;; E.g. :property/separated-by-commas #{:alias :tags}
;; :property/separated-by-commas #{}
;; Properties that are ignored when parsing property values for references
;; :ignored-page-references-keywords #{:author :startup}
;; logbook setup
;; :logbook/settings
;; {:with-second-support? false ;limit logbook to minutes, seconds will be eliminated
;; :enabled-in-all-blocks true ;display logbook in all blocks after timetracking
;; :enabled-in-timestamped-blocks false ;don't display logbook at all
;; }
;; Mobile photo uploading setup
;; :mobile/photo
;; {:allow-editing? true
;; :quality 80}
;; Mobile features options
;; Gestures
;; :mobile
;; {:gestures/disabled-in-block-with-tags ["kanban"]}
;; Extra CodeMirror options
;; See https://codemirror.net/5/doc/manual.html#config for possible options
;; :editor/extra-codemirror-options {:keyMap "emacs" :lineWrapping true}
;; Enable logical outdenting
;; :editor/logical-outdenting? true
;; When both text and a file are in the clipboard, paste the file
;; :editor/preferred-pasting-file? true
;; Quick capture templates for receiving contents from other apps.
;; Each template contains three elements {time}, {text} and {url}, which can be auto-expanded
;; by received contents from other apps. Note: the {} cannot be omitted.
;; - {time}: capture time
;; - {date}: capture date using current date format, use `[[{date}]]` to get a page reference
;; - {text}: text that users selected before sharing.
;; - {url}: url or assets path for media files stored in Logseq.
;; You can also reorder them, or even only use one or two of them in the template.
;; You can also insert or format any text in the template as shown in the following examples.
;; :quick-capture-templates
;; {:text "[[quick capture]] **{time}**: {text} from {url}"
;; :media "[[quick capture]] **{time}**: {url}"}
;; Quick capture options
;; :quick-capture-options {:insert-today? false :redirect-page? false :default-page "my page"}
;; File sync options
;; Ignore these files when syncing, regexp is supported.
;; :file-sync/ignore-files []
;; dwim (do what I mean) for Enter key when editing.
;; Context-awareness of Enter key makes editing more easily
; :dwim/settings {
; :admonition&src? true
; :markup? false
; :block-ref? true
; :page-ref? true
; :properties? true
; :list? true
; }
;; Decide the way to escape the special characters in the page title.
;; Warning:
;; This is a dangerous operation. If you want to change the setting,
;; should access the setting `Filename format` and follow the instructions.
;; Or you have to rename all the affected files manually then re-index on all
;; clients after the files are synced. Wrong handling may cause page titles
;; containing special characters to be messy.
;; Available values:
;; :file/name-format :triple-lowbar
;; ;use triple underscore `___` for slash `/` in page title
;; ;use Percent-encoding for other invalid characters
:file/name-format :triple-lowbar
:journal/page-title-format "dd-MM-yyyy"
:ui/show-brackets? false
:zotero/settings-v2 {"default" {:extra-tags "#zotero", :zotero-data-directory "C:/Users/david/Zotero", :zotero-linked-attachment-base-directory "C:/Users/david/Zotero", :type-id "1039502", :type :user, :notes-block-text "### Notes", :page-insert-prefix "@", :include-notes? true, :attachments-block-text "### Attachments"}}
:editor/logical-outdenting? false
:feature/enable-timetracking? true
:feature/enable-whiteboards? false
:editor/preferred-pasting-file? true
;; specify the format of the filename for journal files
;; :journal/file-name-format "yyyy_MM_dd"
:editor/extra-codemirror-options {:theme "gruvbox-dark"}
}
@@ -0,0 +1,90 @@
icon:: ✅
- ### [[2025/05]]
- ✔️ [[May 26th, 2025]] *22:39* ((68341e4c-22c0-498c-8b18-bf3c03b3f7ea))
- ✔️ [[26-05-2025]] *22:52* ((6673db98-f12a-4d48-b1ec-281082dfec1f))
- ✔️ [[27-05-2025]] *16:18* ((6831929a-bb3a-4d1e-a0ab-5dd96aedb5a1))
- ✔️ [[28-05-2025]] *09:22* ((68342adf-7c9d-4937-8d81-7ce37d084360))
- ✔️ [[28-05-2025]] *09:23* ((6836208c-160c-483a-b6fe-939605fbb4fc))
- ✔️ [[28-05-2025]] *12:40* ((683620bb-651c-44a0-8fd0-4e5e835a9090))
- ✔️ [[28-05-2025]] *12:44* ((683620b6-4510-470b-90ef-d8ec1122471c))
- ✔️ [[28-05-2025]] *12:44* ((683620b6-ca0a-4855-846c-952d9add8ef5))
- ✔️ [[29-05-2025]] *12:57* ((68372640-5f76-4640-8b49-7d79dc1e8c7a))
- ✔️ [[30-05-2025]] *11:19* ((683952a8-5c44-4441-8f3f-bbfb8797674f))
- ✔️ [[30-05-2025]] *18:00* ((6839ce19-2f24-43d2-a1ab-b615a34bd92f))
- ✔️ [[30-05-2025]] *18:04* ((6839cd22-cd1c-4541-bea1-50c655611104))
- ✔️ [[30-05-2025]] *21:28* ((68362092-aafa-44b6-83b2-8f4a163dd2a0))
- ✔️ [[10-05-2025]] *22:52* ((66ed695f-a60d-473d-8855-ec948f4a8bf8))
- ✔️ [[10-05-2025]] *22:56* ((66ed6960-90a9-44e0-842f-61c071f4b607))
- ✔️ [[10-05-2025]] *23:05* ((93b5aeab-7030-401b-b111-f27673af6d28))
- ✔️ [[10-05-2025]] *23:06* ((681fbf91-62b7-49bc-bf11-aad4d56a6f83))
- ✔️ [[10-05-2025]] *23:07* :LOGBOOK:
CLOCK: [2025-05-10 Sat 23:07:09]--[2025-05-10 Sat 23:07:11] => 00:00:02
:END:
- ✔️ [[May 21st, 2025]] *09:04* ((65c8d43c-9e5e-455f-9c48-cb6d035417fc))
- ✔️ [[May 24th, 2025]] *19:02* ((6831961e-c3a3-4890-99ae-ffda429333c8))
- ✔️ [[May 24th, 2025]] *20:47* ((6659d0ed-b485-4423-9c75-a8f5d715b31f))
- ✔️ [[May 24th, 2025]] *22:02* ((6832257a-63a4-4c89-8353-25f0e94caa51))
- ✔️ [[May 24th, 2025]] *22:02* ((6832257a-4373-4560-a7e2-79fba9f4c9e6))
- ✔️ [[May 24th, 2025]] *22:02* ((682ecc99-b356-4086-9ff8-4e4736018009))
- ✔️ [[May 25th, 2025]] *15:49* ((66e80dfd-0f7c-4020-aa87-906662c9eebd))
- ✔️ [[May 25th, 2025]] *19:26* ((6832257a-f98d-4f5e-850c-ddf8ffd0b5fb))
- ✔️ [[May 25th, 2025]] *19:26* ((6832257a-85cb-46bd-9018-855f59070a41))
- ✔️ [[May 25th, 2025]] *19:27* ((68331e69-7914-4696-8f2e-9ff4e9878686))
- ✔️ [[May 25th, 2025]] *19:29* ((6832257a-7e7e-4ed8-abf8-dd88c6643863))
- ✔️ [[May 25th, 2025]] *19:30* ((6832257a-cbb8-4881-ab20-bebcda629999))
- ✔️ [[May 25th, 2025]] *19:31* ((6832257a-eea4-45f9-ab9f-98dbc36328cf))
- ✔️ [[May 25th, 2025]] *22:49* ((65c8d46e-6599-4319-9683-4f86396c7e29))
- ✔️ [[May 25th, 2025]] *22:49* ((65c8d45b-9775-4e19-88ed-c5d1895df182))
- ✔️ [[May 26th, 2025]] *11:19* ((68342adf-8309-40bf-a38e-5dab74b7a5ea))
- ✔️ [[May 26th, 2025]] *11:20* ((68342adf-0b33-4470-aae1-a3741a2d5432))
- ✔️ [[May 26th, 2025]] *11:22* ((68342adf-7c9d-4937-8d81-7ce37d084360))
- ✔️ [[May 26th, 2025]] *13:23* ((68342adf-daa1-480c-813c-48be1ba86b71))
- ✔️ [[May 26th, 2025]] *13:31* ((68342adf-3362-4bb4-9082-f6050f8cf63c))
- ✔️ [[May 26th, 2025]] *13:45* ((6834435e-3184-483a-a02c-271995950996))
- ✔️ [[May 26th, 2025]] *13:45* ((6834435d-21d2-492c-aac2-21053aba25e1))
- ✔️ [[May 26th, 2025]] *13:47* ((68342adf-d123-444d-b7a2-c4bedd4042dd))
- ✔️ [[May 26th, 2025]] *14:11* ((68342adf-ecdc-4812-ad4f-d5240a2d5fa9))
- ✔️ [[May 26th, 2025]] *15:19* ((68344d8e-d83d-4c7c-b4aa-56ad71f53ddf))
- ✔️ [[May 26th, 2025]] *20:22* ((683481be-df12-4c94-a56b-fbf9712c96e4))
- ✔️ [[May 26th, 2025]] *21:58* ((6831933e-7f38-436a-91f0-abf1292e15a2))
- ✔️ [[May 26th, 2025]] *21:58* ((68319354-327c-48d4-a6f8-47c04409e98a))
- ✔️ [[May 26th, 2025]] *21:58* ((68331a74-24ed-48d3-9a7f-df9101d3ef5f))
- ✔️ [[May 26th, 2025]] *21:58* ((683481c8-e3cd-462a-8a93-4d19b7e3db3e))
- ✔️ [[May 26th, 2025]] *22:11* ((6831991d-62c9-4091-b3e9-af451051d642))
- ✔️ [[May 26th, 2025]] *22:16* ((65c8d477-cade-4b0b-a8b4-2756a6b98e6e))
- ✔️ [[May 26th, 2025]] *22:16* ((65c8d477-2c6c-4548-9e72-09cee84bec35))
- ✔️ [[May 26th, 2025]] *22:17* ((65c8d455-6e80-4f1e-b650-813a243b696c))
- ✔️ [[May 26th, 2025]] *22:18* ((65f2aaa6-64f6-42e8-8b2c-2a22f8538b30))
- ✔️ [[May 26th, 2025]] *22:18* ((65f2aaa6-690e-4bdc-962a-7c0ddf212f11))
- ✔️ [[May 26th, 2025]] *22:19* ((668e3747-dff2-4f1a-84b2-1d75cbd83aa1))
- ✔️ [[May 26th, 2025]] *22:19* ((668e3747-62ba-4218-8d0e-57effaa7f795))
- ✔️ [[May 26th, 2025]] *22:19* ((6673db54-3eb8-48ba-a840-cbe1ba29b2ff))
- ✔️ [[May 26th, 2025]] *22:19* ((6673db1d-f835-4eb5-9182-9e4a56a85e18))
- ✔️ [[May 26th, 2025]] *22:19* ((6673db98-f12a-4d48-b1ec-281082dfec1f))
- ✔️ [[May 26th, 2025]] *22:19* ((666d40df-e520-45bc-be26-dd4af89767e5))
- ✔️ [[May 26th, 2025]] *22:19* ((65d89628-a424-4291-ad37-c95ed68c7fdd))
- ✔️ [[May 26th, 2025]] *22:20* ((65c9f0a4-861b-4f8e-9738-9e19488e259d))
- ✔️ [[May 26th, 2025]] *22:20* ((65c8d43b-046c-4682-a958-a14787d04e22))
- ✔️ [[May 26th, 2025]] *22:20* ((65c8d43c-3e62-4a44-aaf8-ad1f7b0e15c4))
- ✔️ [[May 26th, 2025]] *22:20* ((65c8d43c-b2de-4ad6-9282-e2d67a0cb6b9))
- ✔️ [[May 26th, 2025]] *22:20* ((65c8d43d-0487-4c5e-a8ae-cae113812690))
- ✔️ [[May 26th, 2025]] *22:20* ((65c8d43d-09c9-416b-a127-a865e0fd3b08))
- ✔️ [[May 26th, 2025]] *22:20* ((65c8d43d-2358-46ad-acf0-3396607b2ace))
- ✔️ [[May 26th, 2025]] *22:20* ((660178c2-5901-423e-976a-dba8a52916c5))
- ✔️ [[May 26th, 2025]] *22:21* ((65d8963d-149e-44b2-a70d-9cee907047ad))
- ✔️ [[May 26th, 2025]] *22:21* ((65c8d477-b5c3-45c1-986d-9daf3563a1d1))
- ✔️ [[May 26th, 2025]] *22:21* ((65d8963d-5b6c-48da-bd21-21e3ffe41570))
- ✔️ [[May 26th, 2025]] *22:21* ((65c8d45b-545c-4ca4-acc3-b35ef663757f))
- ✔️ [[May 26th, 2025]] *22:21* ((65c8d45b-3974-4a0e-ac6e-7dbc798340ab))
- ✔️ [[May 26th, 2025]] *22:21* ((65c35633-d1fd-4840-a6bc-ee79a2db5ffa))
- ✔️ [[May 26th, 2025]] *22:22* ((65c8d45b-1a21-40d2-9003-5b9c13d08e01))
- ✔️ [[May 26th, 2025]] *22:22* ((65d8963d-f00b-44a0-97c3-10f5510ab44e))
- ✔️ [[May 26th, 2025]] *22:22* ((683432dd-8909-4466-b7ec-c4861aaf2fe0))
- ✔️ [[May 26th, 2025]] *22:23* ((65c8d46f-f70f-4d0f-9fce-14c2ab11ab68))
- ✔️ [[May 26th, 2025]] *22:23* Coprire anche aspetti di collaborative modeling
- ### [[2025/06]]
- ✔️ [[02-06-2025]] *23:42* ((6836208c-cf9d-4d40-9f87-db1045f739e1))
- ✔️ [[03-06-2025]] *16:05* ((683f0108-c7ac-41ae-a6bd-b9c02829e6fc))
- ✔️ [[03-06-2025]] *16:07* ((683ee6f2-7304-4ea7-8000-46b4106b3ef5))
- ✔️ [[03-06-2025]] *21:54* ((683620b6-dd45-402c-80d5-0eb8facf914d))
@@ -0,0 +1,90 @@
icon:: ✅
- ### [[2025/05]]
- ✔️ [[May 26th, 2025]] *22:39* ((68341e4c-22c0-498c-8b18-bf3c03b3f7ea))
- ✔️ [[26-05-2025]] *22:52* ((6673db98-f12a-4d48-b1ec-281082dfec1f))
- ✔️ [[27-05-2025]] *16:18* ((6831929a-bb3a-4d1e-a0ab-5dd96aedb5a1))
- ✔️ [[28-05-2025]] *09:22* ((68342adf-7c9d-4937-8d81-7ce37d084360))
- ✔️ [[28-05-2025]] *09:23* ((6836208c-160c-483a-b6fe-939605fbb4fc))
- ✔️ [[28-05-2025]] *12:40* ((683620bb-651c-44a0-8fd0-4e5e835a9090))
- ✔️ [[28-05-2025]] *12:44* ((683620b6-4510-470b-90ef-d8ec1122471c))
- ✔️ [[28-05-2025]] *12:44* ((683620b6-ca0a-4855-846c-952d9add8ef5))
- ✔️ [[29-05-2025]] *12:57* ((68372640-5f76-4640-8b49-7d79dc1e8c7a))
- ✔️ [[30-05-2025]] *11:19* ((683952a8-5c44-4441-8f3f-bbfb8797674f))
- ✔️ [[30-05-2025]] *18:00* ((6839ce19-2f24-43d2-a1ab-b615a34bd92f))
- ✔️ [[30-05-2025]] *18:04* ((6839cd22-cd1c-4541-bea1-50c655611104))
- ✔️ [[30-05-2025]] *21:28* ((68362092-aafa-44b6-83b2-8f4a163dd2a0))
- ✔️ [[10-05-2025]] *22:52* ((66ed695f-a60d-473d-8855-ec948f4a8bf8))
- ✔️ [[10-05-2025]] *22:56* ((66ed6960-90a9-44e0-842f-61c071f4b607))
- ✔️ [[10-05-2025]] *23:05* ((93b5aeab-7030-401b-b111-f27673af6d28))
- ✔️ [[10-05-2025]] *23:06* ((681fbf91-62b7-49bc-bf11-aad4d56a6f83))
- ✔️ [[10-05-2025]] *23:07* :LOGBOOK:
CLOCK: [2025-05-10 Sat 23:07:09]--[2025-05-10 Sat 23:07:11] => 00:00:02
:END:
- ✔️ [[May 21st, 2025]] *09:04* ((65c8d43c-9e5e-455f-9c48-cb6d035417fc))
- ✔️ [[May 24th, 2025]] *19:02* ((6831961e-c3a3-4890-99ae-ffda429333c8))
- ✔️ [[May 24th, 2025]] *20:47* ((6659d0ed-b485-4423-9c75-a8f5d715b31f))
- ✔️ [[May 24th, 2025]] *22:02* ((6832257a-63a4-4c89-8353-25f0e94caa51))
- ✔️ [[May 24th, 2025]] *22:02* ((6832257a-4373-4560-a7e2-79fba9f4c9e6))
- ✔️ [[May 24th, 2025]] *22:02* ((682ecc99-b356-4086-9ff8-4e4736018009))
- ✔️ [[May 25th, 2025]] *15:49* ((66e80dfd-0f7c-4020-aa87-906662c9eebd))
- ✔️ [[May 25th, 2025]] *19:26* ((6832257a-f98d-4f5e-850c-ddf8ffd0b5fb))
- ✔️ [[May 25th, 2025]] *19:26* ((6832257a-85cb-46bd-9018-855f59070a41))
- ✔️ [[May 25th, 2025]] *19:27* ((68331e69-7914-4696-8f2e-9ff4e9878686))
- ✔️ [[May 25th, 2025]] *19:29* ((6832257a-7e7e-4ed8-abf8-dd88c6643863))
- ✔️ [[May 25th, 2025]] *19:30* ((6832257a-cbb8-4881-ab20-bebcda629999))
- ✔️ [[May 25th, 2025]] *19:31* ((6832257a-eea4-45f9-ab9f-98dbc36328cf))
- ✔️ [[May 25th, 2025]] *22:49* ((65c8d46e-6599-4319-9683-4f86396c7e29))
- ✔️ [[May 25th, 2025]] *22:49* ((65c8d45b-9775-4e19-88ed-c5d1895df182))
- ✔️ [[May 26th, 2025]] *11:19* ((68342adf-8309-40bf-a38e-5dab74b7a5ea))
- ✔️ [[May 26th, 2025]] *11:20* ((68342adf-0b33-4470-aae1-a3741a2d5432))
- ✔️ [[May 26th, 2025]] *11:22* ((68342adf-7c9d-4937-8d81-7ce37d084360))
- ✔️ [[May 26th, 2025]] *13:23* ((68342adf-daa1-480c-813c-48be1ba86b71))
- ✔️ [[May 26th, 2025]] *13:31* ((68342adf-3362-4bb4-9082-f6050f8cf63c))
- ✔️ [[May 26th, 2025]] *13:45* ((6834435e-3184-483a-a02c-271995950996))
- ✔️ [[May 26th, 2025]] *13:45* ((6834435d-21d2-492c-aac2-21053aba25e1))
- ✔️ [[May 26th, 2025]] *13:47* ((68342adf-d123-444d-b7a2-c4bedd4042dd))
- ✔️ [[May 26th, 2025]] *14:11* ((68342adf-ecdc-4812-ad4f-d5240a2d5fa9))
- ✔️ [[May 26th, 2025]] *15:19* ((68344d8e-d83d-4c7c-b4aa-56ad71f53ddf))
- ✔️ [[May 26th, 2025]] *20:22* ((683481be-df12-4c94-a56b-fbf9712c96e4))
- ✔️ [[May 26th, 2025]] *21:58* ((6831933e-7f38-436a-91f0-abf1292e15a2))
- ✔️ [[May 26th, 2025]] *21:58* ((68319354-327c-48d4-a6f8-47c04409e98a))
- ✔️ [[May 26th, 2025]] *21:58* ((68331a74-24ed-48d3-9a7f-df9101d3ef5f))
- ✔️ [[May 26th, 2025]] *21:58* ((683481c8-e3cd-462a-8a93-4d19b7e3db3e))
- ✔️ [[May 26th, 2025]] *22:11* ((6831991d-62c9-4091-b3e9-af451051d642))
- ✔️ [[May 26th, 2025]] *22:16* ((65c8d477-cade-4b0b-a8b4-2756a6b98e6e))
- ✔️ [[May 26th, 2025]] *22:16* ((65c8d477-2c6c-4548-9e72-09cee84bec35))
- ✔️ [[May 26th, 2025]] *22:17* ((65c8d455-6e80-4f1e-b650-813a243b696c))
- ✔️ [[May 26th, 2025]] *22:18* ((65f2aaa6-64f6-42e8-8b2c-2a22f8538b30))
- ✔️ [[May 26th, 2025]] *22:18* ((65f2aaa6-690e-4bdc-962a-7c0ddf212f11))
- ✔️ [[May 26th, 2025]] *22:19* ((668e3747-dff2-4f1a-84b2-1d75cbd83aa1))
- ✔️ [[May 26th, 2025]] *22:19* ((668e3747-62ba-4218-8d0e-57effaa7f795))
- ✔️ [[May 26th, 2025]] *22:19* ((6673db54-3eb8-48ba-a840-cbe1ba29b2ff))
- ✔️ [[May 26th, 2025]] *22:19* ((6673db1d-f835-4eb5-9182-9e4a56a85e18))
- ✔️ [[May 26th, 2025]] *22:19* ((6673db98-f12a-4d48-b1ec-281082dfec1f))
- ✔️ [[May 26th, 2025]] *22:19* ((666d40df-e520-45bc-be26-dd4af89767e5))
- ✔️ [[May 26th, 2025]] *22:19* ((65d89628-a424-4291-ad37-c95ed68c7fdd))
- ✔️ [[May 26th, 2025]] *22:20* ((65c9f0a4-861b-4f8e-9738-9e19488e259d))
- ✔️ [[May 26th, 2025]] *22:20* ((65c8d43b-046c-4682-a958-a14787d04e22))
- ✔️ [[May 26th, 2025]] *22:20* ((65c8d43c-3e62-4a44-aaf8-ad1f7b0e15c4))
- ✔️ [[May 26th, 2025]] *22:20* ((65c8d43c-b2de-4ad6-9282-e2d67a0cb6b9))
- ✔️ [[May 26th, 2025]] *22:20* ((65c8d43d-0487-4c5e-a8ae-cae113812690))
- ✔️ [[May 26th, 2025]] *22:20* ((65c8d43d-09c9-416b-a127-a865e0fd3b08))
- ✔️ [[May 26th, 2025]] *22:20* ((65c8d43d-2358-46ad-acf0-3396607b2ace))
- ✔️ [[May 26th, 2025]] *22:20* ((660178c2-5901-423e-976a-dba8a52916c5))
- ✔️ [[May 26th, 2025]] *22:21* ((65d8963d-149e-44b2-a70d-9cee907047ad))
- ✔️ [[May 26th, 2025]] *22:21* ((65c8d477-b5c3-45c1-986d-9daf3563a1d1))
- ✔️ [[May 26th, 2025]] *22:21* ((65d8963d-5b6c-48da-bd21-21e3ffe41570))
- ✔️ [[May 26th, 2025]] *22:21* ((65c8d45b-545c-4ca4-acc3-b35ef663757f))
- ✔️ [[May 26th, 2025]] *22:21* ((65c8d45b-3974-4a0e-ac6e-7dbc798340ab))
- ✔️ [[May 26th, 2025]] *22:21* ((65c35633-d1fd-4840-a6bc-ee79a2db5ffa))
- ✔️ [[May 26th, 2025]] *22:22* ((65c8d45b-1a21-40d2-9003-5b9c13d08e01))
- ✔️ [[May 26th, 2025]] *22:22* ((65d8963d-f00b-44a0-97c3-10f5510ab44e))
- ✔️ [[May 26th, 2025]] *22:22* ((683432dd-8909-4466-b7ec-c4861aaf2fe0))
- ✔️ [[May 26th, 2025]] *22:23* ((65c8d46f-f70f-4d0f-9fce-14c2ab11ab68))
- ✔️ [[May 26th, 2025]] *22:23* Coprire anche aspetti di collaborative modeling
- ### [[2025/06]]
- ✔️ [[02-06-2025]] *23:42* ((6836208c-cf9d-4d40-9f87-db1045f739e1))
- ✔️ [[03-06-2025]] *16:05* ((683f0108-c7ac-41ae-a6bd-b9c02829e6fc))
- ✔️ [[03-06-2025]] *16:07* ((683ee6f2-7304-4ea7-8000-46b4106b3ef5))
- ✔️ [[03-06-2025]] *21:54* ((683620b6-dd45-402c-80d5-0eb8facf914d))
@@ -9,7 +9,7 @@ progress:: {{renderer :todomaster}}
- [[P2]]
- {{query (and (task TODO) (priority B))}}
query-table:: true
query-properties:: [:block :todoist-desc]
query-properties:: [:block :todoist-desc :todoist-id]
-
- TODO Fare timesheets
- TODO [[PAPERS/ILIRIAN-COLLABORATION]]
@@ -32,9 +32,11 @@ progress:: {{renderer :todomaster}}
todoist-id:: [7688827022](https://todoist.com/app/task/7688827022)
todoist-desc:: [https://github.com/MDEGroup/BiasInRSSEwithLLM](https://github.com/MDEGroup/BiasInRSSEwithLLM)
- TODO [#B] [FRINGE] Collaborazione su Fairness Mutation/Metamorphic Testing?
- TODO [[EditoringChairing/2024-MODELS-WS-LOWCODE]]
- DONE [[EditoringChairing/2024-MODELS-WS-LOWCODE]]
id:: 6832257a-cbb8-4881-ab20-bebcda629999
- TODO [[PAPERS/2024-TESORO]]
- TODO [[PAPERS/TOSEM-2024-0258]]
- DONE [[PAPERS/TOSEM-2024-0258]]
id:: 6832257a-eea4-45f9-ab9f-98dbc36328cf
- TODO [[PAPERS/AML4SE]]
todoist-id:: [8113443070](https://todoist.com/app/task/8113443070)
todoist-desc:: [AMLinRSSE - Online LaTeX Editor Overleaf](https://www.overleaf.com/project/66683cbaf1ed22bc12efee72)
@@ -77,6 +79,7 @@ progress:: {{renderer :todomaster}}
SCHEDULED: <2024-11-08 Fri 11:10>
- TODO Ridefinizione Piano Formativo e regole di riconoscimento CFU
- TODO [#B] [[PAPERS/2024-AMLinRSSE]]
id:: 6832257a-6e4b-4f1f-9d7b-1f520b8197ca
SCHEDULED: <2025-05-26 Mon>
- DONE [Lavoro Davide Sciarra e Giovanni Sicchio](https://outlook.office365.com/owa/?ItemID=AAkALgAAAAAAHYQDEapmEc2byACqAC%2FEWg0AjoVpQvBez0Ss5ZY2WGWEJgAHeU%2BoMgAA&exvsurl=1&viewmodel=ReadMessageItem)
todoist-id:: [8558858426](https://app.todoist.com/app/task/8558858426)
@@ -86,62 +89,71 @@ progress:: {{renderer :todomaster}}
SCHEDULED: <2025-01-14 Tue 12:00>
- TODO [[PAPERS/SANER2025-FAIRNESS]]
- TODO [[PAPERS/SANER-2025-Popbias-LLM]]
- TODO [[PAPERS/MSR-2025-CodeXHug-dataset]]
- DONE [[PAPERS/MSR-2025-CodeXHug-dataset]]
id:: 6832257a-7e7e-4ed8-abf8-dd88c6643863
:LOGBOOK:
CLOCK: [2025-05-25 Sun 19:29:04]--[2025-05-25 Sun 19:29:05] => 00:00:01
:END:
- TODO Nuova edizione del PinKamp
todoist-id:: [8644892780](https://app.todoist.com/app/task/8644892780)
todoist-desc:: From: giuseppe.dellapenna@univaq.it
- TODO ICSE 2026 Program Committee
- TODO [[PAPERS/Experience-Report-to-EMSE]]
- TODO [[PAPERS/FSE2025-NIER]]
- DONE [[PAPERS/FSE2025-NIER]]
id:: 68362092-aafa-44b6-83b2-8f4a163dd2a0
- TODO [#C] Dottorato industriale riservato a dipendenti
- TODO Esplorare e approfondire gli aspetti fondamentali e pratici dei large language models
SCHEDULED: <2025-05-25 Sun>
- TODO [#C] [[PAPERS/JOURNAL-LLMS4Edelta]]
- TODO Richiesta afferenza al Collegio di Mauro Cappelli, ricercatore allEnea
- TODO [#C] Vedere per compenso per la De Masi
- TODO [#B] [[PAPERS/Journal-Green-Paper]]
- TODO [#A] Rivedere Composizione Collegio
todoist-id:: [8750396305](https://app.todoist.com/app/task/8750396305)
SCHEDULED: <2025-06-04 Wed>
- TODO [#C] [[PAPERS/ABSTRACT-ENGINEERING]]
- TODO [#C] [[PAPERS/TOSEM2025-TESORO]]
- TODO [#B] [R: Scheda XLI ciclo e richieste di afferenza al Collegio](https://outlook.office365.com/owa/?ItemID=AAkALgAAAAAAHYQDEapmEc2byACqAC%2FEWg0AjoVpQvBez0Ss5ZY2WGWEJgAHueDXAQAA&exvsurl=1&viewmodel=ReadMessageItem)
- TODO [#B] Informiamo che entro e non oltre il ciascun Coordinatore dovrà caricare sulla piattaforma telematica dedicata: - il verbale del collegio dei docenti con esplicita ammissione allesame finale; - la copia della tesi finale del dottorando; - il verbale della commissione dellesame finale.
SCHEDULED: <2025-07-31 Thu>
- TODO [#B] MODELS Journal-First-track + 1 more
id:: 6832257a-2676-4bf1-8958-81797e5c7003
SCHEDULED: <2025-05-26 Mon>
- TODO Revision of manuscript #EMSE-D-25-00044
- DONE Revision of manuscript #EMSE-D-25-00044
id:: 6832257a-85cb-46bd-9018-855f59070a41
- TODO [#B] [[PAPERS/MAS-4-POPULARITY-BIAS]]
- TODO [#B] [ICSE 2026, Research Track] Review Assignment and Instructions (Half Review Deadline: *Apr 18*; All reviews deadline: May 16)
todoist-desc:: From: noreply-icse2026@hotcrp.com
todoist-id:: [9001461730](https://app.todoist.com/app/task/9001461730)
- TODO Dottorato industriale
todoist-id:: [9006116046](https://app.todoist.com/app/task/9006116046)
id:: 6823acce-6cc8-4da4-9a2c-5ffacf92e168
SCHEDULED: <2025-05-22 Thu>
- DONE [#B] Models Conference 2025
id:: 682ecc99-b356-4086-9ff8-4e4736018009
id:: 682ecc99-b356-4086-9ff8-4e4736018009
SCHEDULED✔️ <2025-05-26 Mon>
:LOGBOOK:
CLOCK: [2025-05-24 Sat 22:02:34]--[2025-05-24 Sat 22:02:35] => 00:00:01
CLOCK: [2025-05-24 Sat 22:02:52]--[2025-05-24 Sat 22:02:52] => 00:00:00
:END:
- DONE Review MODELS 2025 conference submissions
id:: 6832257a-4373-4560-a7e2-79fba9f4c9e6
id:: 6832257a-4373-4560-a7e2-79fba9f4c9e6
:LOGBOOK:
CLOCK: [2025-05-24 Sat 22:02:27]--[2025-05-24 Sat 22:02:28] => 00:00:01
:END:
- TODO [#B] [[PAPERS/2025-SEAA-CodeXHug]]
- DONE [#B] [[PAPERS/2025-SEAA-CodeXHug]]
id:: 6832257a-f98d-4f5e-850c-ddf8ffd0b5fb
:LOGBOOK:
CLOCK: [2025-05-25 Sun 19:26:07]--[2025-05-25 Sun 19:26:08] => 00:00:01
:END:
- DONE [[PAPERS/2025-Survey-MOSAICO]]
id:: 6832257a-63a4-4c89-8353-25f0e94caa51
- TODO [#B] Migliorare situazione economica dottorandi
id:: 6832257a-63a4-4c89-8353-25f0e94caa51
- TODO [#B] Sinergia con GSSI
- TODO [#A] [[PAPERS/MOSAICO-Technical-Report]]
todoist-id:: [9187744429](https://app.todoist.com/app/task/9187744429)
- TODO [#A] SLIDES DI PRESENTAZIONE
todoist-id:: [9193848277](https://app.todoist.com/app/task/9193848277)
- TODO [#B] SLIDES DI PRESENTAZIONE
todoist-desc:: Con HOWTO etc.
- TODO [#A] MODELS Journal-First-track + 1 more
todoist-id:: [8933176944](https://app.todoist.com/app/task/8933176944)
todoist-id:: [9193848277](https://app.todoist.com/app/task/9193848277)
- TODO [#B] [[MODELS Journal-First-track + 1 more]]
todoist-desc:: From: noreply@researchr.org
SCHEDULED: <2025-05-25 Sun>
- TODO [#A] [[PAPERS/2025-SEAA-CodeXHug]]
todoist-id:: [8933176944](https://app.todoist.com/app/task/8933176944)
SCHEDULED: <2025-06-04 Wed>
- DONE [[PAPERS/2025-SEAA-CodeXHug]]
todoist-id:: [9123770472](https://app.todoist.com/app/task/9123770472)
@@ -0,0 +1,159 @@
icon:: ⚽
progress:: {{renderer :todomaster}}
- #.tabular
- [[P1]]
- {{query (and (task TODO) (priority A))}}
query-table:: true
query-properties:: [:block :todoist-desc :todoist-id]
- [[P2]]
- {{query (and (task TODO) (priority B))}}
query-table:: true
query-properties:: [:block :todoist-desc :todoist-id]
-
- TODO Fare timesheets
- TODO [[PAPERS/ILIRIAN-COLLABORATION]]
- TODO [[EditoringChairing/SOSYM-AI-MDE-SpecialIssue]]
- TODO Literature review on adversarial ML for SE
todoist-id:: [6841676473](https://todoist.com/app/task/6841676473)
todoist-desc:: [Literature Review - Online LaTeX Editor Overleaf](https://www.overleaf.com/project/643e68c8a424e0027e19fc5d)
- TODO Finalizzazione questione documentale
- TODO [#B] [[PAPERS/DSL-FOR-IOT-TESTING]]
- TODO [[PAPERS/SSTD-LLMS]]
- TODO [[PAPERS/JSS-2024-PERFORMANCE-TEST-COVERAGE]]
- TODO [[PAPERS/SOSYM-EXPERT-VOICE-2024-ML-EVOLUTION]]
- DONE Visita Riccardo
todoist-desc:: ✉: http://s.diruscio.org/u9fPP
todoist-id:: [7602643924](https://app.todoist.com/app/task/7602643924)
- TODO [[PAPERS/2024-ONTOLOGY-AI]]
todoist-id:: [7658261760](https://todoist.com/app/task/7658261760)
- TODO NIER paper on how our two-level agent architecture
- TODO [#C] [[PAPERS/2024-BiasInRSSEwithLLM]]
todoist-id:: [7688827022](https://todoist.com/app/task/7688827022)
todoist-desc:: [https://github.com/MDEGroup/BiasInRSSEwithLLM](https://github.com/MDEGroup/BiasInRSSEwithLLM)
- TODO [#B] [FRINGE] Collaborazione su Fairness Mutation/Metamorphic Testing?
- DONE [[EditoringChairing/2024-MODELS-WS-LOWCODE]]
id:: 6832257a-cbb8-4881-ab20-bebcda629999
- TODO [[PAPERS/2024-TESORO]]
- DONE [[PAPERS/TOSEM-2024-0258]]
id:: 6832257a-eea4-45f9-ab9f-98dbc36328cf
- TODO [[PAPERS/AML4SE]]
todoist-id:: [8113443070](https://todoist.com/app/task/8113443070)
todoist-desc:: [AMLinRSSE - Online LaTeX Editor Overleaf](https://www.overleaf.com/project/66683cbaf1ed22bc12efee72)
- DONE [#B] popup UnivAQ Street Science 2024
todoist-desc:: ✉: http://s.diruscio.org/eTBkR
todoist-id:: [8117885918](https://app.todoist.com/app/task/8117885918)
:LOGBOOK:
CLOCK: [2025-05-10 Sat 22:52:25]--[2025-05-10 Sat 22:52:27] => 00:00:02
:END:
- TODO [[PAPERS/BADGES-IMPACT]]
- TODO [#C] Convenzione Erasmus Nazionale
- DONE [#A] [[PAPERS/JSS-SATD]]
todoist-desc:: ✉: http://s.diruscio.org/bWUfi
todoist-id:: [8230073873](https://app.todoist.com/app/task/8230073873)
- TODO [[PAPERS/EMELIOT-EXPERIMENT]]
- DONE Career Day 24
todoist-desc:: ✉: http://s.diruscio.org/Y20BN
todoist-id:: [8359671703](https://app.todoist.com/app/task/8359671703)
- TODO Panel Invitation (MODELS 2024)
- TODO [[PAPERS/FSE2024-UserStories]]
todoist-id:: [8407326252](https://todoist.com/app/task/8407326252)
todoist-desc:: ✉: http://s.diruscio.org/fcx9l
- DONE [#A] [ICSE 2025, Research Track] Review Assignment and Instructions (Half Review Deadline: *Aug 30*)
todoist-desc:: ✉: [http://s.diruscio.org/vMkXT](http://s.diruscio.org/vMkXT)
todoist-id:: [8286706547](https://app.todoist.com/app/task/8286706547)
- DONE [#A] Progressione Phuong ad Associato
todoist-desc:: ✉: http://s.diruscio.org/hJoCt
todoist-id:: [8419941589](https://app.todoist.com/app/task/8419941589)
- DONE [#A] Notifica nomina commissione RTD/A S.S.D INFO-01/A (Progetto MATTERS, Allegato A del Bando di selezione)
todoist-desc:: ✉: http://s.diruscio.org/Z3tSx
todoist-id:: [8424508957](https://app.todoist.com/app/task/8424508957)
- TODO Orientamento 2026 PNRR - Anno 24/25
- DONE [#B] Progressione seconda fascia Phuong Nguyen
todoist-desc:: ✉: http://s.diruscio.org/MjM5n
todoist-id:: [8427313493](https://app.todoist.com/app/task/8427313493)
SCHEDULED: <2025-01-10 Fri>
- DONE [#A] Conscorso RTD/a MATTERS
todoist-desc:: ✉: http://s.diruscio.org/ouj19
todoist-id:: [8434113580](https://app.todoist.com/app/task/8434113580)
SCHEDULED: <2024-11-08 Fri 11:10>
- TODO Ridefinizione Piano Formativo e regole di riconoscimento CFU
- TODO [#B] [[PAPERS/2024-AMLinRSSE]]
id:: 6832257a-6e4b-4f1f-9d7b-1f520b8197ca
SCHEDULED: <2025-05-26 Mon>
- DONE [Lavoro Davide Sciarra e Giovanni Sicchio](https://outlook.office365.com/owa/?ItemID=AAkALgAAAAAAHYQDEapmEc2byACqAC%2FEWg0AjoVpQvBez0Ss5ZY2WGWEJgAHeU%2BoMgAA&exvsurl=1&viewmodel=ReadMessageItem)
todoist-id:: [8558858426](https://app.todoist.com/app/task/8558858426)
- DONE [#A] [[PAPERS/TOSEM-FAIRNESS]]
todoist-desc:: [[TOSEM] Towards Early Detection of Algorithmic Bias from Dataset's Bias Symptoms: An Empirical Study - Online LaTeX Editor Overleaf](https://www.overleaf.com/project/65b7d77455b46f44b87e2331)
todoist-id:: [8565953885](https://app.todoist.com/app/task/8565953885)
SCHEDULED: <2025-01-14 Tue 12:00>
- TODO [[PAPERS/SANER2025-FAIRNESS]]
- TODO [[PAPERS/SANER-2025-Popbias-LLM]]
- DONE [[PAPERS/MSR-2025-CodeXHug-dataset]]
id:: 6832257a-7e7e-4ed8-abf8-dd88c6643863
:LOGBOOK:
CLOCK: [2025-05-25 Sun 19:29:04]--[2025-05-25 Sun 19:29:05] => 00:00:01
:END:
- TODO Nuova edizione del PinKamp
todoist-id:: [8644892780](https://app.todoist.com/app/task/8644892780)
todoist-desc:: From: giuseppe.dellapenna@univaq.it
- TODO ICSE 2026 Program Committee
- TODO [[PAPERS/Experience-Report-to-EMSE]]
- DONE [[PAPERS/FSE2025-NIER]]
id:: 68362092-aafa-44b6-83b2-8f4a163dd2a0
- TODO [#C] Dottorato industriale riservato a dipendenti
- TODO Esplorare e approfondire gli aspetti fondamentali e pratici dei large language models
- TODO [#C] [[PAPERS/JOURNAL-LLMS4Edelta]]
- TODO Richiesta afferenza al Collegio di Mauro Cappelli, ricercatore allEnea
- TODO [#C] Vedere per compenso per la De Masi
- TODO [#B] [[PAPERS/Journal-Green-Paper]]
- TODO [#A] Rivedere Composizione Collegio
todoist-id:: [8750396305](https://app.todoist.com/app/task/8750396305)
SCHEDULED: <2025-06-04 Wed>
- TODO [#C] [[PAPERS/ABSTRACT-ENGINEERING]]
- TODO [#C] [[PAPERS/TOSEM2025-TESORO]]
- TODO [#B] [R: Scheda XLI ciclo e richieste di afferenza al Collegio](https://outlook.office365.com/owa/?ItemID=AAkALgAAAAAAHYQDEapmEc2byACqAC%2FEWg0AjoVpQvBez0Ss5ZY2WGWEJgAHueDXAQAA&exvsurl=1&viewmodel=ReadMessageItem)
- TODO [#B] Informiamo che entro e non oltre il ciascun Coordinatore dovrà caricare sulla piattaforma telematica dedicata: - il verbale del collegio dei docenti con esplicita ammissione allesame finale; - la copia della tesi finale del dottorando; - il verbale della commissione dellesame finale.
SCHEDULED: <2025-07-31 Thu>
- TODO [#B] MODELS Journal-First-track + 1 more
id:: 6832257a-2676-4bf1-8958-81797e5c7003
SCHEDULED: <2025-05-26 Mon>
- DONE Revision of manuscript #EMSE-D-25-00044
id:: 6832257a-85cb-46bd-9018-855f59070a41
- TODO [#B] [[PAPERS/MAS-4-POPULARITY-BIAS]]
- TODO [#B] [ICSE 2026, Research Track] Review Assignment and Instructions (Half Review Deadline: *Apr 18*; All reviews deadline: May 16)
todoist-desc:: From: noreply-icse2026@hotcrp.com
todoist-id:: [9001461730](https://app.todoist.com/app/task/9001461730)
- TODO Dottorato industriale
todoist-id:: [9006116046](https://app.todoist.com/app/task/9006116046)
id:: 6823acce-6cc8-4da4-9a2c-5ffacf92e168
SCHEDULED: <2025-05-22 Thu>
- DONE [#B] Models Conference 2025
id:: 682ecc99-b356-4086-9ff8-4e4736018009
SCHEDULED✔️ <2025-05-26 Mon>
:LOGBOOK:
CLOCK: [2025-05-24 Sat 22:02:34]--[2025-05-24 Sat 22:02:35] => 00:00:01
CLOCK: [2025-05-24 Sat 22:02:52]--[2025-05-24 Sat 22:02:52] => 00:00:00
:END:
- DONE Review MODELS 2025 conference submissions
id:: 6832257a-4373-4560-a7e2-79fba9f4c9e6
:LOGBOOK:
CLOCK: [2025-05-24 Sat 22:02:27]--[2025-05-24 Sat 22:02:28] => 00:00:01
:END:
- DONE [#B] [[PAPERS/2025-SEAA-CodeXHug]]
id:: 6832257a-f98d-4f5e-850c-ddf8ffd0b5fb
:LOGBOOK:
CLOCK: [2025-05-25 Sun 19:26:07]--[2025-05-25 Sun 19:26:08] => 00:00:01
:END:
- DONE [[PAPERS/2025-Survey-MOSAICO]]
id:: 6832257a-63a4-4c89-8353-25f0e94caa51
- TODO [#B] Sinergia con GSSI
- TODO [#B] SLIDES DI PRESENTAZIONE
todoist-desc:: Con HOWTO etc.
todoist-id:: [9193848277](https://app.todoist.com/app/task/9193848277)
- TODO [#B] [[MODELS Journal-First-track + 1 more]]
todoist-desc:: From: noreply@researchr.org
todoist-id:: [8933176944](https://app.todoist.com/app/task/8933176944)
SCHEDULED: <2025-06-04 Wed>
- DONE [[PAPERS/2025-SEAA-CodeXHug]]
todoist-id:: [9123770472](https://app.todoist.com/app/task/9123770472)
@@ -0,0 +1,122 @@
type:: [[JournalPaper]]
date:: [[11-01-2024]] - 16:15
full-title::
external-links:: [Sosym Expert voice: Co-evo in the era of Low code - Online LaTeX Editor Overleaf](https://www.overleaf.com/project/680d243a75547ff8d273e791)
year:: 2024
date-start:: [[11-01-2024]]
deadline-submission::
status:: [[DOING]]
venue:: [[SOSYM]]
leader:: [[people/ludovico]]
progress:: {{renderer : todomaster}}
- ## MEETINGS
- **Meeting con [[people/ludovico]] del [[30-05-2025]]**
- Abbiamo discusso di un possibile raffinamento del paper con l'obiettivo di avere la seguente struttura
- Overview del problema della coevoluzione cosi come funzionava 10 anni fa, facendo riferimento alle attività peculiare del problema, quindi:
- Calcolo delle differenze del metamodello
- Identificazione degli artefatti impattati dalla evoluzione
- Generazione/sviluppo degli adattamenti
- Applicazione degli adattamenti
- Overview delle piattaforme low-code ed esempio di airtable
- Il messaggio poi e' quello che la parte fondazionale fatta vedere prima sul problema della co-evoluzione applica ancora ora. Gli elementi costitutivi sono gli stessi concettualmente. E' cambiata la modalità di interezione e di accesso ai vari artefatti. Quindi qui si fa vedere come e' possibile accedere tramite API ai questi concetti.
- Una rivisitazione del processo di co-evoluzione da un punto architetturale. Invece di accedere agli artefatti coinolti localmente, ora viene fatto tramite API
- ![image.png](../assets/image_1748613428814_0.png)
- Questa figura va quindi raffinata da un punto architetturale evidenzianto le componenti coinvolte nella coevoluzione e i punti abilitanti di accesso e scrittura dei vari artefatti coinvolti.
- Le attività di co-evoluzione che si possono avere dipendono dalle possibilità di accesso agli artefatti tramite API
-
- query-table:: true
- ## [[PAPERS/NOTES]]
collapsed:: true
- Revised section
- The evolution of data-intensive web applications has predominantly relied on model-driven approaches that emphasize the separation of functional descriptions from implementation platforms. Over the last decades, many modeling languages have been proposed mainly based on three modeling constructs, i.e., data, page, and navigation. In particular, *data modeling* was crucial. Early frameworks used relatively homogeneous data sources, which were meticulously structured to ensure consistency and ease of maintenance. The models described the data schema—defining entities, relationships, and attributes—that formed the backbone of the applications. The concept of *pages* in early web applications was straightforward yet foundational. Each page represented a cohesive unit of content and functionality structured around the underlying data model. Pages were designed using templates that dictated layout and style, often leading to static presentations that required significant effort to update or personalize. *Navigation* models were integral, defining the paths users would take through an application. These models outlined how pages were interconnected, facilitating user movement across sections and functions of the website. Navigation was typically rigid, reflecting the static nature of early web architectures, with limited dynamic capabilities or user-driven paths.
- As shown in Table \ref{tab:}, initial modeling platforms were often standalone systems that provided tools for defining and manipulating these constructs without detailed programming knowledge. However, these systems commonly offered a low level of user experience and were not designed to support rapid, iterative changes. The platforms were monolithic, coupling data, presentation, and navigation in ways that made updates cumbersome. The development processes were traditional and non-agile, lacking the flexibility to adapt quickly to new requirements or user feedback. Integration with emerging DevOps practices was limited, further slowing the evolution of applications as they could not effectively leverage continuous integration or automated deployment techniques.
- The development of data-intensive web applications has undergone significant transformations, moving from rigid, model-driven approaches to more dynamic, agile methodologies that better address the demands of today's users and technological environments. Unlike in the past, where data sources were mostly homogeneous and static, modern applications often need to *integrate heterogeneous data sources*. These can range from live data feeds to unstructured data pools, necessitating advanced data management techniques such as real-time data processing and big data technologies. The focus has shifted from merely managing data to extracting value through sophisticated analytics and machine learning algorithms. Moreover, modern web applications have moved away from the static pages of the past to *dynamic interfaces* that can adapt to user behavior and preferences. Using frameworks like React, Angular, and Vue.js allows developers to create responsive, single-page applications that provide seamless user experiences. These frameworks support modular and component-based architectures, making updating and maintaining complex applications easier. Navigation in contemporary web applications is no longer just about linking pages but providing *dynamic navigation models* that best fit user preferences, with capabilities like dynamic menus, personalized breadcrumbs, and AI-driven suggestions that improve usability and accessibility.
- The evolution of data-intensive application development is indeed not finished. We envision a future that require the management of several challenges including the following ones:
- **Collaborative and Agile Modeling:** Modern web applications demand agility and adaptability. Thus, advancing collaborative modeling tools and environments is pivotal. Such tools should support real-time collaboration and agile methodologies, incorporating practices like version control and conflict resolution to facilitate simultaneous model evolution. Further exploration into integrating agile practices within model-driven development will also be a key focus, aiming to enhance the flexibility and responsiveness of development processes.
- **Artificial Intelligence in Modeling:** The potential of AI technologies to revolutionize model-driven development is immense. From AI-driven code generation to the maintenance and optimization of models, AI could significantly enhance the efficiency and effectiveness of development processes. Additionally, applying machine learning to predict trends in application evolution could enable developers to anticipate and adapt to changes proactively.
- **Integration and Interoperability:** The seamless integration of heterogeneous data sources remains a cornerstone of our research. This involves not only enhancing data consistency and accessibility across diverse platforms but also developing robust standards that foster interoperability between varying modeling frameworks. By refining these standards, particularly in the context of API management and microservices architectures, we aim to maintain contextual integrity across interconnected systems.
- **Low-Code and No-Code Platforms:** The rise of low-code and no-code platforms presents both challenges and opportunities. Our research will assess the effectiveness of these platforms in the lifecycle of data-intensive applications, focusing on customization and scalability. Investigating the integration of traditional modeling techniques with these low-code solutions will help us understand how to enhance their functionality and flexibility.
- **Addressing Lock-in Issues with Low-Code Platforms** Investigate methodologies and frameworks that enable model-driven engineering approaches to mitigate lock-in problems inherent in low-code platforms. This includes developing strategies for model portability and interoperability across different platforms, allowing for more flexibility and reducing dependency on a single vendor.
-
- ---
-
-
- As we envision the future trajectory of model evolution for data-intensive web applications, our research agenda is shaped by the imperative to address current challenges while capitalizing on emergent technological opportunities. Our focus spans several crucial domains:
-
- **Security and Privacy:** As the complexity of web applications increases, so does the need for robust security and privacy measures. Our agenda includes developing security frameworks that ensure data integrity and privacy without impeding the agility of model updates. Additionally, researching privacy-preserving techniques in model-driven development will help incorporate privacy by design, which is crucial for applications handling sensitive user data.
- **Sustainability and Scalability:** Finally, our research will explore sustainable development practices that promote the long-term maintainability and minimal resource consumption of web applications. Studying scalable architectural models and patterns that optimize the performance of these applications will also be a key area of focus.
- Through these varied yet interconnected research themes, we aim to pave the way for a robust, flexible, and user-centric future in model-driven development for data-intensive web applications. This narrative not only reflects our commitment to technical advancements but also aligns with the broader goals of making web development more agile, secure, and scalable.
- Possibly for each point I would refer our papers, or some inital investigation about the point under analysis and discuss what's needed and thus what are additional topics of research.
- At that time the approach was to address very specific problems. While technologies and methods evolved and become more mature, the focus shifted on generalizing the proposed solutions making them usable, scalable, and efficient.
- Some points for the research agenda:
- **Interoperability Among Modeling Formalisms and Platforms**
- Investigate strategies to enhance interoperability between different modeling languages and platforms, focusing on establishing common semantic frameworks or intermediaries that facilitate seamless data and model exchange.
- **AI-Driven Automation in Model Evolution**: Explore the potential of AI and machine learning algorithms to predict and automate aspects of model evolution, thereby reducing manual efforts in maintaining and updating models in response to evolving data-intensive application requirements.
- In the rapidly evolving landscape of data-intensive applications, the agility to adapt and refine underlying models becomes paramount. Traditional approaches, while effective, often necessitate considerable manual oversight, a task both time-consuming and prone to human error. This is where the integration of Artificial Intelligence (AI) and Machine Learning (ML) technologies presents an intriguing avenue. The essence of employing AI-driven mechanisms in the context of model evolution lies in harnessing predictive analytics and automation capabilities to foresee and enact necessary modifications within models. Such a methodology not only promises to significantly curtail manual labor but also introduces a level of precision and foresight previously unattainable.
- To fully capitalize on AI and ML's potential, a focused exploration into specific algorithms that excel in pattern recognition and predictive modeling is essential. The goal is to develop systems that can accurately predict when a model requires evolution based on emerging trends and application requirements. These systems would, ideally, not just alert developers to the necessity of changes but also suggest precise modifications or automatically implement updates where applicable. This could range from adjusting attributes and relationships within a model to more complex alterations that align with the shifting paradigms of data usage and application functionality.
- Moreover, embedding AI-driven automation within model evolution processes necessitates a comprehensive understanding of the domain-specific nuances of data-intensive applications. This involves training algorithms on extensive datasets to recognize the intricacies of various domains, ensuring that suggested model evolutions are not only technically viable but also contextually relevant. Furthermore, the integration of AI and ML in model-driven engineering should be approached with an emphasis on collaborative intelligence, where AI systems augment human expertise rather than replace it. By providing tools that offer insightful suggestions, automate routine tasks, and enable developers to focus on strategic decisions, we can achieve a symbiosis that amplifies the strengths of both human and machine.
- In synthesizing AI-driven automation with model evolution, we stand at the cusp of a paradigm shift. This initiative beckons a future where the development, maintenance, and evolution of data-intensive applications are not only more efficient but also inherently more dynamic and responsive to the needs of both users and the market. By pursuing this research agenda, we aim to unlock new methodologies that streamline the evolution of models, thereby ensuring that data-intensive applications remain robust, adaptable, and at the forefront of technological innovation.
-
-
- **Managing Technical Debt in Coupled Evolution**
- Develop methodologies and tools for identifying, quantifying, and managing technical debt arising from the coupled evolution of models and their implementations, ensuring long-term sustainability and flexibility of data-intensive systems.
- In the intricate dance of coupled evolution, where models and their implementations evolve in tandem, the specter of technical debt looms large. As these intertwined components shift and grow, they invariably accumulate compromises and shortcuts that, while expedient in the short term, threaten the system's long-term sustainability and adaptability. Recognizing and addressing this technical debt is not merely a maintenance task; it's a strategic imperative that ensures the ongoing vitality and relevance of data-intensive systems.
- To navigate this complex landscape, the development of sophisticated methodologies and tools is paramount. These resources must not only unearth the hidden and often overlooked debt embedded within the evolving tapestry of models and code but also provide actionable insights into its quantification. By moving beyond mere identification, we aim to establish a metric-driven approach that can gauge the weight and impact of accumulated debt, offering a clear picture of its implications on system performance, maintainability, and evolution.
- However, identifying and quantifying technical debt is only the first step. The crux of the challenge lies in the active management and mitigation of this debt. This involves crafting strategies and mechanisms that allow developers and system architects to prioritize debt resolution based on its projected impact on the system's future evolution. These strategies may range from refactoring efforts that untangle complex model relationships and streamline implementations to more radical architectural overhauls that address systemic issues contributing to debt accumulation.
- Integral to this approach is the establishment of a feedback loop between the evolution of models and their implementations. This loop, powered by continuous monitoring and analysis tools, serves as a dynamic ledger of technical debt, capturing its genesis, evolution, and resolution. By embedding this feedback mechanism into the development process, we can foster a culture of proactive debt management, where technical debt is not only managed but anticipated and preemptively addressed.
- In charting the course for managing technical debt in coupled evolution, we envisage a future where technical debt is no longer an invisible burden carried by data-intensive systems. Instead, it becomes a quantifiable, manageable aspect of the development process, one that is consistently monitored and judiciously addressed. Through the development and adoption of these methodologies and tools, we can secure the long-term sustainability and flexibility of data-intensive systems, ensuring they remain robust and responsive to the ever-evolving demands of the digital world.
- **Safety and Security in Model Evolution**
- Address safety and security concerns in the evolution of data-intensive applications, proposing model-driven approaches that incorporate security-by-design principles and assess the implications of model changes on application security posture.
- **Collaborative Model-Driven Engineering**
- Innovate on collaborative tools and workflows that support distributed teams in model-driven engineering efforts, particularly for data-intensive applications, focusing on version control, conflict resolution, and real-time collaboration in model evolution.
- **Extensible Metamodel Refactoring Catalogs**
- Create and maintain comprehensive catalogs of refactoring patterns for common evolution scenarios in data-intensive applications, supporting modelers in applying best practices and ensuring consistency across model evolutions.
- **Live Metamodel Evolutions and Dynamic Co-Evolution Support**
- Advance the support for live metamodel evolutions, enabling models and related artifacts to adapt dynamically to changes, minimizing disruption and downtime in data-intensive application development and deployment.
- **Standardization Efforts for Model-Driven Techniques**
- Contribute to standardization efforts aimed at defining clear specifications and protocols for model-driven engineering practices, particularly in the context of data-intensive applications, to foster interoperability, reusability, and tool compatibility.
- **Integration of Model-Driven Engineering and Digital Twin Technologies**
- Investigate the synergies between model-driven engineering and digital twin technologies, exploring how MDE can facilitate the creation and maintenance of digital twins for data-intensive applications, enhancing simulation, analysis, and real-time monitoring capabilities.
-
- **Enhancing Model-Driven Engineering (MDE) Integration with Low-Code Environments**
- Develop best practices and tools for integrating MDE methodologies within low-code development environments, aiming to preserve the benefits of abstraction and automation offered by MDE while leveraging the accessibility and rapid prototyping capabilities of low-code platforms.
- **Standardizing Model Interchange Formats for Low-Code Platforms**
- Propose and advocate for standardization of model interchange formats specific to low-code development environments. This effort would focus on enabling seamless model exchange and reuse across different low-code platforms, thus addressing one of the critical aspects of platform lock-in and enhancing ecosystem interoperability.
- **Facilitating Citizen Developer Participation in Model-Driven Processes**
- Design methodologies and tools that empower citizen developers to actively participate in model-driven development processes without the steep learning curve. This involves simplifying model abstraction layers and providing intuitive interfaces and guidance, thereby harmonizing the power of MDE with the user-friendly nature of low-code platforms.
- **Cross-Platform Model Deployment and Management Strategies**
- Explore strategies and develop tools for the deployment and management of models across multiple low-code platforms, addressing the challenges of maintaining consistency, versioning, and performance across diverse environments while avoiding vendor lock-in.
- **Automated Migration Pathways Between Low-Code Platforms**
- Research and develop automated migration tools and services that support the transition of applications and their underlying models from one low-code platform to another. This would involve identifying commonalities between platforms, mapping functional equivalents, and automating the transformation processes to minimize manual intervention.
- **Assessing the Impact of Low-Code Development on Technical Debt**
- Investigate the implications of low-code development practices on the accumulation of technical debt in model-driven engineering projects. This includes identifying patterns of debt specific to low-code platforms and proposing mitigation strategies that leverage model-driven techniques.
-
- We have the following ingredients:
- Who cited the paper:
- Model Consistency/conflict management
- Surveys on Web application development
-
-
- Alcune note per elaborare la sezione research agenda:
- **Evolution with Existing Tools for Developing Data-Intensive Applications:**
Over the past decade, significant progress has been made in developing tools and techniques for managing the evolution of data-intensive applications. However, despite these advancements, challenges persist in effectively handling model evolution, particularly when utilizing existing tools such as Eclipse Modeling Framework (EMF). When dealing with systems like EMF, issues related to dependency management and scalability remain prevalent, hindering the seamless evolution of models over time. Interestingly, integrated modeling environments like MetaEdit have demonstrated better capabilities in managing dependencies and facilitating model evolution. The absence of Low-Code platforms implemented with EMF raises questions about the adaptability and suitability of existing tools for addressing the evolving needs of data-intensive application development.
- **Low-Code Platforms:**
Low-Code platforms have emerged as promising solutions for accelerating application development by enabling visual, declarative approaches to software design. These platforms abstract away complex coding tasks, allowing developers to focus more on high-level logic and business requirements. In the context of model evolution for data-intensive applications, the role of Low-Code platforms is worthy of exploration. By providing intuitive interfaces and streamlined development processes, Low-Code platforms have the potential to simplify the evolution of application models, making it more accessible to a broader range of stakeholders. Understanding how Low-Code platforms integrate with model-driven techniques and their impact on the evolution process is essential for advancing the state-of-the-art in this domain.
- **General Discussion on Co-Evolution:**
Co-evolution, the concept of interconnected changes between different elements of a system, is a fundamental aspect of software evolution. In the context of data-intensive applications, co-evolution encompasses not only the evolution of application models but also the associated infrastructure, data schemas, and deployment environments. A broader discussion on co-evolution is necessary to explore the intricate relationships between these elements and the implications for managing their evolution cohesively. By understanding the dynamics of co-evolution, researchers and practitioners can develop more holistic approaches to model evolution that consider the interdependencies between different aspects of the software ecosystem.
- **Usability, Labor Shortage, and Low-Code Solutions:**
Usability concerns and labor shortages continue to pose significant challenges in software development, particularly in the context of data-intensive applications. The complexity of traditional development approaches often requires specialized skills and extensive training, contributing to the shortage of skilled developers in the industry. Low-Code solutions offer a promising alternative by democratizing application development and reducing the barrier to entry for individuals with diverse backgrounds. By providing intuitive interfaces and abstracting away technical complexities, Low-Code platforms empower a broader range of users to participate in the development process, potentially mitigating the impact of labor shortages and improving overall usability.
- **Technological Evolution:**
The technological landscape for developing data-intensive applications has undergone significant transformations over the past decade. Advancements in cloud computing, containerization, microservices architectures, and other technologies have reshaped the way applications are designed, deployed, and managed. These changes have profound implications for model evolution, as the evolving technological stack introduces new challenges and opportunities for managing application complexity. Understanding how these technological advancements influence the evolution of application models is crucial for developing adaptive and future-proof solutions. By staying abreast of technological trends and aligning model-driven techniques with emerging technologies, researchers can ensure the continued relevance and effectiveness of model evolution approaches in the ever-changing landscape of data-intensive application development.
- Somme additional notes from Consensus
- \section{Introduction}
- The rapid advancement of web technologies has significantly impacted the development and evolution of data-intensive applications. Model-Driven Engineering (MDE) approaches have been pivotal in addressing the complexities associated with these applications, providing a structured methodology for their design, development, and maintenance. This paper explores the evolution of model-driven techniques for managing data-intensive web applications, emphasizing the challenges of coupled evolution and interoperability issues across different modeling platforms. Through a comprehensive analysis, we propose a forward-looking research agenda aimed at overcoming these challenges, leveraging the latest advancements in AI-based technologies and low-code platforms.
- \section{Evolution of Model-Driven Techniques for Data-Intensive Applications}
- Model-Driven Engineering (MDE) has emerged as a transformative approach for the development of data-intensive applications, advocating for the use of models as primary artifacts in the software development lifecycle. This section provides a mini-survey of the significant advancements in MDE for data-intensive applications, drawing upon the foundational works and recent innovations presented in key forums like the Models conference. The evolution of MDE practices highlights a transition from traditional development paradigms towards more abstract, model-based techniques, offering enhanced productivity and adaptability. However, this evolution also underscores a critical challenge: the co-evolution of data models and their applications. As data-intensive applications grow in complexity and scale, managing this co-evolution becomes increasingly pivotal, serving as a segue into the subsequent discussion on coupled evolution and interoperability challenges.
- \section{Coupled Evolution and Interoperability Issues}
- The concept of coupled evolution in the context of data-intensive applications refers to the simultaneous and interdependent changes within the application's data models and the application itself. This section delves into the research efforts over the past decade aimed at addressing coupled evolution, presenting a mini-survey of the literature. Despite significant progress, the landscape of model-driven development is fraught with interoperability challenges, stemming from the diverse array of formalisms and platforms used in application development. These challenges are further exacerbated by the evolving nature of web technologies, necessitating continuous adaptation and integration of new models and systems. The discussion here not only highlights the complexities of managing coupled evolution but also sets the stage for exploring potential solutions within the broader context of modern development environments.
- \section{Research Agenda}
- Looking ahead, the field of model-driven development for data-intensive applications stands at a crucial juncture, with the potential to significantly benefit from advancements in Large Language Models (LLMs) and low-code platforms. This section outlines a research agenda that aims to address the challenges of (co-)evolution in web-based, data-intensive systems. By incorporating LLMs, the agenda suggests exploring how AI-based technologies can automate aspects of model evolution, potentially offering more intelligent and adaptive solutions for managing coupled evolution. Furthermore, the integration of low-code platforms presents an opportunity to democratize the development process, making it more accessible and efficient. This research agenda advocates for a holistic approach that not only tackles the technical challenges of evolution and interoperability but also embraces the socio-technical dimensions of software development in the modern era.
- \section{Conclusion}
- The evolution of model-driven techniques for data-intensive applications has paved the way for significant advancements in software development. However, the journey is far from complete. The challenges of coupled evolution and interoperability remain substantial barriers to achieving fully agile and adaptive development environments. This paper has outlined a research agenda aimed at addressing these challenges, leveraging the potential of AI and low-code platforms. As we move forward, the collaboration between researchers, practitioners, and technology providers will be crucial in realizing the vision of more efficient, adaptable, and accessible model-driven development for data-intensive applications.
@@ -2,7 +2,6 @@ icon:: 🎓
page-type:: [[SERVICES]]
- #.tabular
collapsed:: true
- **BOOX NOTES**
- ![BOOX Notes - SERVICES/DOTTORATO](../assets/../../onyx/TabUltraCPro/Notepad/SERVICES_DOTTORATO.pdf)
- ![BOOX Notes - 26-03-2024](../assets/../../onyx/TabUltraCPro/Notepad/26-03-2024.pdf)
@@ -69,31 +68,86 @@ page-type:: [[SERVICES]]
-
-
- **MAILS**
collapsed:: true
- [⏳ FOLLOWUP EMAILS](https://mail.google.com/mail/u/0/#search/label%3A%F0%9F%91%B7-work-services-%F0%9F%8E%93-services-phdict++label%3A_GTD-%E2%8F%B3-Followup)
- [STARRED EMAILS](https://mail.google.com/mail/u/0/#search/label%3A%F0%9F%91%B7-work-services-%F0%9F%8E%93-services-phdict++is%3Astarred)
- [💸 BUDGET RELATED](https://mail.google.com/mail/u/0/#search/label%3A%F0%9F%92%B8-budget+label%3A%F0%9F%91%B7-WORK-Services-%F0%9F%8E%93-Services-PHDICT)
- [🗂 RESOURCES](https://mail.google.com/mail/u/0/#search/label%3A%F0%9F%97%82%EF%B8%8F-resource+label%3A%F0%9F%91%B7-WORK-Services-%F0%9F%8E%93-Services-PHDICT)
- **TASKS**
collapsed:: true
- @@html: <iframe src="https://app.todoist.com/app/project/services-phdict-2196985010" height="600px"></iframe>@@
- **NOMI**
collapsed:: true
- ---
- Autili Marco
background-color:: red
- Stilo Giovanni
background-color:: gray
- Di Mascio Tania
background-color:: green
- ---
- Di Marco Antinisca
background-color:: yellow
- D'Emidio Mattia
background-color:: green
- D'Innocenzo Alessandro
background-color:: yellow
- ---
- ## **Gestione offerta formativa**
- Spunti dalla chiamata fatta [[28-05-2025]] con [[people/AntonioSulli]]
- [[Mutuazione parziale corsi magistrale e o triennale]]
- DOING [[Gestione studenti del primo anno che hanno già seguito corsi non nell'offerta formativa]]
:LOGBOOK:
CLOCK: [2025-05-27 Tue 15:42:48]
CLOCK: [2025-05-27 Tue 15:42:50]
:END:
- DOING Gestire [[Proposta di corso avanzato su machine learning]]
:LOGBOOK:
CLOCK: [2025-05-26 Mon 10:46:42]
:END:
-
- ## **TODOs**
- DOING [[Accreditamento Dottorato di Ricerca in Ingegneria e scienze dell'informazione - XLI ciclo]]
:LOGBOOK:
CLOCK: [2025-05-26 Mon 10:46:29]
:END:
- DOING Finalizzare documento con linee guida per gestire richieste di afferenza al Collegio di Dottorato
:LOGBOOK:
CLOCK: [2025-05-26 Mon 09:58:33]
:END:
- DOING Slides di presentazione dottorato
:LOGBOOK:
CLOCK: [2025-05-24 Sat 20:47:54]
:END:
- [ubertini_v2_2025_phd_welcome_day.pdf](https://www.unipg.it/files/pagine/1998/ubertini_v2_2025_phd_welcome_day.pdf)
- DOING Contrubuti di Stefania e Giovanni
id:: 683620b6-4510-470b-90ef-d8ec1122471c
:LOGBOOK:
CLOCK: [2025-05-28 Wed 12:44:12]--[2025-05-28 Wed 12:44:13] => 00:00:01
:END:
- DONE Giudizio di Asad
id:: 683620b6-ca0a-4855-846c-952d9add8ef5
:LOGBOOK:
CLOCK: [2025-05-28 Wed 12:44:18]--[2025-05-28 Wed 12:44:19] => 00:00:01
:END:
- Nominativi revisori esterni
- TODO Guardare corsi di altri Atenei
- DONE Invio integrazione OdG collegio di mercoledì
- Ricezione tesi di Asad
- DONE Un po di conti per intavolare il discorso concorrenza con il GSSI
id:: 683620b6-dd45-402c-80d5-0eb8facf914d
- TODO Preparare un Template per giudizio finale
- TODO Questione compensi per corsi erogati da esterni
:LOGBOOK:
CLOCK: [2025-05-26 Mon 22:30:13]--[2025-05-28 Wed 13:25:48] => 38:55:35
:END:
- DONE Collegio meta giugno per commissione 6 dottorandi in uscita (1 e' rejected - Reheman)
:LOGBOOK:
CLOCK: [2024-05-27 Mon 16:06:31]
:END:
- DONE Due o tre commissioni?
:LOGBOOK:
CLOCK: [2024-08-01 Thu 15:57:08]--[2024-08-01 Thu 15:57:09] => 00:00:01
:END:
- DONE Sollecitare i revisore di Antinisca entro questo fine settimana.
:LOGBOOK:
CLOCK: [2024-05-27 Mon 16:06:21]--[2024-06-10 Mon 21:58:46] => 341:52:25
:END:
- DONE Sentire l'ufficio
:LOGBOOK:
CLOCK: [2024-05-27 Mon 16:06:25]--[2024-06-10 Mon 21:58:50] => 341:52:25
:END:
- DONE Rivedere tutto il processo di conseguimento del titolo
:LOGBOOK:
CLOCK: [2024-05-27 Mon 16:06:27]
CLOCK: [2024-06-10 Mon 21:59:26]--[2024-10-16 Wed 12:13:09] => 3062:13:43
:END:
- DONE Gestire prossimi concorsi di ammissione XL ciclo
:LOGBOOK:
CLOCK: [2024-06-10 Mon 21:59:31]--[2024-10-16 Wed 12:13:15] => 3062:13:44
:END:
- DONE Capire bene assegnazione CFU
id:: 6659d0ed-b485-4423-9c75-a8f5d715b31f
- Questo e' un anti-pattern -> ![ASAD-Report - Year II _CY (MA).pdf](../assets/ASAD-Report_-_Year_II_CY_(MA)_1712172077031_0.pdf)
- ## FAQs
collapsed:: true
- [[Frammenti di verbale riusabili]]
@@ -137,6 +191,7 @@ page-type:: [[SERVICES]]
- Grazie di nuovo e buona giornata,
- Vittorio e Davide
- **INVIO MATERIALE AI MEMBRI COMMISSIONE FINALE (dopo decreto nomina in inglese)**
collapsed:: true
- Dear all,
- As the coordinator of the PhD program in ICT at the University of L'Aquila, I would like to extend my gratitude for accepting the role of evaluation committee members for the upcoming thesis defenses of two of our students.
- For each student, you can find attached
@@ -174,6 +229,14 @@ page-type:: [[SERVICES]]
- il prof. Muccini (qui in cc), supervisor del dottorando Rafiullah Omar che beneficia di una borsa PON 2021, ha fatto presente la necessità di modificare il partner industriale a causa di rilevanti motivazioni culturali. In linea con quanto avvenuto in una occasione passata, abbiamo predisposto il testo della lettera allegata per farne richiesta al Ministero. Vi chiediamo cortesemente un feedback in merito e, se ritenete correttamente posta la questione, unindicazione su come procedere. E cioè se devo inviare io, come coordinatore, la pec al ministero mediante il nostro dipartimento.
- Grazie e a presto,
- Vittorio Cortellessa
- **Email a studenti ultimo anno in preparazione del collegio dove presentare la tesi**
- Dear students,
- I hope your thesis writing is progressing well.
- As per the timeline provided by our offices, the Collegio is expected to meet during the week of December 16th (the exact date will be confirmed later). To ensure everything proceeds smoothly, please aim to complete a full draft of your thesis by December 15th and send it to me. I will then share it with the Collegio.
- During the Collegio meeting, you will present your work in a 30-minute session. If the presentation is positively received, the thesis will proceed to the review phase after the Christmas break.
- To facilitate this process, I will need the final version of your thesis by January 10th, which I will then forward to the reviewers.
- All the best
- Davide
- ### **PUBLIC**
- [FAQs (notion.so)](https://www.notion.so/phd-ict-univaq/FAQs-ef2849e8affc4c21ab1999e32b5eb009)
- ### **PRIVATE**
@@ -196,80 +259,28 @@ page-type:: [[SERVICES]]
- Vittorio
- https://www.dropbox.com/scl/fi/50tbr6pkx7jloofsr3b8p/Autorizzazione-D-Aloisio.pdf?rlkey=w12y8fa6lkuer5y07xfdboc14&dl=0
- ### *COSTO BORSA DI DOTTORATO*
collapsed:: true
- ![Immagine WhatsApp 2025-03-07 ore 20.40.26_e61fad42.jpg](../assets/Immagine_WhatsApp_2025-03-07_ore_20.40.26_e61fad42_1741376476900_0.jpg)
- Circa 95'000 Euro incluso 10% per fondi di ricerca e 50% di maggiorazione per 6 mesi all'estero. Senza periodo all'estero siamo sui 65'000
- Vedi Art 12 del [Regolamento](https://www.univaq.it/include/utilities/blob.php?table=regolamento&id=64&item=file)
-
- ## TODOs
collapsed:: true
- DONE Collegio meta giugno per commissione 6 dottorandi in uscita (1 e' rejected - Reheman)
- DONE Due o tre commissioni?
:LOGBOOK:
CLOCK: [2024-08-01 Thu 15:57:08]--[2024-08-01 Thu 15:57:09] => 00:00:01
:END:
- DONE Sollecitare i revisore di Antinisca entro questo fine settimana.
:LOGBOOK:
CLOCK: [2024-05-27 Mon 16:06:21]--[2024-06-10 Mon 21:58:46] => 341:52:25
:END:
- TODO Preparare un Template per giudizio finale
- DONE Sentire l'ufficio
:LOGBOOK:
CLOCK: [2024-05-27 Mon 16:06:25]--[2024-06-10 Mon 21:58:50] => 341:52:25
:END:
- DONE Rivedere tutto il processo di conseguimento del titolo
:LOGBOOK:
CLOCK: [2024-05-27 Mon 16:06:27]
CLOCK: [2024-06-10 Mon 21:59:26]--[2024-10-16 Wed 12:13:09] => 3062:13:43
:END:
- DONE Gestire prossimi concorsi di ammissione XL ciclo
:LOGBOOK:
CLOCK: [2024-06-10 Mon 21:59:31]--[2024-10-16 Wed 12:13:15] => 3062:13:44
:END:
- DOING Fare stato "pratiche" in corso
:LOGBOOK:
CLOCK: [2024-05-27 Mon 16:06:31]
:END:
- TODO Rivedere offerta formativa
- TODO Questione compensi per corsi erogati da esterni
- TODO Un po di conti per intavolare il discorso concorrenza con il GSSI
- TODO Capire bene assegnazione CFU
- Questo e' un anti-pattern -> ![ASAD-Report - Year II _CY (MA).pdf](../assets/ASAD-Report_-_Year_II_CY_(MA)_1712172077031_0.pdf)
- ## Votazioni
collapsed:: true
- ![image.png](../assets/image_1715940133422_0.png)
- ![image.png](../assets/image_1715940150460_0.png)
- ## Riesame annuale
collapsed:: true
- ![RA.DIP 2024_DISIM_Finale.pdf](../assets/RA.DIP_2024_DISIM_Finale_1729845716969_0.pdf)
- ### Obiettivi
collapsed:: true
- ((671b5a4c-9bfe-4153-b1cb-7e4c82ba7606))
- ((671b5a5c-410f-47c4-9762-2a6967833bad))
- ((671b5a69-e429-48b1-8378-b6dd3f14e36c))
- ((671b5a78-a28a-405f-a22b-4663ca71ec86))
- ((671b5a87-d468-4f95-8880-83211e865193))
- ((671b5a92-16f8-4cbd-af72-0b4588f610eb))
- ## SOME FEW WORDS
collapsed:: true
- "Thank you all for being here today and for your insightful questions and contributions. Congratulations to [PhD candidate's name] for a thorough and well-executed presentation. The work you have presented today showcases the depth of your research and your dedication to advancing the field of ICT. I want to commend you on the significant effort and perseverance that brought you to this point.
- On behalf of the committee and the programme, I wish you continued success in your future endeavors. Let this achievement be the beginning of even greater contributions to the academic and professional community. Once again, congratulations."
- ## REFERENCES
- [Bando XL ciclo - Scuola di Dottorato - Università degli Studi di Torino](https://www.dottorato.unito.it/do/home.pl/View?doc=Bando_XL_ciclo.html)
- ## 2025/2026 #XLI ciclo
collapsed:: true
- [[Accreditamento Dottorato di Ricerca in Ingegneria e scienze dell'informazione - XLI ciclo]]
- ![ACN_Dottorati_XLI_ciclo_BANDO_24-02-2025.pdf](../assets/ACN_Dottorati_XLI_ciclo_BANDO_24-02-2025_1742225261475_0.pdf)
- ((67d84475-4b24-4d76-bcf1-d789c5506c95))
- Ci deve essere un coordinamento a livello di Ateneo?
- ((67d844b6-4598-451a-9344-33aced047c68))
collapsed:: true
- Questo non dipende da noi... ancora non viene inoltrata la scheda informativa !!!
- ((67d844f6-acec-4dca-8f3d-166c93371afe))
collapsed:: true
- Questo e' fondamentale!!!
- ((67d8451e-abb9-4a76-9982-be8e0d8b7507))
- Questo anche e' da vedere!!!
- ## 2024/2025 #DM629 #DM630 #[[XL Ciclo]]
collapsed:: true
- ### #DM629 #DM630
collapsed:: true
- Passaggi importanti:
- 1. il DM 629 (ex 118 - dottorati PNRR) assegna 779 borse  con finanziamento da 70mila euro (e 15+15 borse ai due dottorati nazionali accreditati nel 37° ciclo);
- 2. il DM 630 (ex 117 - dottorati con le Imprese) assegna 2868 borse con finanziamento da 60mila euro;
@@ -324,11 +335,8 @@ page-type:: [[SERVICES]]
- ## 2022/2023 #DM351 #DM352 #[[XXXVIII Ciclo]]
collapsed:: true
- Decreti Ministeriali n. 351, n. 352 del 9 aprile 2022 e n. 925 del 29 luglio 2022
-
- ## REGOLAMENTI
collapsed:: true
- [[@REGOLAMENTO_Dottorati_Ricerca_Modifica_DR_rep_597_01_06_2023.pdf]] [[STAR]]
collapsed:: true
- ![REGOLAMENTO_Dottorati_Ricerca_Modifica_DR__rep_597_01_06_2023.pdf](../assets/REGOLAMENTO_Dottorati_Ricerca_Modifica_DR_rep_597_01_06_2023_1705409017565_0.pdf)
- ((65a67a30-5794-4a02-83cc-94275264adb3))
- ((65a67a51-c86c-41fd-a93d-44df652a7c01))
@@ -352,133 +360,167 @@ page-type:: [[SERVICES]]
- ![RA.DIP 2024_DISIM_Finale (2).pdf](../assets/RA.DIP_2024_DISIM_Finale_(2)_1729074775828_0.pdf)
collapsed:: true
- ((670f9686-5620-4def-a11a-7f8dc1f45d79))
- ## NEWS AND READING
- [[@LINEE GUIDA PER LassicurAzione della qualita dei corsi di dottorato]]
- ## REFERENCES
collapsed:: true
- {{query (and [[Omnivore]] [[SERVICES/DOTTORATO]])}}
query-table:: true
query-properties:: [:full-title :site :date-published :date-archived]
- ## MEMBRI DEL COLLEGIO XXXIX CICLO
collapsed:: true
- CECATI Carlo PO Componente ING
logseq.order-list-type:: number
- PIERANTONIO Alfonso PO Componente INF/01
background-color:: green
logseq.order-list-type:: number
- DI BENEDETTO Maria Domenica PO Componente ING INF/04
logseq.order-list-type:: number
- PROIETTI Guido PO Componente INF/01
background-color:: green
logseq.order-list-type:: number
- BUCCELLA Concettina PO Componente INGIND /32
logseq.order-list-type:: number
- CORTELLESSA Vittorio PO Coordinatore INF/01
background-color:: green
logseq.order-list-type:: number
- DI STEFANO Gabriele PO Componente ING INF/05
background-color:: green
logseq.order-list-type:: number
- MUCCINI Henry PO Componente INF/01
background-color:: green
logseq.order-list-type:: number
- PEPE Pierdomenico PO Componente ING - INF/ 04
logseq.order-list-type:: number
- TIVOLI Massimo PO Componente INF/01
background-color:: green
logseq.order-list-type:: number
- FRIGIONI Daniele PO Componente ING -INF/ 05
background-color:: green
logseq.order-list-type:: number
- SANTUCCI Fortunato PO Componente ING - INF/03
background-color:: green
logseq.order-list-type:: number
- ARBIB Claudio PO Componente MAT/09
background-color:: green
logseq.order-list-type:: number
- GRAZIOSI Fabio PO Componente ING - INF/ 03
background-color:: green
logseq.order-list-type:: number
- COSTANTINI Stefania PO Componente INF/01
background-color:: green
logseq.order-list-type:: number
- AUTILI Marco PA Componente INF/01
background-color:: green
logseq.order-list-type:: number
- DI RUSCIO Davide PA Componente INF/01
logseq.order-list-type:: number
background-color:: green
- DI GENNARO Stefano PA Componente ING - INF/04
logseq.order-list-type:: number
- ANTONELLI Cristian PA Componente ING - INF/02
logseq.order-list-type:: number
background-color:: green
- MANES Costanzo PA Componente ING - 09
logseq.order-list-type:: number
background-color:: green
- POLA Giordano PA Componente ING - INF/04
logseq.order-list-type:: number
- DI MARCO Antinisca PA Componente INF/01
background-color:: green
logseq.order-list-type:: number
- CICERONE Serafino PA Componente ING - INF/05
background-color:: green
logseq.order-list-type:: number
- STILO Giovanni PA Componente INF/01
background-color:: green
logseq.order-list-type:: number
- BILÒ Davide PA Componente INF/01
background-color:: green
logseq.order-list-type:: number
- DINNOCENZO Alessandro PA Componente ING -INF/04
background-color:: green
logseq.order-list-type:: number
- DE MARCELLIS Andrea PA Componente ING - INF/01
logseq.order-list-type:: number
- DI MASCIO Tania PA Componente ING - INF/05
background-color:: green
logseq.order-list-type:: number
- CASSIOLI Dajana PA Componente ING - INF/03
background-color:: green
logseq.order-list-type:: number
- LEUCCI Stefano RTD/B Componente INF/01
background-color:: green
logseq.order-list-type:: number
- DI MARCO Piergiuseppe RTD/B Componente ING - INF/ 03
background-color:: green
logseq.order-list-type:: number
- DEMIDIO Mattia RTD/B Componente ING INF/05
background-color:: green
logseq.order-list-type:: number
- MAROTTA Andrea RTD/A Componente ING INF/03
background-color:: green
logseq.order-list-type:: number
- PINAR Mustafa PO MAT/09
logseq.order-list-type:: number
- FISCHIONE Carlo PO ING INF/03
logseq.order-list-type:: number
- **NUMERI**
- TOTALI ESCLUSO ME = 35
- 2 (FISCHIONE e PINAR probabilmente non votanti)
- 26 VERDI
- 7 votanti PM
- MAGGIORANZA: 18
- ## INFO GENERALI
collapsed:: true
- RENDICONTAZIONE PON (CAPUANO E DI FONSO SONO IN USCITA),  DM351/352 E POI SARANNO 117 E 118
- DOTTORANDI PRODURRE RENDICONTAZIONE BIMESTRALI/TRIMESTRALI
- CARTA INTESTATA GIUSTA
- GESTIONE ORDINARIA (COMMISSIONI ETC) - VITTORIO NON HA PROBLEMA A GESTIRLA
- RIVEDERE SITUAZIONE COMMISSIONE XXXIX
- Ci sono 2 piattaforme
- PON (da login miur) - dottorati.mur.gov.it
- 1061, 1062
- dottorati.mur.gov.it - (PadelTour.23)
- ssori.cineca.it - password: CortDir-1 - aggiornata con Viccristian$1
- PNRR (Siri del MIUR)
- LOGIN MIUR - Topkapi.65
- 351 e' dopo 1061 (pon)
- ![image.png](../assets/image_1710770705369_0.png)
tags:: [[PASSWORD]]
- ## [[RENDICONTAZIONI-DOTTORATO-PNRR-38-ciclo]]
- ## CICLI
collapsed:: true
- [[XXXIX Ciclo]]
- [Bando XL ciclo - Scuola di Dottorato - Università degli Studi di Torino](https://www.dottorato.unito.it/do/home.pl/View?doc=Bando_XL_ciclo.html)
- ## Riesame annuale
collapsed:: true
- ![RA.DIP 2024_DISIM_Finale.pdf](../assets/RA.DIP_2024_DISIM_Finale_1729845716969_0.pdf)
- ### Obiettivi
- ((671b5a4c-9bfe-4153-b1cb-7e4c82ba7606))
- ((671b5a5c-410f-47c4-9762-2a6967833bad))
- ((671b5a69-e429-48b1-8378-b6dd3f14e36c))
- ((671b5a78-a28a-405f-a22b-4663ca71ec86))
- ((671b5a87-d468-4f95-8880-83211e865193))
- ((671b5a92-16f8-4cbd-af72-0b4588f610eb))
- **NOMI**
collapsed:: true
- ---
- Autili Marco
background-color:: red
- Stilo Giovanni
background-color:: gray
- Di Mascio Tania
background-color:: green
- ---
- Di Marco Antinisca
background-color:: yellow
- D'Emidio Mattia
background-color:: green
- D'Innocenzo Alessandro
background-color:: yellow
- ---
- ## INFO GENERALI
collapsed:: true
- RENDICONTAZIONE PON (CAPUANO E DI FONSO SONO IN USCITA),  DM351/352 E POI SARANNO 117 E 118
- DOTTORANDI PRODURRE RENDICONTAZIONE BIMESTRALI/TRIMESTRALI
- CARTA INTESTATA GIUSTA
- GESTIONE ORDINARIA (COMMISSIONI ETC) - VITTORIO NON HA PROBLEMA A GESTIRLA
- RIVEDERE SITUAZIONE COMMISSIONE XXXIX
- Ci sono 2 piattaforme
- PON (da login miur) - dottorati.mur.gov.it
- 1061, 1062
- dottorati.mur.gov.it - (PadelTour.23)
- ssori.cineca.it - password: CortDir-1 - aggiornata con Viccristian$1
- PNRR (Siri del MIUR)
- LOGIN MIUR - Topkapi.65
- 351 e' dopo 1061 (pon)
- ![image.png](../assets/image_1710770705369_0.png)
tags:: [[PASSWORD]]
- ## Votazioni
collapsed:: true
- ![image.png](../assets/image_1715940133422_0.png)
- ![image.png](../assets/image_1715940150460_0.png)
- ## [[RENDICONTAZIONI-DOTTORATO-PNRR-38-ciclo]]
- ## CICLI
- [[XXXIX Ciclo]]
collapsed:: true
- MEMBRI DEL COLLEGIO XXXIX CICLO
collapsed:: true
- CECATI Carlo PO Componente ING
logseq.order-list-type:: number
- PIERANTONIO Alfonso PO Componente INF/01
background-color:: green
logseq.order-list-type:: number
- DI BENEDETTO Maria Domenica PO Componente ING INF/04
logseq.order-list-type:: number
- PROIETTI Guido PO Componente INF/01
background-color:: green
logseq.order-list-type:: number
- BUCCELLA Concettina PO Componente INGIND /32
logseq.order-list-type:: number
- CORTELLESSA Vittorio PO Coordinatore INF/01
background-color:: green
logseq.order-list-type:: number
- DI STEFANO Gabriele PO Componente ING INF/05
background-color:: green
logseq.order-list-type:: number
- MUCCINI Henry PO Componente INF/01
background-color:: green
logseq.order-list-type:: number
- PEPE Pierdomenico PO Componente ING - INF/ 04
logseq.order-list-type:: number
- TIVOLI Massimo PO Componente INF/01
background-color:: green
logseq.order-list-type:: number
- FRIGIONI Daniele PO Componente ING -INF/ 05
background-color:: green
logseq.order-list-type:: number
- SANTUCCI Fortunato PO Componente ING - INF/03
background-color:: green
logseq.order-list-type:: number
- ARBIB Claudio PO Componente MAT/09
background-color:: green
logseq.order-list-type:: number
- GRAZIOSI Fabio PO Componente ING - INF/ 03
background-color:: green
logseq.order-list-type:: number
- COSTANTINI Stefania PO Componente INF/01
background-color:: green
logseq.order-list-type:: number
- AUTILI Marco PA Componente INF/01
background-color:: green
logseq.order-list-type:: number
- DI RUSCIO Davide PA Componente INF/01
logseq.order-list-type:: number
background-color:: green
- DI GENNARO Stefano PA Componente ING - INF/04
logseq.order-list-type:: number
- ANTONELLI Cristian PA Componente ING - INF/02
logseq.order-list-type:: number
background-color:: green
- MANES Costanzo PA Componente ING - 09
logseq.order-list-type:: number
background-color:: green
- POLA Giordano PA Componente ING - INF/04
logseq.order-list-type:: number
- DI MARCO Antinisca PA Componente INF/01
background-color:: green
logseq.order-list-type:: number
- CICERONE Serafino PA Componente ING - INF/05
background-color:: green
logseq.order-list-type:: number
- STILO Giovanni PA Componente INF/01
background-color:: green
logseq.order-list-type:: number
- BILÒ Davide PA Componente INF/01
background-color:: green
logseq.order-list-type:: number
- DINNOCENZO Alessandro PA Componente ING -INF/04
background-color:: green
logseq.order-list-type:: number
- DE MARCELLIS Andrea PA Componente ING - INF/01
logseq.order-list-type:: number
- DI MASCIO Tania PA Componente ING - INF/05
background-color:: green
logseq.order-list-type:: number
- CASSIOLI Dajana PA Componente ING - INF/03
background-color:: green
logseq.order-list-type:: number
- LEUCCI Stefano RTD/B Componente INF/01
background-color:: green
logseq.order-list-type:: number
- DI MARCO Piergiuseppe RTD/B Componente ING - INF/ 03
background-color:: green
logseq.order-list-type:: number
- DEMIDIO Mattia RTD/B Componente ING INF/05
background-color:: green
logseq.order-list-type:: number
- MAROTTA Andrea RTD/A Componente ING INF/03
background-color:: green
logseq.order-list-type:: number
- PINAR Mustafa PO MAT/09
logseq.order-list-type:: number
- FISCHIONE Carlo PO ING INF/03
logseq.order-list-type:: number
- **NUMERI**
- TOTALI ESCLUSO ME = 35
- 2 (FISCHIONE e PINAR probabilmente non votanti)
- 26 VERDI
- 7 votanti PM
- MAGGIORANZA: 18
- ## SOME FEW WORDS
collapsed:: true
- "Thank you all for being here today and for your insightful questions and contributions. Congratulations to [PhD candidate's name] for a thorough and well-executed presentation. The work you have presented today showcases the depth of your research and your dedication to advancing the field of ICT. I want to commend you on the significant effort and perseverance that brought you to this point.
- On behalf of the committee and the programme, I wish you continued success in your future endeavors. Let this achievement be the beginning of even greater contributions to the academic and professional community. Once again, congratulations."
@@ -0,0 +1,60 @@
icon:: 🔴
progress:: {{renderer :todomaster}}
- ## TASKS
- {{query (and [[TODOIST-LOGSEQED]] (task TODO DOING) (not [[GOALS-TODOIST]]))}}
query-table:: true
query-properties:: [:block :todoist-id]
query-sort-by:: block
query-sort-desc:: false
- -----
- TODO [#B] [[Gestione studenti del primo anno che hanno già seguito corsi non nell'offerta formativa]]
todoist-desc:: logseq://graph/Logseq?page=Gestione%20studenti%20del%20primo%20anno%20che%20hanno%20gi%C3%A0%20seguito%20corsi%20non%20nell'offerta%20formativa
todoist-id:: [9201712096](https://app.todoist.com/app/task/9201712096)
- DONE [#A] [[Mutuazione parziale corsi magistrale e o triennale]]
todoist-desc:: logseq://graph/Logseq?page=Chiamare%20Antonio%20per%20mutuazione%20parziale%20corsi%20magistrale%20e%2Fo%20triennale
todoist-id:: [9201764330](https://app.todoist.com/app/task/9201764330)
collapsed:: true
SCHEDULED✔️ <2025-05-28 Wed>
- TODO [#A] [[Definizione processo gestione moduli didattica studenti]]
todoist-desc:: logseq://graph/Logseq?page=Definizione%20processo%20gestione%20moduli%20didattica%20studenti
todoist-id:: [9204275059](https://app.todoist.com/app/task/9204275059)
SCHEDULED: <2025-06-04 Wed>
- TODO [#B] [[Progettazione Offerta Formativa]]
todoist-desc:: logseq://graph/Logseq?page=Progettazione%20Offerta%20Formativa
todoist-id:: [9205819498](https://app.todoist.com/app/task/9205819498)
SCHEDULED: <2025-06-07 Sat>
- TODO [#A] [[Missione STAF 2025]]
todoist-id:: [9135141990](https://app.todoist.com/app/task/9135141990)
SCHEDULED: <2025-06-16 Mon>
- TODO [#C] [[Proposta di corso avanzato su machine learning]]
todoist-desc:: https://outlook.office365.com/owa/?ItemID=AAkALgAAAAAAHYQDEapmEc2byACqAC%2FEWg0AjoVpQvBez0Ss5ZY2WGWEJgAH1wAvQQAA&exvsurl=1&viewmodel=ReadMessageItem
todoist-id:: [9057940282](https://app.todoist.com/app/task/9057940282)
SCHEDULED: <2025-06-07 Sat>
- TODO [#B] [[PAPERS/SOSYM-EXPERT-VOICE-2024-ML-EVOLUTION]]
todoist-desc:: [Sosym Expert voice: Co-evo in the era of Low code - Online LaTeX Editor Overleaf](https://www.overleaf.com/project/680d243a75547ff8d273e791)
todoist-id:: [7584640828](https://app.todoist.com/app/task/7584640828)
- TODO [#C] [[PAPERS/AUSE-Metagente]]
todoist-desc:: [MDEGroup/AUSE-Metagente: A paper to be submitted to a special issue of the Automated Software Engineering journal](https://github.com/MDEGroup/AUSE-Metagente)
todoist-id:: [9213097648](https://app.todoist.com/app/task/9213097648)
- TODO [#B] [[Call per posizioni MOSAICO]]
todoist-desc:: logseq://graph/Logseq?page=Call%20per%20posizioni%20MOSAICO
todoist-id:: [8663268357](https://app.todoist.com/app/task/8663268357)
SCHEDULED: <2025-06-05 Thu>
- TODO [#C] [[Missione FSE 2025]]
todoist-id:: [9074935545](https://app.todoist.com/app/task/9074935545)
todoist-desc:: [FSE 2025](https://conf.researchr.org/home/fse-2025)
- TODO [#A] [[PAPERS/MOSAICO-Technical-Report]]
todoist-desc:: logseq://graph/Logseq?page=PAPERS%2FMOSAICO-Technical-Report
todoist-id:: [9187744429](https://app.todoist.com/app/task/9187744429)
SCHEDULED: <2025-06-04 Wed>
- TODO [#A] [[Intervento PINKAMP]]
todoist-id:: [9179967916](https://app.todoist.com/app/task/9179967916)
SCHEDULED: <2025-06-06 Fri>
- TODO [#B] [[Update fondi progetti]]
todoist-id:: [9143259271](https://app.todoist.com/app/task/9143259271)
SCHEDULED: <2025-06-04 Wed>
- TODO [[[mosaico-all] MOSAICO meetings in Rome July 2025]]
todoist-id:: [9224183665](https://app.todoist.com/app/task/9224183665)
todoist-desc:: From: zhanna.zhussupova@imt-atlantique.fr
SCHEDULED: <2025-06-06 Fri>
@@ -1,16 +1,12 @@
template:: JOURNAL-TEMPLATE
template:: JOURNAL-TEMPLATE-OLD
- #.tabular
- ### 🗒️Notes
-
- ![BOOX Notes](../assets/../../onyx/TabUltraCPro/Notepad/JOURNALING.pdf)
- ### 📜Reviews
- {{query (and [[REVIEWS]] (or (property :date-end <%today%>) (property :date-start <%today%>) (property :date-submitted <%today%>)))}}
query-table:: true
query-properties:: [:file :year :venue :deadline]
- ### ⤴️Omnivore readings
- {{query (and (property :source [[Omnivore]]) (or (property :deadline <%today%>) (property :date-saved <%today%>) (property :date-archived <%today%>)))}}
query-table:: true
query-properties:: [:labels :state :full-title]
-
- type:: [[JournalPaper]], [[conferencepaper]], [[WorkshopPaper]], [[Bookchapter]]
template:: PAPERS
@@ -20,7 +16,7 @@ template:: JOURNAL-TEMPLATE
todoist::
year::
date-start::
status:: [[DOING]], [[DONE]], [[SUBMITTED]], [[REJECTED]] [[UNDER-REVISION]]
status:: [[DOING]], [[DONE]], [[SUBMITTED]], [[REJECTED]] [[UNDER-REVISION]]
venue::
priority:: [[P1]] [[P2]] [[P3]] [[P4]]
parent::
@@ -76,8 +72,23 @@ template:: JOURNAL-TEMPLATE
file::
parent::
todoist::
collapsed:: true
- ### [[Highlights]]
- ### [[Comments]]
- #.tabular
- - ### Paper summary
-
- - ### Strengths
- +
- - ### Weaknesses
- -
- - ### Detailed comments for authors
- Novelty:
- Rigor:
- Relevance:
- Verifiability & transparency:
- Presentation:
- Detailed comments:
- ### [[REVIEWS/Notes]]
- ### YELLOW CONCERNS
background-color:: yellow
@@ -127,5 +138,13 @@ template:: JOURNAL-TEMPLATE
template-including-parent:: false
- ### TASKS
- {{query (and <%current page%> (task TODO DOING) (not [[GOALS-TODOIST]]))}}
- template:: BOOX-TODAY-NOTES
- ![BOOX Notes - <%today%>](../assets/../../onyx/TabUltraCPro/Notepad/<%today%>.pdf)
- template:: BOOX-NOTES
- ![BOOX Notes](../assets/../../onyx/TabUltraCPro/Notepad/JOURNALING.pdf)
- template:: TODOIST-task
tags:: #todoist-task
date:: <%today%> - <%time%>
progress:: {{renderer :todomaster}}
- template:: JOURNAL-TEMPLATE
icon:: 📅
- ## Tasks
- ## Notes