Skip to content

Commit c2bc95c

Browse files
committed
Update contents
1 parent 041124b commit c2bc95c

10 files changed

Lines changed: 77 additions & 14 deletions

File tree

config/_default/hugo.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ removePathAccents: true
2121

2222
enableGitInfo: false
2323
summaryLength: 30
24-
paginate: 10
24+
pagination:
25+
pagerSize: 10
2526
enableEmoji: true
2627
enableRobotsTXT: true
2728
footnotereturnlinkcontents: <sup>^</sup>
@@ -33,13 +34,13 @@ permalinks:
3334
publication_types: '/publication-type/:slug/'
3435
disableAliases: true
3536
outputs:
36-
home: [HTML, RSS, JSON, WebAppManifest, headers, redirects]
37+
home: [HTML, RSS, JSON, WebAppManifest]
3738
section: [HTML, RSS]
3839
imaging:
39-
resampleFilter: lanczos
40+
resampleFilter: Lanczos
4041
quality: 75
41-
anchor: smart
42-
timeout: 600000
42+
anchor: Smart
43+
timeout: "600s"
4344
taxonomies:
4445
tag: tags
4546
category: categories
@@ -58,5 +59,7 @@ related:
5859
weight: 70
5960
security:
6061
_merge: deep
62+
63+
6164
sitemap:
6265
_merge: deep

config/_default/module.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
############################
66

77
imports:
8-
- path: github.com/fm4se/website-theme/modules/blox-bootstrap/v5
8+
- path: github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5

config/_default/params.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ marketing:
1919
local_business_type: 'academic'
2020
org_name: 'Bauhaus-Universität Weimar - Software Engineering Chair'
2121
description: 'The Software Engineering Chair at Bauhaus-Universität Weimar conducts research in the areas of formal methods, software engineering, and software architecture.'
22+
analytics:
23+
google_analytics: ''
24+
baidu_tongji: ''
25+
google_tag_manager: ''
26+
microsoft_clarity: ''
27+
verification:
28+
google: ''
29+
baidu: ''
2230

2331
# Site header
2432

4.45 MB
Binary file not shown.

content/lecture/github-migration/index.md

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,49 @@
11
---
22
title: Introducing GitHub Classroom into a Formal Methods Module
3-
date: 2024-09-09
3+
4+
event: FMTea 2024, affiliated with FM 2024, the 26th International Symposium on Formal Methods
5+
event_url: https://fmtea.github.io/
6+
7+
location: Milan, Italy
8+
9+
10+
summary: ''
11+
abstract: 'We have developed an MSc-level module on Formal Methods for Software Engineering with exercises on applying SAT solvers, SMT solvers, Alloy, and nuXmv. In the first iteration of the module, assign- ments were submitted as documents and archive files. Here, we report on our experience of moving the exercises to GitHub Classroom and au- tomating the feedback process through test cases. The main challenges we encountered were related to supporting free-response tasks and de- signing test cases that allow for multiple solutions, provide incremental feedback, and do not encode a solution. We present our setup of exercise repositories, test cases, and feedback report generation. We detail our approach in addressing the challenges of migrating from worksheets to GitHub Classroom and report on survey-based student feedback.'
12+
13+
date: '2024-09-09T00:00:00Z'
14+
all_day: true
15+
16+
# Schedule page publish date (NOT talk date).
17+
publishDate: '2024-09-10T00:00:00Z'
18+
19+
authors: [Soaibuzzaman, Jan Oliver Ringert]
20+
tags: []
21+
22+
# Is this a featured talk? (true/false)
23+
featured: false
24+
25+
image:
26+
caption: ''
27+
focal_point: Right
28+
29+
url_code: https://github.com/fm4se/exercises
30+
url_pdf: ./lecture/github-migration/FMTea24.pdf
31+
url_slides: ''
32+
url_video: ''
33+
34+
# Markdown Slides (optional).
35+
# Associate this talk with Markdown slides.
36+
# Simply enter your slide deck's filename without extension.
37+
# E.g. `slides = "example-slides"` references `content/slides/example-slides.md`.
38+
# Otherwise, set `slides = ""`.
39+
slides:
40+
41+
# Projects (optional).
42+
# Associate this post with one or more of your projects.
43+
# Simply enter your project's folder or file name without extension.
44+
# E.g. `projects = ["internal-project"]` references `content/project/deep-learning/index.md`.
45+
# Otherwise, set `projects = []`.
46+
projects: [FM Playground]
447
---
548

649
We migrated traditional worksheets from our Formal Methods for Software Engineering module to GitHub Classroom. Our goals were:
591 KB
Binary file not shown.

content/news/FMPals-ABZ-2025/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ image:
2727
focal_point: Right
2828

2929
url_code: https://github.com/se-buw/alloy-metrics
30-
url_pdf: https://soaib.me/publications/resources/ABZ25.pdf
30+
url_pdf: ./news/fmpals-abz-2025/ABZ25.pdf
3131
url_slides: ./news/fmpals-abz-2025/ABZ25-Slides.pdf
3232
url_video: ''
3333

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/wowchemy/starter-hugo-research-group
22

3-
go 1.15
3+
go 1.19
44

5-
require github.com/fm4se/website-theme/modules/blox-bootstrap/v5 v5.0.0-20241007220515-a086227b0621 // indirect
5+
require github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 v5.9.7 // indirect

go.sum

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1+
github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 v5.9.7 h1:QPek2BL723n+uM4DjyV97qNIoPsmt/vnKAQyaGJbgvQ=
2+
github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 v5.9.7/go.mod h1:xZiTEEurbEwj/NhZohozvlyLCGVCT2wARHDAJeqKG/c=
13
github.com/HugoBlox/hugo-blox-builder/modules/blox-core v0.3.1/go.mod h1:So8+V2U+TNxlXmcpZfdDX0muLh3PdJ7z92h30sv3bZg=
24
github.com/HugoBlox/hugo-blox-builder/modules/blox-seo v0.2.2/go.mod h1:NsESu6cEms1DgH84icCyylElg2Zu8A0f7Fma5JR0LZE=
3-
github.com/fm4se/website-theme/modules/blox-bootstrap/v5 v5.0.0-20240920161530-e2762041aea4 h1:2efffucAOPKDAsgn2v9OS+/gzUN8i4iQTZcXv7ia9KY=
4-
github.com/fm4se/website-theme/modules/blox-bootstrap/v5 v5.0.0-20240920161530-e2762041aea4/go.mod h1:wfZ1rU8yDdfbehSCLqHhhIsl2wgggaOITdvKOYT34ck=
5-
github.com/fm4se/website-theme/modules/blox-bootstrap/v5 v5.0.0-20241007220515-a086227b0621 h1:2F5nQY//CuzRxAMTo7BB/lSOz+868JsXaBiTe+9HMRI=
6-
github.com/fm4se/website-theme/modules/blox-bootstrap/v5 v5.0.0-20241007220515-a086227b0621/go.mod h1:wfZ1rU8yDdfbehSCLqHhhIsl2wgggaOITdvKOYT34ck=
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{{/* Override the problematic Google Analytics template */}}
2+
{{- if site.Config.Services.GoogleAnalytics.ID -}}
3+
<!-- Google Analytics -->
4+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.Config.Services.GoogleAnalytics.ID }}"></script>
5+
<script>
6+
window.dataLayer = window.dataLayer || [];
7+
function gtag(){dataLayer.push(arguments);}
8+
gtag('js', new Date());
9+
gtag('config', '{{ site.Config.Services.GoogleAnalytics.ID }}');
10+
</script>
11+
{{- end -}}

0 commit comments

Comments
 (0)