datatime27 / videos

This is the repository for various coding projects that I use in my videos
49 stars 6 forks source link

What is the bible-code file? #1

Open Blue-Robin-Taken opened 3 months ago

Blue-Robin-Taken commented 3 months ago

I'm just a bit confused as to what it's supposed to be

datatime27 commented 3 months ago

It's the code I used to make this video: https://youtu.be/E808Wjbxq-s

Blue-Robin-Taken commented 3 months ago

Thanks! Also, have you thought about splitting up all the projects into multiple git repos instead of one singular repo?

datatime27 commented 3 months ago

Won't that make it more difficult to track things?

m1ten commented 3 months ago

Hi, I think mono-repo is better for small projects initially, but it would be better to organize in some way.

silvncr commented 3 months ago

Won't that make it more difficult to track things?

Moving each folder to a separate repository would be better since each project is unrelated. This would allow you to have individual statistics, issue trackers, etc, for each project. It would also make your profile look more full, especially once people interact with each repository separately.

Headedbranch225 commented 3 months ago

the other advantage is it makes it easier to get the repos you want, by just doing git clone https://github.com/datatime27/<repoName> instead of trying to just get the one you want

datatime27 commented 3 months ago

I see. I'll try doing that moving forward. Thanks