From e880827c74925d1a185f9e0569fb9380a5216264 Mon Sep 17 00:00:00 2001 From: Gabby <74931303+radioactivityy@users.noreply.github.com> Date: Mon, 13 Jul 2026 16:33:10 +0200 Subject: [PATCH 1/5] sprint project --- src/content/sprints/_sprints_template.md | 41 +++++++++++++++++------- 1 file changed, 29 insertions(+), 12 deletions(-) diff --git a/src/content/sprints/_sprints_template.md b/src/content/sprints/_sprints_template.md index dfa11651b..43e65df4f 100644 --- a/src/content/sprints/_sprints_template.md +++ b/src/content/sprints/_sprints_template.md @@ -1,15 +1,32 @@ --- -title: "Project name" -numberOfPeople: "" # How many people you expect to be able to accommodate. -pythonLevel: "Any" # Any, Beginner, Intermediate, or Advanced. -contactPerson: # The main person to reach out to regarding the sprint. - name: "" - email: - github: - twitter: -links: # Add as many links as relevant. - - title: "Project xyz GitHub repo" - url: "https://github.com/xyz" +title: "Real time dynamic pricing AI system in Python" +numberOfPeople: "5" +pythonLevel: "Intermediate" +contactPerson: + name: "Gabby Demirkiran" + email: "gulcindemirkirann@gmail.com" + github: "https://github.com/radioactivityy" + linkedln: "https://www.linkedin.com/in/gulcindemirkiran/" --- +## What is it? -Your sprint/project description goes here. +Think about how Uber works: when lots of people need rides but there aren't +many drivers around, prices go up. When it's quiet, prices go down. This +project builds that kind of "smart pricing" system from scratch. + +## What does it actually do? + +The system watches ride requests come in live (simulated from real +ride-sharing data) and decides a fair price for each one, instantly. It looks +at things like: + +- How many people want rides right now vs. how many drivers are available +- What time of day it is +- How long the trip will take +- Whether the customer is a loyal, regular user (they get a discount) + +## Stack + +Will be written with Python 3.14 and some of its newest features, using an approach +called "online machine learning" => RIver library will be used for that (https://pypi.org/project/river/) +Dataset that will be used: https://www.kaggle.com/datasets/arashnic/dynamic-pricing-dataset From 5a9ec6ec931c8d0d2d6c5d97de92753322483b5a Mon Sep 17 00:00:00 2001 From: Gabby <74931303+radioactivityy@users.noreply.github.com> Date: Mon, 13 Jul 2026 16:36:22 +0200 Subject: [PATCH 2/5] sprint projec --- src/content/sprints/dynamic-pricing.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/content/sprints/dynamic-pricing.md diff --git a/src/content/sprints/dynamic-pricing.md b/src/content/sprints/dynamic-pricing.md new file mode 100644 index 000000000..66e3edb44 --- /dev/null +++ b/src/content/sprints/dynamic-pricing.md @@ -0,0 +1,23 @@ +--- +title: "Realtime dynamic pricing AI system in Python" +numberOfPeople: "3" +pythonLevel: "Intermediate" +contactPerson: + name: "Gabby Demirkiran" + email: "gulcindemirkirann@gmail.com" + github: "https://github.com/radioactivityy" + linkedln: "https://www.linkedin.com/in/gulcindemirkiran/" + +draft: true +--- +## What is it? + +Think about how Uber works: when lots of people need rides but there aren't +many drivers around, prices go up. When it's quiet, prices go down. This +project builds that kind of "smart pricing" system from scratch. + + +## Stack + +Python 3.14 . "online machine learning" => https://pypi.org/project/river/ +dataset: https://www.kaggle.com/datasets/arashnic/dynamic-pricing-dataset \ No newline at end of file From cb185e4c8f84b0d474beca99b39e02d13e15ac46 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 14:38:29 +0000 Subject: [PATCH 3/5] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/content/sprints/_sprints_template.md | 23 ++++++------ src/content/sprints/dynamic-pricing.md | 46 ++++++++++++------------ 2 files changed, 35 insertions(+), 34 deletions(-) diff --git a/src/content/sprints/_sprints_template.md b/src/content/sprints/_sprints_template.md index 43e65df4f..f0e44c749 100644 --- a/src/content/sprints/_sprints_template.md +++ b/src/content/sprints/_sprints_template.md @@ -1,24 +1,24 @@ --- title: "Real time dynamic pricing AI system in Python" -numberOfPeople: "5" -pythonLevel: "Intermediate" +numberOfPeople: "5" +pythonLevel: "Intermediate" contactPerson: name: "Gabby Demirkiran" email: "gulcindemirkirann@gmail.com" github: "https://github.com/radioactivityy" linkedln: "https://www.linkedin.com/in/gulcindemirkiran/" --- + ## What is it? -Think about how Uber works: when lots of people need rides but there aren't -many drivers around, prices go up. When it's quiet, prices go down. This -project builds that kind of "smart pricing" system from scratch. +Think about how Uber works: when lots of people need rides but there aren't many +drivers around, prices go up. When it's quiet, prices go down. This project +builds that kind of "smart pricing" system from scratch. ## What does it actually do? -The system watches ride requests come in live (simulated from real -ride-sharing data) and decides a fair price for each one, instantly. It looks -at things like: +The system watches ride requests come in live (simulated from real ride-sharing +data) and decides a fair price for each one, instantly. It looks at things like: - How many people want rides right now vs. how many drivers are available - What time of day it is @@ -27,6 +27,7 @@ at things like: ## Stack -Will be written with Python 3.14 and some of its newest features, using an approach -called "online machine learning" => RIver library will be used for that (https://pypi.org/project/river/) -Dataset that will be used: https://www.kaggle.com/datasets/arashnic/dynamic-pricing-dataset +Will be written with Python 3.14 and some of its newest features, using an +approach called "online machine learning" => RIver library will be used for that +(https://pypi.org/project/river/) Dataset that will be used: +https://www.kaggle.com/datasets/arashnic/dynamic-pricing-dataset diff --git a/src/content/sprints/dynamic-pricing.md b/src/content/sprints/dynamic-pricing.md index 66e3edb44..3487ed8b6 100644 --- a/src/content/sprints/dynamic-pricing.md +++ b/src/content/sprints/dynamic-pricing.md @@ -1,23 +1,23 @@ ---- -title: "Realtime dynamic pricing AI system in Python" -numberOfPeople: "3" -pythonLevel: "Intermediate" -contactPerson: - name: "Gabby Demirkiran" - email: "gulcindemirkirann@gmail.com" - github: "https://github.com/radioactivityy" - linkedln: "https://www.linkedin.com/in/gulcindemirkiran/" - -draft: true ---- -## What is it? - -Think about how Uber works: when lots of people need rides but there aren't -many drivers around, prices go up. When it's quiet, prices go down. This -project builds that kind of "smart pricing" system from scratch. - - -## Stack - -Python 3.14 . "online machine learning" => https://pypi.org/project/river/ -dataset: https://www.kaggle.com/datasets/arashnic/dynamic-pricing-dataset \ No newline at end of file +--- +title: "Realtime dynamic pricing AI system in Python" +numberOfPeople: "3" +pythonLevel: "Intermediate" +contactPerson: + name: "Gabby Demirkiran" + email: "gulcindemirkirann@gmail.com" + github: "https://github.com/radioactivityy" + linkedln: "https://www.linkedin.com/in/gulcindemirkiran/" + +draft: true +--- + +## What is it? + +Think about how Uber works: when lots of people need rides but there aren't many +drivers around, prices go up. When it's quiet, prices go down. This project +builds that kind of "smart pricing" system from scratch. + +## Stack + +Python 3.14 . "online machine learning" => https://pypi.org/project/river/ +dataset: https://www.kaggle.com/datasets/arashnic/dynamic-pricing-dataset From 90bb462b2f3b3ea55a16d0789cbf6be32952e0ff Mon Sep 17 00:00:00 2001 From: Gabby <74931303+radioactivityy@users.noreply.github.com> Date: Mon, 13 Jul 2026 16:44:25 +0200 Subject: [PATCH 4/5] revert changes in template file --- src/content/sprints/_sprints_template.md | 39 +++++++----------------- 1 file changed, 11 insertions(+), 28 deletions(-) diff --git a/src/content/sprints/_sprints_template.md b/src/content/sprints/_sprints_template.md index f0e44c749..64ef9b0b8 100644 --- a/src/content/sprints/_sprints_template.md +++ b/src/content/sprints/_sprints_template.md @@ -1,33 +1,16 @@ --- -title: "Real time dynamic pricing AI system in Python" +title: "Secret project" numberOfPeople: "5" -pythonLevel: "Intermediate" +pythonLevel: "Any" contactPerson: - name: "Gabby Demirkiran" - email: "gulcindemirkirann@gmail.com" - github: "https://github.com/radioactivityy" - linkedln: "https://www.linkedin.com/in/gulcindemirkiran/" + name: "NikoĊ› Hell" + email: + github: "nikoshell" + twitter: "nikoshell20" +links: + - title: "Secret GitHub repo" + url: "https://github.com/nikoshell/secret" +draft: true --- -## What is it? - -Think about how Uber works: when lots of people need rides but there aren't many -drivers around, prices go up. When it's quiet, prices go down. This project -builds that kind of "smart pricing" system from scratch. - -## What does it actually do? - -The system watches ride requests come in live (simulated from real ride-sharing -data) and decides a fair price for each one, instantly. It looks at things like: - -- How many people want rides right now vs. how many drivers are available -- What time of day it is -- How long the trip will take -- Whether the customer is a loyal, regular user (they get a discount) - -## Stack - -Will be written with Python 3.14 and some of its newest features, using an -approach called "online machine learning" => RIver library will be used for that -(https://pypi.org/project/river/) Dataset that will be used: -https://www.kaggle.com/datasets/arashnic/dynamic-pricing-dataset +Your sprint/project description goes here. From 97aa61ed3ce3c962463734a6432799ee733267f5 Mon Sep 17 00:00:00 2001 From: Gabby <74931303+radioactivityy@users.noreply.github.com> Date: Tue, 14 Jul 2026 17:06:46 +0200 Subject: [PATCH 5/5] Update sprint/project description placeholder