Skip to content
/ Studia Public

This GitHub repository contains organized notes for a university course in markdown format, including key concepts, formulas, and examples. The notes are regularly updated and users can contribute, ask questions and provide feedback in the issue section.

License

Notifications You must be signed in to change notification settings

xederro/Studia

Repository files navigation

Repo Size ko-fi

Zalecamy zapoznanie się z: LICENSE CONTRIBUTING CODE_OF_CONDUCT

Studia

Spis treści

Średnia

for (let group of dv.pages().where(p => p["typ"] == "GK").where(p => p["semestr"] != 4).groupBy(p => p.semestr)) {
	let sum = 0;
	group.rows.forEach(x=>sum+=Number(x.ects)*Number(x.ocena))
	dv.header(3, "Semestr " + group.key + ": " + (sum/30).toFixed(3));
}
let sum = 0;
let semestrCount = 1;
dv.pages()
	.where(p => p["typ"] == "GK")
	.where(p => p["semestr"] !== 4)
	.forEach(x=>{
		sum+=x.ects*x.ocena
		if (x.semestr > semestrCount) semestrCount = x.semestr
	})
dv.header(3, "Studia: " + (sum/(30*semestrCount)).toFixed(3));

Przydatne

[!Utils] bin

[!info] Sylabus

[!info] Sylabus Symbole

About

This GitHub repository contains organized notes for a university course in markdown format, including key concepts, formulas, and examples. The notes are regularly updated and users can contribute, ask questions and provide feedback in the issue section.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks