From e3af8b465f524c267eff99def3544949948826da Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:18:43 +0300 Subject: [PATCH 01/17] Update README.md --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f70c871..a6e00b1 100644 --- a/README.md +++ b/README.md @@ -20,9 +20,12 @@

Support:

scriptez1



- -

scriptez1

- -

 scriptez1

- -

scriptez1

+
+

Scriptez1

+





+

 Scriptez1

+ + + + github contribution grid snake animation + From cc77a21693b6932282f58034f4822043c8155966 Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:24:32 +0300 Subject: [PATCH 02/17] Update README.md --- README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index a6e00b1..a8e7b4b 100644 --- a/README.md +++ b/README.md @@ -22,10 +22,4 @@

scriptez1




Scriptez1

-





-

 Scriptez1

- - - - github contribution grid snake animation - +

Scriptez1

From 7c95be3fafe7c8c3ab85004c3663c6ef4f49334b Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:28:16 +0300 Subject: [PATCH 03/17] Update main.yml --- .github/workflows/main.yml | 70 ++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 40 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c321541..0a6eb02 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,53 +1,43 @@ -# GitHub Action for generating a contribution graph with a snake eating your contributions. - -name: Generate Snake - -# Controls when the action will run. This action runs every 6 hours. +name: generate animation on: + # run automatically every 24 hours schedule: - # every 6 hours - - cron: "0 */6 * * *" - -# This command allows us to run the Action automatically from the Actions tab. + - cron: "0 */24 * * *" + + # allows to manually run the job at any time workflow_dispatch: + + # run on every push on the master branch + push: + branches: + - master + + -# The sequence of runs in this workflow: jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on + generate: + permissions: + contents: write runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job + timeout-minutes: 5 + steps: - - # Checks repo under $GITHUB_WORKSHOP, so your job can access it - - uses: actions/checkout@v2 - - # Generates the snake - - uses: Platane/snk@master - id: snake-gif + # generates a snake game from a github user () contributions graph, output a svg animation at + - name: generate github-contribution-grid-snake.svg + uses: Platane/snk/svg-only@v3 with: - github_user_name: Scriptez1 - # these next 2 lines generate the files on a branch called "output". This keeps the main branch from cluttering up. - gif_out_path: dist/github-contribution-grid-snake.gif - svg_out_path: dist/github-contribution-grid-snake.svg - - # show the status of the build. Makes it easier for debugging (if there's any issues). - - run: git status - - # Push the changes - - name: Push changes - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: master - force: true - - - uses: crazy-max/ghaction-github-pages@v2.1.3 + github_user_name: ${{ github.repository_owner }} + outputs: | + dist/github-contribution-grid-snake.svg + dist/github-contribution-grid-snake-dark.svg?palette=github-dark + + + # push the content of to a branch + # the content will be available at https://raw.githubusercontent.com//// , or as github page + - name: push github-contribution-grid-snake.svg to the output branch + uses: crazy-max/ghaction-github-pages@v3.1.0 with: - # the output branch we mentioned above target_branch: output build_dir: dist env: From bb9f1cb5048801b8eca3256bc8fca9f39c8b3b39 Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:32:49 +0300 Subject: [PATCH 04/17] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index a8e7b4b..ac425b2 100644 --- a/README.md +++ b/README.md @@ -23,3 +23,9 @@

Scriptez1

Scriptez1

+ + + + + github-snake + From a51abd273865ce081e698367e3fdd06d45d9cea0 Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:34:26 +0300 Subject: [PATCH 05/17] Update main.yml --- .github/workflows/main.yml | 46 ++------------------------------------ 1 file changed, 2 insertions(+), 44 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0a6eb02..281fc04 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,44 +1,2 @@ -name: generate animation - -on: - # run automatically every 24 hours - schedule: - - cron: "0 */24 * * *" - - # allows to manually run the job at any time - workflow_dispatch: - - # run on every push on the master branch - push: - branches: - - master - - - -jobs: - generate: - permissions: - contents: write - runs-on: ubuntu-latest - timeout-minutes: 5 - - steps: - # generates a snake game from a github user () contributions graph, output a svg animation at - - name: generate github-contribution-grid-snake.svg - uses: Platane/snk/svg-only@v3 - with: - github_user_name: ${{ github.repository_owner }} - outputs: | - dist/github-contribution-grid-snake.svg - dist/github-contribution-grid-snake-dark.svg?palette=github-dark - - - # push the content of to a branch - # the content will be available at https://raw.githubusercontent.com//// , or as github page - - name: push github-contribution-grid-snake.svg to the output branch - uses: crazy-max/ghaction-github-pages@v3.1.0 - with: - target_branch: output - build_dir: dist - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +- name: generate-snake-game-from-github-contribution-grid + uses: Platane/snk@v3.3.0 From d0007eba0ebfe34fe48102c1606d57d4815d0516 Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:37:53 +0300 Subject: [PATCH 06/17] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ac425b2..9ee59e7 100644 --- a/README.md +++ b/README.md @@ -20,12 +20,12 @@

Support:

scriptez1



-
+




Scriptez1

Scriptez1

- github-snake + From a47c1f1e6689b84a22265ed6089dc655f1b753d9 Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:38:10 +0300 Subject: [PATCH 07/17] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 9ee59e7..37a2125 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,7 @@

arduino aws blender csharp css3 flutter gcp git html5 javascript linux mssql mysql nodejs php python sqlite unity

Support:

-

scriptez1



-




+

scriptez1




Scriptez1

Scriptez1

From c6ce6f8c5533d3b3a533dad93519a2e90db476c1 Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:41:54 +0300 Subject: [PATCH 08/17] Update main.yml --- .github/workflows/main.yml | 46 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 44 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 281fc04..0a6eb02 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,2 +1,44 @@ -- name: generate-snake-game-from-github-contribution-grid - uses: Platane/snk@v3.3.0 +name: generate animation + +on: + # run automatically every 24 hours + schedule: + - cron: "0 */24 * * *" + + # allows to manually run the job at any time + workflow_dispatch: + + # run on every push on the master branch + push: + branches: + - master + + + +jobs: + generate: + permissions: + contents: write + runs-on: ubuntu-latest + timeout-minutes: 5 + + steps: + # generates a snake game from a github user () contributions graph, output a svg animation at + - name: generate github-contribution-grid-snake.svg + uses: Platane/snk/svg-only@v3 + with: + github_user_name: ${{ github.repository_owner }} + outputs: | + dist/github-contribution-grid-snake.svg + dist/github-contribution-grid-snake-dark.svg?palette=github-dark + + + # push the content of to a branch + # the content will be available at https://raw.githubusercontent.com//// , or as github page + - name: push github-contribution-grid-snake.svg to the output branch + uses: crazy-max/ghaction-github-pages@v3.1.0 + with: + target_branch: output + build_dir: dist + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From c18945dcb40aac19857242cc479afd909a03b84d Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:50:17 +0300 Subject: [PATCH 09/17] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 37a2125..e1ef28c 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@

Scriptez1

- - - + + + github-snake From bf37cc228e36868e8709cf0d9f9926cbd4394025 Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:52:11 +0300 Subject: [PATCH 10/17] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index e1ef28c..0d8a969 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,6 @@

Support:

scriptez1




Scriptez1

-

Scriptez1

From e075085283e26d22b76f69e30d88a0bd7764555e Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Thu, 31 Jul 2025 19:53:52 +0300 Subject: [PATCH 11/17] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0d8a969..1218228 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,9 @@

arduino aws blender csharp css3 flutter gcp git html5 javascript linux mssql mysql nodejs php python sqlite unity

Support:

-

scriptez1




-

Scriptez1

+

+scriptez1




+

Scriptez1

From 504e1d814ea274abb89ae1f34ac7b395aed1614c Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Sat, 6 Sep 2025 12:32:23 +0300 Subject: [PATCH 12/17] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1218228..d6dfb97 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@

Languages and Tools:

arduino aws blender csharp css3 flutter gcp git html5 javascript linux mssql mysql nodejs php python sqlite unity

+![](https://komarev.com/ghpvc/?username=Scriptez1&color=red) +

Support:

scriptez1




From bca1d9bd7b53d1cfc2b5cf4f21c1b1e3922791f5 Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Tue, 9 Dec 2025 22:29:28 +0300 Subject: [PATCH 13/17] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d6dfb97..921a31c 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@

Hi šŸ‘‹, I'm Scriptez1

A passionate frontend developer from Turkey

+
+ v2 1 thumbnail +
- šŸ”­ I’m currently working on [RedXFreeSteamInstaller](https://github.com/Scriptez1/RedXFreeSteamInstaller) @@ -22,8 +25,7 @@

Support:

-scriptez1




-

Scriptez1

+scriptez1

From 04681a48cfaa8a3c608eabcd53ed405b0ab4da0c Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Tue, 9 Dec 2025 22:29:56 +0300 Subject: [PATCH 14/17] Remove email contact from README Removed email contact information from README. --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 921a31c..5d6dc0d 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,6 @@ - šŸ‘Øā€šŸ’» All of my projects are available at [https://github.com/Scriptez1?tab=repositories](https://github.com/Scriptez1?tab=repositories) -- šŸ“« How to reach me **omeryigitcelepci@gmail.com** -

Connect with me:

dokuman_tv From 40acf4ad8f69bd949778a5fbdc88aaae856a58b1 Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Tue, 9 Dec 2025 22:30:28 +0300 Subject: [PATCH 15/17] Fix Discord link in README.md Updated Discord link in the README file. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d6dc0d..8ff2060 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@

Connect with me:

dokuman_tv -QW9uXgUHqB +x5XSGGWrMA

Languages and Tools:

From 3617b4e98ea0f32199da6feaf8054e749df164aa Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Sat, 14 Mar 2026 16:24:03 +0300 Subject: [PATCH 16/17] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ff2060..0c34c8e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

Hi šŸ‘‹, I'm Scriptez1

A passionate frontend developer from Turkey

- v2 1 thumbnail +a
- šŸ”­ I’m currently working on [RedXFreeSteamInstaller](https://github.com/Scriptez1/RedXFreeSteamInstaller) From 46a06080031011e7792175303722b6b55f50c563 Mon Sep 17 00:00:00 2001 From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com> Date: Sat, 14 Mar 2026 16:25:30 +0300 Subject: [PATCH 17/17] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0c34c8e..8ad2c66 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

Hi šŸ‘‹, I'm Scriptez1

-

A passionate frontend developer from Turkey

+

A passionate fullstack developer from Turkey

a
@@ -13,7 +13,7 @@

Connect with me:

dokuman_tv -x5XSGGWrMA +x5XSGGWrMA

Languages and Tools: