This commit is contained in:
@@ -931,3 +931,9 @@ at <ScriptBlock>, /home/zaine/master-folder/org-platform/org_web/build-logs/gite
|
||||
2026-08-20T01:01:37.9236959+01:00 [INFO] Running authoring server tests with /home/zaine/master-folder/org-platform/authoring-service/.venv/bin/python.
|
||||
2026-08-20T01:01:38.0020346+01:00 [INFO] Authoring server tests passed: ran=0, failures=0, errors=0, skipped=0, exit=0
|
||||
2026-08-20T01:01:38.3206364+01:00 [INFO] Sent authoring server test notification.
|
||||
2026-08-20T11:32:51.3509380+01:00 [INFO] Prepared current build status for zaine/org_web: severity=Info, status=success
|
||||
2026-08-20T11:32:51.3584432+01:00 [INFO] Fetching recent Gitea Actions runs for zaine/org_web.
|
||||
2026-08-20T11:32:52.2315007+01:00 [INFO] Sent build status notification with 1 embed(s).
|
||||
2026-08-20T11:32:52.2510149+01:00 [INFO] Running authoring server tests with /home/zaine/master-folder/org-platform/authoring-service/.venv/bin/python.
|
||||
2026-08-20T11:32:52.3284574+01:00 [INFO] Authoring server tests passed: ran=0, failures=0, errors=0, skipped=0, exit=0
|
||||
2026-08-20T11:32:52.6620246+01:00 [INFO] Sent authoring server test notification.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
See the categories: @@html:<a href="../home/categories.html">Categories</a>@@
|
||||
|
||||
* Posts:
|
||||
- [[file:career/career-list.org][Career List]] @@html:<span class="post-date">19-08-2026 15:36</span>@@
|
||||
- [[file:career/career-list.org][Career List]] @@html:<span class="post-date">20-08-2026 01:01</span>@@
|
||||
- [[file:career/cross-site-scripting-xss.org][Cross-Site Scripting (XSS)]] @@html:<span class="post-date">01-06-2026 10:21</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||
- [[file:career/ha-dr.org][High Availability, Disaster Recovery and Business Continuity]] @@html:<span class="post-date">11-03-2026 17:18</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||
- [[file:career/javascript.org][Understands the Javascript language]] @@html:<span class="post-date">11-03-2026 16:52</span>@@ @@html:<a href="/tags/learning.html"><span class="post-tag">learning</span></a>@@ @@html:<a href="/tags/notes.html"><span class="post-tag">notes</span></a>@@
|
||||
|
||||
50
push.c
50
push.c
@@ -1,29 +1,39 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
int main() {
|
||||
char path[100] = "/home/zaine/master-folder/org-platform/org_web";
|
||||
int main(void)
|
||||
{
|
||||
char path[] = "/home/zaine/master-folder/org-platform/org_web";
|
||||
char command[256];
|
||||
int result;
|
||||
|
||||
char command[200];
|
||||
snprintf(command, sizeof(command),
|
||||
"cd \"%s\" && git add .",
|
||||
path);
|
||||
result = system(command);
|
||||
if (result != 0) {
|
||||
printf("git add failed\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
snprintf(command, sizeof(command), "cd %s && git add .", path);
|
||||
snprintf(command, sizeof(command),
|
||||
"cd \"%s\" && git commit -m \"Auto commit\"",
|
||||
path);
|
||||
result = system(command);
|
||||
if (result != 0) {
|
||||
printf("git commit failed\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
int result = system(command);
|
||||
snprintf(command, sizeof(command),
|
||||
"cd \"%s\" && git push",
|
||||
path);
|
||||
result = system(command);
|
||||
if (result != 0) {
|
||||
printf("git push failed\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
snprintf(command, sizeof(command), "cd %s && git commit -m \"Auto commit", path);
|
||||
|
||||
result = system(command);
|
||||
|
||||
snprintf(command, sizeof(command), "cd %s && git push", path);
|
||||
|
||||
result = system(command);
|
||||
|
||||
if (result == 0) {
|
||||
printf("Successfully pushed files to git.\n");
|
||||
} else {
|
||||
printf("Failed to push files to git.\n");
|
||||
}
|
||||
|
||||
return 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
#+OPTIONS: toc:nil num:nil
|
||||
|
||||
* Recently Updated (top 26 files)
|
||||
- [[file:home/.#backlog.org][.#backlog]] @@html:<span class="post-date">2026-08-19 10:59</span>@@
|
||||
- [[file:rl/index.org][Resource Loader]] @@html:<span class="post-date">2026-08-19 00:00</span>@@
|
||||
- [[file:blogs/2026/08-august/16-08-week-review.org][[16-08-2026] - Weekly Review]] @@html:<span class="post-date">2026-08-16 12:00</span>@@
|
||||
- [[file:blogs/2026/08-august/09-08-week-review.org][[09-08-2026] - Weekly Review]] @@html:<span class="post-date">2026-08-09 12:00</span>@@
|
||||
@@ -28,3 +27,4 @@
|
||||
- [[file:blogs/2026/05-may/working-on-eid-day-27-05-26.org][Working on Eid day]] @@html:<span class="post-date">2026-05-27 16:02</span>@@
|
||||
- [[file:blogs/2026/05-may/24-05-week-review.org][[24-05-2026] - Weekly Review]] @@html:<span class="post-date">2026-05-24 12:00</span>@@
|
||||
- [[file:blogs/2026/05-may/17-05-week-review.org][[17-05-2026] - Weekly Review]] @@html:<span class="post-date">2026-05-17 12:00</span>@@
|
||||
- [[file:blogs/2026/05-may/poppadoms-num-13-05.org][Poppadoms num]] @@html:<span class="post-date">2026-05-13 23:29</span>@@
|
||||
|
||||
116
sitemap.org
116
sitemap.org
@@ -78,17 +78,17 @@ flowchart TD
|
||||
n30 --> n36
|
||||
n37["Tag: website"]
|
||||
n30 --> n37
|
||||
n38["Tag: update"]
|
||||
n38["Tag: life"]
|
||||
n30 --> n38
|
||||
n39["Tag: life"]
|
||||
n39["Tag: update"]
|
||||
n30 --> n39
|
||||
n40["Tag: education"]
|
||||
n40["Tag: insights"]
|
||||
n30 --> n40
|
||||
n41["Tag: insights"]
|
||||
n41["Tag: emacs"]
|
||||
n30 --> n41
|
||||
n42["Tag: reading"]
|
||||
n42["Tag: education"]
|
||||
n30 --> n42
|
||||
n43["Tag: emacs"]
|
||||
n43["Tag: reading"]
|
||||
n30 --> n43
|
||||
n44["Tag: maths"]
|
||||
n30 --> n44
|
||||
@@ -160,36 +160,36 @@ flowchart TD
|
||||
n69 --> n77
|
||||
n78["Marginalia Machine"]
|
||||
n69 --> n78
|
||||
n79{{"home"}}
|
||||
n79{{"rl"}}
|
||||
root --> n79
|
||||
n80["Countdown"]
|
||||
n80["Resource Loader"]
|
||||
n79 --> n80
|
||||
n81["Backlog"]
|
||||
n79 --> n81
|
||||
n82["Competency Status Board"]
|
||||
n79 --> n82
|
||||
n83["hidden-soul"]
|
||||
n79 --> n83
|
||||
n84["Wird Tracker"]
|
||||
n79 --> n84
|
||||
n85["Contact"]
|
||||
n79 --> n85
|
||||
n86["Service"]
|
||||
n79 --> n86
|
||||
n87["Notes"]
|
||||
n79 --> n87
|
||||
n88["Categories"]
|
||||
n79 --> n88
|
||||
n89{{"guide"}}
|
||||
n79 --> n89
|
||||
n90["Setup"]
|
||||
n89 --> n90
|
||||
n91["Wird Tracker — Technical Guide"]
|
||||
n89 --> n91
|
||||
n92{{"rl"}}
|
||||
root --> n92
|
||||
n93["Resource Loader"]
|
||||
n92 --> n93
|
||||
n81{{"home"}}
|
||||
root --> n81
|
||||
n82["Countdown"]
|
||||
n81 --> n82
|
||||
n83["Backlog"]
|
||||
n81 --> n83
|
||||
n84["Competency Status Board"]
|
||||
n81 --> n84
|
||||
n85["hidden-soul"]
|
||||
n81 --> n85
|
||||
n86["Wird Tracker"]
|
||||
n81 --> n86
|
||||
n87["Contact"]
|
||||
n81 --> n87
|
||||
n88["Service"]
|
||||
n81 --> n88
|
||||
n89["Notes"]
|
||||
n81 --> n89
|
||||
n90["Categories"]
|
||||
n81 --> n90
|
||||
n91{{"guide"}}
|
||||
n81 --> n91
|
||||
n92["Setup"]
|
||||
n91 --> n92
|
||||
n93["Wird Tracker — Technical Guide"]
|
||||
n91 --> n93
|
||||
click n1 "index.html" "Home"
|
||||
click n2 "recently-updated.html" "Recently Updated"
|
||||
click n4 "blogs/blogs-intro.html" "Blogs Introduction"
|
||||
@@ -211,12 +211,12 @@ flowchart TD
|
||||
click n35 "tags/notes.html" "Tag: notes"
|
||||
click n36 "tags/review.html" "Tag: review"
|
||||
click n37 "tags/website.html" "Tag: website"
|
||||
click n38 "tags/update.html" "Tag: update"
|
||||
click n39 "tags/life.html" "Tag: life"
|
||||
click n40 "tags/education.html" "Tag: education"
|
||||
click n41 "tags/insights.html" "Tag: insights"
|
||||
click n42 "tags/reading.html" "Tag: reading"
|
||||
click n43 "tags/emacs.html" "Tag: emacs"
|
||||
click n38 "tags/life.html" "Tag: life"
|
||||
click n39 "tags/update.html" "Tag: update"
|
||||
click n40 "tags/insights.html" "Tag: insights"
|
||||
click n41 "tags/emacs.html" "Tag: emacs"
|
||||
click n42 "tags/education.html" "Tag: education"
|
||||
click n43 "tags/reading.html" "Tag: reading"
|
||||
click n44 "tags/maths.html" "Tag: maths"
|
||||
click n46 "posts/posts-intro.html" "Posts Introduction"
|
||||
click n47 "posts/posts-list.html" "Posts List"
|
||||
@@ -249,18 +249,18 @@ flowchart TD
|
||||
click n76 "play/terminal.html" "Archive Terminal"
|
||||
click n77 "play/study.html" "Study Lamp"
|
||||
click n78 "play/poem.html" "Marginalia Machine"
|
||||
click n80 "home/countdown.html" "Countdown"
|
||||
click n81 "home/backlog.html" "Backlog"
|
||||
click n82 "home/status.html" "Competency Status Board"
|
||||
click n83 "home/hidden-soul.html" "hidden-soul"
|
||||
click n84 "home/wird-tracker.html" "Wird Tracker"
|
||||
click n85 "home/contact.html" "Contact"
|
||||
click n86 "home/services.html" "Service"
|
||||
click n87 "home/notes.html" "Notes"
|
||||
click n88 "home/categories.html" "Categories"
|
||||
click n90 "home/guide/setup.html" "Setup"
|
||||
click n91 "home/guide/wird-tracker-guide.html" "Wird Tracker — Technical Guide"
|
||||
click n93 "rl/index.html" "Resource Loader"
|
||||
click n80 "rl/index.html" "Resource Loader"
|
||||
click n82 "home/countdown.html" "Countdown"
|
||||
click n83 "home/backlog.html" "Backlog"
|
||||
click n84 "home/status.html" "Competency Status Board"
|
||||
click n85 "home/hidden-soul.html" "hidden-soul"
|
||||
click n86 "home/wird-tracker.html" "Wird Tracker"
|
||||
click n87 "home/contact.html" "Contact"
|
||||
click n88 "home/services.html" "Service"
|
||||
click n89 "home/notes.html" "Notes"
|
||||
click n90 "home/categories.html" "Categories"
|
||||
click n92 "home/guide/setup.html" "Setup"
|
||||
click n93 "home/guide/wird-tracker-guide.html" "Wird Tracker — Technical Guide"
|
||||
#+end_src
|
||||
|
||||
* Pages
|
||||
@@ -301,12 +301,12 @@ flowchart TD
|
||||
- [[file:tags/notes.org][Tag: notes]]
|
||||
- [[file:tags/review.org][Tag: review]]
|
||||
- [[file:tags/website.org][Tag: website]]
|
||||
- [[file:tags/update.org][Tag: update]]
|
||||
- [[file:tags/life.org][Tag: life]]
|
||||
- [[file:tags/education.org][Tag: education]]
|
||||
- [[file:tags/update.org][Tag: update]]
|
||||
- [[file:tags/insights.org][Tag: insights]]
|
||||
- [[file:tags/reading.org][Tag: reading]]
|
||||
- [[file:tags/emacs.org][Tag: emacs]]
|
||||
- [[file:tags/education.org][Tag: education]]
|
||||
- [[file:tags/reading.org][Tag: reading]]
|
||||
- [[file:tags/maths.org][Tag: maths]]
|
||||
- posts
|
||||
- [[file:posts/posts-intro.org][Posts Introduction]]
|
||||
@@ -342,6 +342,8 @@ flowchart TD
|
||||
- [[file:play/terminal.org][Archive Terminal]]
|
||||
- [[file:play/study.org][Study Lamp]]
|
||||
- [[file:play/poem.org][Marginalia Machine]]
|
||||
- rl
|
||||
- [[file:rl/index.org][Resource Loader]]
|
||||
- home
|
||||
- [[file:home/countdown.org][Countdown]]
|
||||
- [[file:home/backlog.org][Backlog]]
|
||||
@@ -354,6 +356,4 @@ flowchart TD
|
||||
- [[file:home/categories.org][Categories]]
|
||||
- guide
|
||||
- [[file:home/guide/setup.org][Setup]]
|
||||
- [[file:home/guide/wird-tracker-guide.org][Wird Tracker — Technical Guide]]
|
||||
- rl
|
||||
- [[file:rl/index.org][Resource Loader]]
|
||||
- [[file:home/guide/wird-tracker-guide.org][Wird Tracker — Technical Guide]]
|
||||
Reference in New Issue
Block a user