Code Monkey home page Code Monkey logo

Comments (4)

RichardLitt avatar RichardLitt commented on May 24, 2024 3

I'd imagine you'd have spent a good chunk of your time to colllect, read, & edit the materials to present.

Not too much - I just saw that people weren't consistent in looking for others, so I tried to make one that makes it easier.

My issue is not really an issue per se. It's close to a suggestion, so to speak.

Issues on GitHub can be enhancements. :)

I'll link to the script. thanks for the suggestion.

from meta-knowledge.

RichardLitt avatar RichardLitt commented on May 24, 2024

As it is, it should be relatively easy to pull them all; just copy and paste them into a list and use xargs with git clone. I'm not sure that doing more than listing them is something I want to do, though.

Wouldn't submoduling them mean I would need to keep updating this repo? I don't want to do that more than I have to.

from meta-knowledge.

ewnd9 avatar ewnd9 commented on May 24, 2024

I use the following script for updating repos in the same directory where the script is stored. Hope it will help, but you need to clone them manually first

#!/bin/bash

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

for i in $(ls); do
  if [ -d "$DIR/$i/.git" ]
  then
    cd "$DIR/$i"
    BRANCH="$(git symbolic-ref --short -q HEAD)"
    git pull origin $BRANCH
    cd ..
  fi
done

from meta-knowledge.

stkim1 avatar stkim1 commented on May 24, 2024

@ewnd9 Thanks a ton! That's nice of you!

@RichardLitt First of all, I appreciate your time to put together this mega-awesome list. I'd imagine you'd have spent a good chunk of your time to colllect, read, & edit the materials to present. No complains, only appreciation. My issue is not really an issue per se. It's close to a suggestion, so to speak.

As far as I reckon, meta lists such as awesome- series are there to provide convenience of time and cognitive overhead reduction to potential readers. If you could, at least, add @ewnd9's script to somewhere in README.md, that might be a smooth step forward.

Anyway, Thanks for the list 👍

from meta-knowledge.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.