James Quigley
James Quigley
  • Видео 3
  • Просмотров 1 641 973
Favorite CLI Tools - All Written in Rust
Over the past few years I've adopted a handful of various CLI tools that I lean on frequently. Some of them I discovered on my own, some from coworkers, some from discussion topics during [NYC CoffeeOps](www.meetup.com/NYC-CoffeeOps), a weekly meetup that I help co-organize. However one thing that I've noticed is that all of these tools happen to be written in [Rust](www.rust-lang.org/)! Take from that what you will, but regardless of what language they're written in, these tools are pretty neat, and I'd highly recommend them!
Blog Post: blog.quigley.codes/useful-cli-tools/
starship: github.com/starship/starship
lsd: github.com/Peltoche/lsd
ripgrep: github.com/BurntSushi/ripgrep
bat: github.co...
Просмотров: 4 315

Видео

Learning cdk8s - A quick intro (Kubernetes)
Просмотров 6 тыс.3 года назад
cdk8s is a framework for generating Kubernetes object yaml using TypeScript or Python cdk8s - cdk8s.io cdk8s GitHub -github.com/awslabs/cdk8s Kind - kind.sigs.k8s.io My terminal is zsh (ohmyz.sh/) starship (starship.rs/) with a few extensions.
Introduction to Microservices, Docker, and Kubernetes
Просмотров 1,6 млн6 лет назад
Learn the basics of Microservices, Docker, and Kubernetes. Code demo starts at 18:45. I mess up the terminal for the first few minutes, but I fix it by 21:50. Audio gets echoey a few times, but it goes away quickly. Sorry about that! Deployment YAML: pastebin.com/rZa9Dm1w Dockerfile: pastebin.com/SZA26rbg How to Containerize a Node App: nodejs.org/en/docs/guides/nodejs-docker-webapp/ Package-lo...

Комментарии

  • @pranjalruhela1103
    @pranjalruhela1103 Месяц назад

    errors errors errors

  • @tzadiko
    @tzadiko 9 месяцев назад

    Technically json is a subset of yaml

  • @Lulu_dowwg
    @Lulu_dowwg 10 месяцев назад

    Thank you keep it up

  • @rohitsuppal
    @rohitsuppal Год назад

    good one, thanks!

  • @vichu000
    @vichu000 Год назад

    fantastic demo

  • @sirbuster223
    @sirbuster223 Год назад

    I'd like to see your .bashrc. Your bash prompt is really cool. I'd like to use it myself! Do you have a tutorial that I could reference, or would you be willing to share the bash customization options that you use? Thank you.

  • @sachinpatil7681
    @sachinpatil7681 Год назад

    Ads every 5 minutes are NO NO

  • @Chivasque
    @Chivasque Год назад

    thanks man

  • @santhegudda
    @santhegudda Год назад

    You made it very simple. I want to implement on eks cluster in AWS

  • @geovanyteca3250
    @geovanyteca3250 Год назад

    Very impressive presentation. The concepts are just presented in a very clear and simple way, feel like an expert after that :D. Thank you, you deserve all the best

  • @derickpambah
    @derickpambah Год назад

    This is indeed great and amazing work. One in a million tutorials that clearly explains Docker, Microservices, and Kubernetes all together. Thank you James. Happy holidays!

  • @Juliuswawa
    @Juliuswawa Год назад

    Thanks Sir James for such a wonderful presentation! Micro service, docker and Kubernetes in just 55nins . well explained and straight to the point. i really do appreciate sir.

  • @Arsy1999
    @Arsy1999 Год назад

    world class explanation and breakdown. thank you so so much for producing this u legend!

  • @everythingdevg
    @everythingdevg Год назад

    This videos has helped me so much ,,thank you

  • @sarazehraoui1758
    @sarazehraoui1758 Год назад

    Good work

  • @okey1317
    @okey1317 Год назад

    27:48.. Without container exposing the port like 80:80,, how is the application running inside is accessible like this? I am finding this pretty hard to understand

  • @tiltok
    @tiltok Год назад

    Hey, the deployment file is outdated and throws errors, also getting ImagePullBackOff errors, can this be updated?

  • @yaminitejasri1424
    @yaminitejasri1424 Год назад

    Free complete Project Management Training if you want to be a future PM ruclips.net/p/PLgMQeoR4J3Buy9zawDYOlSynAcnt2pWJx. Consider Subscribing to channel if you like the videos and do share with yout friends

  • @mixturehub1407
    @mixturehub1407 Год назад

    ruclips.net/video/TEs7IjmAlUo/видео.html MS Word Tricks

  • @kishansatasiya
    @kishansatasiya Год назад

    Excellent work 👌

  • @alimohammadi7997
    @alimohammadi7997 Год назад

    Many thanks James, this is really awesome. I learned from your video something that the gods of kubernets and devops with plenty of certificates couldn't teach me. really simple and clear explanations. I really appreciate it.

  • @paulpasquel
    @paulpasquel Год назад

    Why just do not say "distribute architecture" style ? ...

  • @bersi3306
    @bersi3306 Год назад

    41:09 What is the purpose of "COPY package.json" (copy just package.json), if we then "COPY . ." (copy everything) at the end? Is it redundant?

  • @kiransasibhooshan7635
    @kiransasibhooshan7635 Год назад

    I am using kubectl client version (1.22) and minikube server version (1.24)...Changing the deployment.yaml mentioned at 30:07 to the following code snippet worked ... --- kind: Service apiVersion: v1 metadata: name: exampleservice spec: selector: app: myapp ports: - protocol: "TCP" # Port accessible inside cluster port: 8081 # Port to forward to inside the pod targetPort: 8080 # Port accessible outside cluster nodePort: 30002 type: LoadBalancer --- apiVersion: apps/v1 kind: Deployment metadata: name: myappdeployment labels: app: myapp spec: replicas: 5 selector: matchLabels: app: myapp template: metadata: labels: app: myapp spec: containers: - name: myapp image: jamesquigley/exampleapp:v1.0.0 ports: - containerPort: 8080

    • @kiransasibhooshan7635
      @kiransasibhooshan7635 Год назад

      When I used this image "jamesquigley/exampleapp:v1.0.0" I am getting this access denied error. It seems the image is not maintained in docker hub anymore. Substituting with another image worked to demonstrate the kubernetes part , but it cannot be used for testing the url

  • @cheluvaranga
    @cheluvaranga Год назад

    too good. Very informative and best hands-on session I have come across so far. Thanks

  • @johanBe75
    @johanBe75 Год назад

    when i create from file ruclips.net/video/1xo-0gCVhTU/видео.html i got "error: respource mapping not found for name.... ensure CRDs are installed first" what i do wrong?

  • @sergeyfilat4238
    @sergeyfilat4238 Год назад

    The best video on RUclips for this topic, why there is no more videos for others topics, the author has great talent

  • @greatlog4u
    @greatlog4u Год назад

    man you explained everything a novice needs

  • @ankitakolhe9142
    @ankitakolhe9142 2 года назад

    Very nicely explained.

  • @ismaelstangher
    @ismaelstangher 2 года назад

    VERY well explained video mixing theory and practice about Docker and Kubernetes. Congratulations !!!!

  • @venkatamunireddy3852
    @venkatamunireddy3852 2 года назад

    Great one ...really useful

  • @TheSilverGate
    @TheSilverGate 2 года назад

    Great explanation in simple terms, thank you very much.

  • @canerdogan5253
    @canerdogan5253 2 года назад

    Could you please check the Pastebin links. I can't reach the YAML files.

  • @mohorizon
    @mohorizon 2 года назад

    Very good Video ! Thanks for this.

  • @anilpatil8299
    @anilpatil8299 2 года назад

    Awesome video James. Appreciate and thanks for your effort for making such knowledgeful video.

  • @iacobaccci
    @iacobaccci 2 года назад

    Way too much introduced. Unless you already have a programming understanding of this material, it is overwhelming.

  • @samroehrich684
    @samroehrich684 2 года назад

    @JamesQuigley I went to highschool with you. Crazy that 8 years later I am watching one of your video to prep for a job interview.

  • @Roshen_Nair
    @Roshen_Nair 2 года назад

    Bookmark: 12:00

  • @kurshadqaya1684
    @kurshadqaya1684 2 года назад

    Man, you know what you are talking about! Good for you!

  • @James-og6cx
    @James-og6cx 2 года назад

    29:02 = what every single developer goes through daily and gets judged unfairly on it.

  • @erichartonomartanto6629
    @erichartonomartanto6629 2 года назад

    Thanks for the video. Besides the content, I also like your terminal theme. May you share your terminal theme please?

  • @glennmiller394
    @glennmiller394 2 года назад

    lsd is great. I'd been using exa but lsd is much more to my liking, especially the configuration abilities.

  • @sankharr
    @sankharr 2 года назад

    Nice Explaination! Thank you! :)

  • @pranavmahajan4190
    @pranavmahajan4190 2 года назад

    Hi James, this is really a great video. This video is 4 years old. Can you please create updated video on the same topic? Also, please cover other topics.

    • @jamesquigley1713
      @jamesquigley1713 2 года назад

      What other topics would you be interested in learning about?

    • @pranavmahajan4190
      @pranavmahajan4190 2 года назад

      @@jamesquigley1713 - That's great question. Thanks for the question. I would say simple topics like how to dockerize Java Springboot applications. How to use Kafka efficiently? Or other topics related to SpringBoot, Docker, Micro-services etc

  • @hrsh3329
    @hrsh3329 2 года назад

    texure of your voice is awesome🎊

  • @vikaspanwar2537
    @vikaspanwar2537 2 года назад

    here's my perspective on why micro services may not be the right choice for you - ruclips.net/video/LZPsyX0J9DM/видео.html

  • @YouhanaSheriff
    @YouhanaSheriff 2 года назад

    how to publish CLI apps/ tools that js written in Rust. so others can use it??

  • @YouhanaSheriff
    @YouhanaSheriff 2 года назад

    how to publish CLI apps/ tools that is written in Rust. so others can use it??

  • @bmassioui
    @bmassioui 2 года назад

    Thank you James for this amazing video.