Skip to content

Commit ff5fc89

Browse files
committed
Website
0 parents  commit ff5fc89

File tree

114 files changed

+1379
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+1379
-0
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
13+
[*.{html,sass}]
14+
indent_size = 2

.github/workflows/deploy.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Zola on GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
name: Publish site
11+
runs-on: ubuntu-latest
12+
if: github.ref == 'refs/heads/master'
13+
steps:
14+
- name: Checkout master
15+
uses: actions/checkout@v3.4.0
16+
- name: Install dependencies
17+
run: npm install
18+
- name: Build and deploy
19+
uses: shalzz/zola-deploy-action@v0.17.1
20+
env:
21+
PAGES_BRANCH: gh-pages
22+
TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 180 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
1+
# Zola output
2+
public
3+
4+
# Created by https://www.toptal.com/developers/gitignore/api/macos,node
5+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,node
6+
7+
### macOS ###
8+
# General
9+
.DS_Store
10+
.AppleDouble
11+
.LSOverride
12+
13+
# Icon must end with two \r
14+
Icon
15+
16+
17+
# Thumbnails
18+
._*
19+
20+
# Files that might appear in the root of a volume
21+
.DocumentRevisions-V100
22+
.fseventsd
23+
.Spotlight-V100
24+
.TemporaryItems
25+
.Trashes
26+
.VolumeIcon.icns
27+
.com.apple.timemachine.donotpresent
28+
29+
# Directories potentially created on remote AFP share
30+
.AppleDB
31+
.AppleDesktop
32+
Network Trash Folder
33+
Temporary Items
34+
.apdisk
35+
36+
### macOS Patch ###
37+
# iCloud generated files
38+
*.icloud
39+
40+
### Node ###
41+
# Logs
42+
logs
43+
*.log
44+
npm-debug.log*
45+
yarn-debug.log*
46+
yarn-error.log*
47+
lerna-debug.log*
48+
.pnpm-debug.log*
49+
50+
# Diagnostic reports (https://nodejs.org/api/report.html)
51+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
52+
53+
# Runtime data
54+
pids
55+
*.pid
56+
*.seed
57+
*.pid.lock
58+
59+
# Directory for instrumented libs generated by jscoverage/JSCover
60+
lib-cov
61+
62+
# Coverage directory used by tools like istanbul
63+
coverage
64+
*.lcov
65+
66+
# nyc test coverage
67+
.nyc_output
68+
69+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
70+
.grunt
71+
72+
# Bower dependency directory (https://bower.io/)
73+
bower_components
74+
75+
# node-waf configuration
76+
.lock-wscript
77+
78+
# Compiled binary addons (https://nodejs.org/api/addons.html)
79+
build/Release
80+
81+
# Dependency directories
82+
node_modules/
83+
jspm_packages/
84+
85+
# Snowpack dependency directory (https://snowpack.dev/)
86+
web_modules/
87+
88+
# TypeScript cache
89+
*.tsbuildinfo
90+
91+
# Optional npm cache directory
92+
.npm
93+
94+
# Optional eslint cache
95+
.eslintcache
96+
97+
# Optional stylelint cache
98+
.stylelintcache
99+
100+
# Microbundle cache
101+
.rpt2_cache/
102+
.rts2_cache_cjs/
103+
.rts2_cache_es/
104+
.rts2_cache_umd/
105+
106+
# Optional REPL history
107+
.node_repl_history
108+
109+
# Output of 'npm pack'
110+
*.tgz
111+
112+
# Yarn Integrity file
113+
.yarn-integrity
114+
115+
# dotenv environment variable files
116+
.env
117+
.env.development.local
118+
.env.test.local
119+
.env.production.local
120+
.env.local
121+
122+
# parcel-bundler cache (https://parceljs.org/)
123+
.cache
124+
.parcel-cache
125+
126+
# Next.js build output
127+
.next
128+
out
129+
130+
# Nuxt.js build / generate output
131+
.nuxt
132+
dist
133+
134+
# Gatsby files
135+
.cache/
136+
# Comment in the public line in if your project uses Gatsby and not Next.js
137+
# https://nextjs.org/blog/next-9-1#public-directory-support
138+
# public
139+
140+
# vuepress build output
141+
.vuepress/dist
142+
143+
# vuepress v2.x temp and cache directory
144+
.temp
145+
146+
# Docusaurus cache and generated files
147+
.docusaurus
148+
149+
# Serverless directories
150+
.serverless/
151+
152+
# FuseBox cache
153+
.fusebox/
154+
155+
# DynamoDB Local files
156+
.dynamodb/
157+
158+
# TernJS port file
159+
.tern-port
160+
161+
# Stores VSCode versions used for testing VSCode extensions
162+
.vscode-test
163+
164+
# yarn v2
165+
.yarn/cache
166+
.yarn/unplugged
167+
.yarn/build-state.yml
168+
.yarn/install-state.gz
169+
.pnp.*
170+
171+
### Node Patch ###
172+
# Serverless Webpack directories
173+
.webpack/
174+
175+
# Optional stylelint cache
176+
177+
# SvelteKit build / generate output
178+
.svelte-kit
179+
180+
# End of https://www.toptal.com/developers/gitignore/api/macos,node

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"yaml.schemas": {
3+
"https://json.schemastore.org/github-workflow.json": "file:///Users/hguandl/Developer/trustlab-homepage/.github/workflows/deploy.yml"
4+
}
5+
}

bun.lockb

1.94 KB
Binary file not shown.

config.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# The URL the site will be built for
2+
base_url = "https://example.com"
3+
4+
# Whether to automatically compile all Sass files in the sass directory
5+
compile_sass = true
6+
7+
# Whether to build a search index to be used later on by a JavaScript library
8+
build_search_index = false
9+
10+
[markdown]
11+
# Whether to do syntax highlighting
12+
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
13+
highlight_code = false
14+
15+
[extra]
16+
# Put all your custom variables here

content/news/220902-ase-skipper.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
+++
2+
title = "Our paper on VUI testing and privacy compliance is accepted by ASE 2022."
3+
date = 2022-09-02
4+
5+
[extra]
6+
category = "paper"
7+
+++

content/news/220908-ndss-u2i2.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
+++
2+
title = "Our paper on Android permanent device ID protection is accepted by NDSS 2023."
3+
date = 2022-09-08
4+
5+
[extra]
6+
category = "paper"
7+
+++

content/news/221020-acsac.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
+++
2+
title = "Our paper titled Better Together: Attaining the Triad of Byzantine-robust Federated Learning via Local Update Amplification is accepted by The Annual Computer Security Applications Conference (ACSAC) 2022"
3+
date = 2022-10-20
4+
5+
[extra]
6+
category = "paper"
7+
+++

content/news/221101-sigmetric.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
+++
2+
title = "Our paper titled Characterizing Cryptocurrency-themed Malicious Browser Extensions is accepted by The ACM SIGMETRICS 2023."
3+
date = 2022-11-01
4+
5+
[extra]
6+
category = "paper"
7+
+++

0 commit comments

Comments
 (0)