-
Notifications
You must be signed in to change notification settings - Fork 499
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
terminal updates; dashboard rewrite; use tailwind css; other updates
- Loading branch information
Showing
62 changed files
with
4,847 additions
and
3,005 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,5 @@ yarn-error.log | |
venv | ||
.vscode | ||
site | ||
build.js | ||
build.js.map | ||
gdbgui/static/js/* | ||
__pycache__ |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#include <stdio.h> | ||
#include <string.h> | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
char name[20]; | ||
printf("Hello. What's your name?\n"); | ||
fgets(name, 20, stdin); | ||
printf("Hi there, %s", name); | ||
return 0; | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
GDBGUI=../../gdbgui/backend.py | ||
ROOT:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) | ||
|
||
hello: hello.c | ||
gcc hello.c -o hello_c.a -std=c99 -g | ||
$(GDBGUI) hello_c.a | ||
@echo Run with gdbgui: gdbgui --args $(ROOT)/hello_c.a | ||
|
||
input: input.c | ||
gcc input.c -o input.a -std=c99 -g | ||
@echo Run with gdbgui: gdbgui --args $(ROOT)/input.a | ||
|
||
debug_segfault: debug_segfault.c | ||
gcc debug_segfault.c -g -o debug_segfault.a -std=c99 | ||
$(GDBGUI) debug_segfault.a | ||
@echo Run with gdbgui: gdbgui --args $(ROOT)/debug_segfault.a | ||
|
||
threads: threads.c | ||
gcc threads.c -o threads.a -std=c99 -lpthread -g | ||
$(GDBGUI) threads.a | ||
@echo Run with gdbgui: gdbgui --args $(ROOT)/threads.a | ||
|
||
sleeper: sleeper.c | ||
gcc sleeper.c -o sleeper.a -std=c99 -g | ||
$(GDBGUI) sleeper.a | ||
@echo Run with gdbgui: gdbgui --args $(ROOT)/sleeper.a |
Oops, something went wrong.