Skip to content

Commit 0db17db

Browse files
authored
Merge branch 'devmalik7:main' into issue-54
2 parents 35554dd + 5a7bbd6 commit 0db17db

File tree

18 files changed

+184
-0
lines changed

18 files changed

+184
-0
lines changed

.github/workflows/update-index.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Auto Update INDEX.md
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
types: [closed]
9+
branches:
10+
- main
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v4
19+
20+
- name: Set up Python
21+
uses: actions/setup-python@v5
22+
with:
23+
python-version: "3.x"
24+
25+
- name: Run index generator
26+
run: |
27+
python update_index.py
28+
29+
- name: Commit & Push changes
30+
run: |
31+
git config user.name "GitHub Action"
32+
git config user.email "actions@github.com"
33+
git add INDEX.md
34+
git diff --quiet && echo "No changes to commit" || git commit -m "🤖 Auto update INDEX.md"
35+
git push

INDEX.md

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# 📘 Code Script Index
2+
A central list of all scripts and mini-projects organized by language.
3+
---
4+
5+
## 📂 Android Studio Script
6+
7+
| Project | Author |
8+
|----------|---------|
9+
| _No projects yet_ | - |
10+
11+
## 📂 C
12+
13+
| Project | Author |
14+
|----------|---------|
15+
| _No projects yet_ | - |
16+
17+
## 📂 Java
18+
19+
| Project | Author |
20+
|----------|---------|
21+
| MotivationalQuote | @unknown |
22+
| RandomPasswordGenerator in java | @unknown |
23+
| Resizerr | @unknown |
24+
| Text summarizer | @unknown |
25+
26+
## 📂 Javascript
27+
28+
| Project | Author |
29+
|----------|---------|
30+
| Bulk Image Resizer | @Dhanush |
31+
| Dice Rolling Simulator | @Kaustubh |
32+
| Random_Joke_Generator | @MichałSzkil |
33+
34+
## 📂 OpenCv
35+
36+
| Project | Author |
37+
|----------|---------|
38+
| _No projects yet_ | - |
39+
40+
## 🐍 Python
41+
42+
| Project | Author |
43+
|----------|---------|
44+
| Currency Convertor | @19-ayushi |
45+
| File_Encrytion_Decryption | @haragam22 |
46+
| ImageResizerCompressor | @ArindamShukla |
47+
| News Headline Scraper | @19-ayushi |
48+
| QRcode_Scanner | @DhanashreePetare |
49+
| Random Motivational Qoute generator | @NehalKhan |
50+
| Screenshot_Capture_Tool | @Ashwil-Colaco |
51+
| Speed test Script | @NehalKhan |
52+
| TextSummarizer | @eleensmathew |
53+
| bulk_ImageResizer | @mukkss |
54+
| duplicate_file_detector | @Ashutosh-agarwal2004 |
55+
| face_detector | @dehobitto |
56+
| password_generator | @harsimran-kaur190 |
57+
| random_joke_generator | @Deepansha |
58+
| screenshot_automation_bot | @BharateshKharvi |
59+
| sign language | @PartyakshSaini |
60+
| youtube_playlist_downloader | @BharateshKharvi |
61+
62+
## 📂 Reactjs
63+
64+
| Project | Author |
65+
|----------|---------|
66+
| _No projects yet_ | - |
67+
68+
## 🎨 WebDev
69+
70+
| Project | Author |
71+
|----------|---------|
72+
| DigitalClock | @Kaustubh |
73+
File renamed without changes.
File renamed without changes.
File renamed without changes.

Java/Java/RandomPasswordGenerator in java/RandomPasswordGenerator.java renamed to Java /RandomPasswordGenerator in java/RandomPasswordGenerator.java

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)