├── .github ├── ISSUE_TEMPLATE │ └── staj-basvuru-form.md ├── labels.json └── workflows │ ├── issue_title_check.yaml │ ├── require_approve_admin.yaml │ └── sync-labels.yaml ├── .gitignore ├── README.md ├── images └── 1714633070470.jpeg ├── scripts ├── message_send_selected.py ├── names.py ├── output │ ├── 03mar │ │ ├── duplicate_entries.json │ │ ├── intern_message.txt │ │ └── selected_interns.json │ ├── 12may │ │ ├── duplicate_entries.json │ │ ├── intern_message.txt │ │ └── selected_interns.json │ ├── 17feb │ │ ├── duplicate_entries.json │ │ ├── intern_message.txt │ │ └── selected_interns.json │ ├── 18mar │ │ ├── duplicate_entries.json │ │ ├── intern_message.txt │ │ └── selected_interns.json │ ├── 21apr │ │ ├── duplicate_entries.json │ │ ├── intern_message.txt │ │ └── selected_interns.json │ ├── 24feb │ │ ├── duplicate_entries.json │ │ ├── intern_message.txt │ │ └── selected_interns.json │ ├── 30mar │ │ ├── duplicate_entries.json │ │ ├── intern_message.txt │ │ └── selected_interns.json │ └── last_selected.json ├── send_message.py └── user_collect.py └── usefull_company.md /.github/ISSUE_TEMPLATE/staj-basvuru-form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/.github/ISSUE_TEMPLATE/staj-basvuru-form.md -------------------------------------------------------------------------------- /.github/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/.github/labels.json -------------------------------------------------------------------------------- /.github/workflows/issue_title_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/.github/workflows/issue_title_check.yaml -------------------------------------------------------------------------------- /.github/workflows/require_approve_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/.github/workflows/require_approve_admin.yaml -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/.github/workflows/sync-labels.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/README.md -------------------------------------------------------------------------------- /images/1714633070470.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/images/1714633070470.jpeg -------------------------------------------------------------------------------- /scripts/message_send_selected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/message_send_selected.py -------------------------------------------------------------------------------- /scripts/names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/names.py -------------------------------------------------------------------------------- /scripts/output/03mar/duplicate_entries.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /scripts/output/03mar/intern_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/03mar/intern_message.txt -------------------------------------------------------------------------------- /scripts/output/03mar/selected_interns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/03mar/selected_interns.json -------------------------------------------------------------------------------- /scripts/output/12may/duplicate_entries.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /scripts/output/12may/intern_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/12may/intern_message.txt -------------------------------------------------------------------------------- /scripts/output/12may/selected_interns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/12may/selected_interns.json -------------------------------------------------------------------------------- /scripts/output/17feb/duplicate_entries.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /scripts/output/17feb/intern_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/17feb/intern_message.txt -------------------------------------------------------------------------------- /scripts/output/17feb/selected_interns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/17feb/selected_interns.json -------------------------------------------------------------------------------- /scripts/output/18mar/duplicate_entries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/18mar/duplicate_entries.json -------------------------------------------------------------------------------- /scripts/output/18mar/intern_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/18mar/intern_message.txt -------------------------------------------------------------------------------- /scripts/output/18mar/selected_interns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/18mar/selected_interns.json -------------------------------------------------------------------------------- /scripts/output/21apr/duplicate_entries.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /scripts/output/21apr/intern_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/21apr/intern_message.txt -------------------------------------------------------------------------------- /scripts/output/21apr/selected_interns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/21apr/selected_interns.json -------------------------------------------------------------------------------- /scripts/output/24feb/duplicate_entries.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /scripts/output/24feb/intern_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/24feb/intern_message.txt -------------------------------------------------------------------------------- /scripts/output/24feb/selected_interns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/24feb/selected_interns.json -------------------------------------------------------------------------------- /scripts/output/30mar/duplicate_entries.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /scripts/output/30mar/intern_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/30mar/intern_message.txt -------------------------------------------------------------------------------- /scripts/output/30mar/selected_interns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/30mar/selected_interns.json -------------------------------------------------------------------------------- /scripts/output/last_selected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/output/last_selected.json -------------------------------------------------------------------------------- /scripts/send_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/send_message.py -------------------------------------------------------------------------------- /scripts/user_collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/scripts/user_collect.py -------------------------------------------------------------------------------- /usefull_company.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VB10/staj2025/HEAD/usefull_company.md --------------------------------------------------------------------------------