https://go.dev/doc/effective_go
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Go moodle API client: https://github.com/k-yomo/moodle | |
Go FUSE library: https://bazil.org/fuse/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://riscv-programming.org/book.html | |
https://www.cs.sfu.ca/~ashriram/Courses/CS295/assets/books/HandP_RISCV.pdf | |
https://pdos.csail.mit.edu/6.828/2024/xv6.html | |
https://riscv.org/community/training/ | |
https://www.qemu.org/docs/master/system/target-riscv.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.sizecoding.org/wiki/Input | |
http://www.sizecoding.org/wiki/Output | |
http://www.sizecoding.org/wiki/Graphics | |
http://www.sizecoding.org/wiki/Sound | |
https://en.wikipedia.org/wiki/DOS_API | |
interrupts (api calls, etc) | |
http://www.ctyme.com/intr/int.htm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.distributedsystemscourse.com/ | |
https://github.com/theanalyst/awesome-distributed-systems | |
This class page has a bunch of useful links: | |
https://www.cs.cmu.edu/~dga/15-440/F12/syllabus.html | |
Software Engineering for Systems Hackers: | |
http://www.cs.cmu.edu/~dga/systems-se.pdf |
ImGui SFML backend: https://github.com/SFML/imgui-sfml ImGui Web primjer: https://github.com/jnmaloney/WebGui
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int drugi(int niz[], int vel) { | |
int pr = 0, dr = 0; | |
for (int i = 0; i < vel; i++) { | |
if (niz[i] > niz[pr]) { | |
dr = pr; | |
pr = i; | |
} | |
} |
NewerOlder