Skip to content

Commit

Permalink
chore: add pre-commit configuration and update keyterm definitions wi…
Browse files Browse the repository at this point in the history
…th citations
  • Loading branch information
hsiangjenli committed Nov 19, 2024
1 parent b309397 commit e3b3755
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 17 deletions.
29 changes: 29 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
ci:
skip: [pylint]

repos:

- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
- id: isort

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.3
hooks:
- id: ruff
args: ["--fix"]
- id: ruff-format

- repo: https://github.com/PyCQA/pylint
rev: v3.3.1
hooks:
- id: pylint
fail_fast: false

- repo: https://github.com/PyCQA/bandit
rev: 1.7.4
hooks:
- id: bandit
args: ["--severity-level", "all", "--exclude", "tests/"]
fail_fast: false
4 changes: 2 additions & 2 deletions source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Paper Digest
.. toctree::
:caption: 📚 A curated of key terms
:maxdepth: 1

resource/keyterm/key

.. toctree::
Expand All @@ -26,4 +26,4 @@ Paper Digest

resource/ppml
paper/xu2021privacy-outline
paper/xu2021privacy
paper/xu2021privacy
8 changes: 8 additions & 0 deletions source/paper.bib
Original file line number Diff line number Diff line change
Expand Up @@ -338,4 +338,12 @@ @article{lynn2007implementation
author={Lynn, Ben},
year={2007},
publisher={Stanford University Stanford}
}

@misc{chatgpt2024,
author = {OpenAI ChatGPT},
title = {{C}onversational {A}ssistance for {V}arious {T}opics},
howpublished = {\url{https://openai.com/chatgpt}},
year = {},
note = {[Accessed 19-11-2024]},
}
30 changes: 15 additions & 15 deletions source/resource/keyterm/key.csv
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
Abbreviation,Term,Definition
ACI,Autonomic Computing Initiative,Todo.
AEs,Autonomic Elements,Todo.
AM,Autonomic Manager,Todo.
ACI,Autonomic Computing Initiative,A framework to develop self-managing computing systems :cite:`chatgpt2024`.
AEs,Autonomic Elements,Independent components that implement self-management functions :cite:`chatgpt2024`.
AM,Autonomic Manager,A system component that manages resources automatically :cite:`chatgpt2024`.
FHE,Fully Homomorphic Encryption,An encryption scheme that allows computation on encrypted data.
FaaS,Function As A Service,Provide a virtual environment for computer systems that can be dynamically scaled up and down.
IaaS,Infrastructure As A Service,Todo.
IoE,Internet Of Everything,Todo.
MAPE,Monitor Analyse Plan Execute,Todo.
PaaS,Platform As A Service,Todo.
QoE,Quality Of Experience,Todo.
QoS,Quality Of Service,Todo.
SARSA,State Action Reward State Action,Todo.
SLOs,Service Level Objectives,Todo.
SaaS,Software As A Service,Todo.
TEE,Trusted Execution Environment,Todo.
V2X,Vehicle To Everything,Todo.
X,Autonomous Computing,Todo.
IaaS,Infrastructure As A Service,Cloud-based virtualized computing resources such as servers and storage :cite:`chatgpt2024`.
IoE,Internet Of Everything,"A network connecting people, devices, and data for smarter interactions :cite:`chatgpt2024`."
MAPE,Monitor Analyse Plan Execute,A loop process used for autonomic computing systems :cite:`chatgpt2024`.
PaaS,Platform As A Service,A cloud service model that provides a platform for app development :cite:`chatgpt2024`.
QoE,Quality Of Experience,User satisfaction with a service's overall performance :cite:`chatgpt2024`.
QoS,Quality Of Service,The performance standard for a network or service :cite:`chatgpt2024`.
SARSA,State Action Reward State Action,An algorithm for reinforcement learning :cite:`chatgpt2024`.
SLOs,Service Level Objectives,Specific targets for service performance within slas :cite:`chatgpt2024`.
SaaS,Software As A Service,A cloud model delivering software via the internet :cite:`chatgpt2024`.
TEE,Trusted Execution Environment,A secure area of a processor for trusted operations :cite:`chatgpt2024`.
V2X,Vehicle To Everything,Communication between vehicles and external systems :cite:`chatgpt2024`.
X,Autonomous Computing,Computing systems capable of managing themselves :cite:`chatgpt2024`.

0 comments on commit e3b3755

Please sign in to comment.