feat: add utility scripts to automate internship journal review, approval, and summary generation processes

This commit is contained in:
Ümit Tunç
2026-08-07 23:14:20 +03:00
parent 9b719324cd
commit 9b91b3c847
10 changed files with 1435 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
$data = json_decode(file_get_contents(__DIR__ . '/intern_code_summaries.json'), true);
$out = "";
foreach ($data as $d) {
$out .= "==================================================\n";
$out .= "İSİM: " . $d['name'] . " | REPO: " . $d['repo'] . "\n";
foreach ($d['snippets'] as $s) {
$out .= $s . "\n-----------------------\n";
}
}
file_put_contents(__DIR__ . '/output.txt', $out);
echo "Written to output.txt\n";