Тёмный
Eric Tech
Eric Tech
Eric Tech
Подписаться
On this RU-vid channel, it contains video related to technology, software development, and careers in tech.
Solidity Complete Tutorial (Remix IDE)
19:14
Месяц назад
Common Linux Commands using Ubuntu
11:05
2 года назад
Комментарии
@jennawang4267
@jennawang4267 День назад
小哥哥讲的好清楚啊! 什么时候可以当面给我讲一下呀 啊哈哈哈哈哈哈哈哈
@jennawang4267
@jennawang4267 День назад
哪个帅气的小哥哥发的视频啊! 哇 好厉害的小哥哥哦
@anishpathak2648
@anishpathak2648 2 дня назад
great video nicely explained
@hungvophi9516
@hungvophi9516 2 дня назад
Great tutorial !!!
@thekidlaori6434
@thekidlaori6434 9 дней назад
Very detailed and best video that I have seen so far related to docker
@Matheus_Peixoto
@Matheus_Peixoto 15 дней назад
Great video! Thank you! Just a heads up, the video has some weird muffled sounds here and there that seems to be coming from taps to the microphone or something else.
@erictech8487
@erictech8487 11 дней назад
Thanks for the tip! For my future videos, I will try to prevent that
@krishiatrocities5401
@krishiatrocities5401 Месяц назад
In DB we have 3 values, but in redis it’s coming one value only, I need to set first values ,,,how?
@IleniaQuintero
@IleniaQuintero Месяц назад
Hello, I was looking at your video channel. We may be helping a company that uses secure images to increase supply chain security and help cloud native development. Would you be willing to help try their software, make a video, and help show devs how to use their tools? This is not an offer, but just to start a conversation about your willingness to take on sponsorship. The video can be from 5 to 10 minutes long. You'd have a chance to look at their technology and decide if it's the type of software that you'd be interested in covering in your channel. Please provide us with your pricing. Respectfully,
@BenjaminLi6
@BenjaminLi6 Месяц назад
Love this topic and your video but would be helpful if you could share some examples of using web components instead of React functional components being imported into another React project.
@SatyamSharma-fc9ty
@SatyamSharma-fc9ty Месяц назад
Heard about this for the first time. I have a few questions. How would this work if 2 components are within the same window like the example of related products and the current product? Would we need to create a parent port that will run both the child ports/apps? And how efficient would it be as compared to making different components within the same structure and not different apps?
@brendanfay2017
@brendanfay2017 Месяц назад
great content
@EaswaranParamasivam
@EaswaranParamasivam Месяц назад
Awesome!! Neat and clear explanation!!!
@r13aero
@r13aero 3 месяца назад
very clear video, thank you
@jimmiereilly
@jimmiereilly 6 месяцев назад
"Promosm"
@Marius_The_Norse
@Marius_The_Norse 6 месяцев назад
Ah. Ah. Ahm. Ehm. Ahm... 😂
@AmitabhSuman
@AmitabhSuman 7 месяцев назад
Hi, thanks for this great video. It was really very helpful. But the reason why I came to this video is to see how this transfer of files happen after docker-compose. Issue I am facing is, when I save my code, it does not reflect in docker container. I need to manually perform everything. Can you please help me resolve it.
@RazaQureshiSNC
@RazaQureshiSNC 7 месяцев назад
Simple explanation. Good work. Thanks
@kvelez
@kvelez 7 месяцев назад
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { internal class PNG : ICompressor { public void Compress() { Console.WriteLine("Compressing .png image."); } } } using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { internal class JPEG : ICompressor { public void Compress() { Console.WriteLine("Compressing .jpeg image."); } } } using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { internal enum ImageTypes { JPEGs, PNGs } } using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { internal class ImageStorage { public ICompressor instance; public void SelectImage(ImageTypes type) { try { switch (type) { case ImageTypes.JPEGs: instance = new JPEG(); break; case ImageTypes.PNGs: instance = new PNG(); break; default: Console.WriteLine("Image extension not in catalog."); break; } } catch (Exception) { Console.WriteLine("Image catalog doesn't support the specified format."); } instance.Compress(); } } } using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { internal interface ICompressor { void Compress(); } } using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { internal class Program { static void Main(string[] args) { var imageGallery = new ImageStorage(); imageGallery.SelectImage(ImageTypes.PNGs); } } }
@rahulnikam1279
@rahulnikam1279 9 месяцев назад
Great video 💯❤
@user-yy5my3di9x
@user-yy5my3di9x 10 месяцев назад
Great explanation
@satyanarayangoswami823
@satyanarayangoswami823 10 месяцев назад
Hate to say it but you just blantantly copied brad traversy's video from a few years ago
@pauldudich
@pauldudich 10 месяцев назад
RIGHT!
@vincenteinnoc
@vincenteinnoc Год назад
Short and precise explanation 👍
@dhreetimanprasad6180
@dhreetimanprasad6180 Год назад
Go learn first then make video
@giovannicastiglioni4084
@giovannicastiglioni4084 11 месяцев назад
"Right?" x10 Hate to be a hater but jeez this is so hard to follow
@godfathermikal
@godfathermikal Год назад
Thank you so much. Really showed concise example for the monitor pattern that I was looking for without spending an hour talking. This was so helpful! Thanks!
@serenaS8406
@serenaS8406 Год назад
It's great content this video is teaching. Thank you!
@andrewandrosow4797
@andrewandrosow4797 Год назад
The code not works. Firstly - there must be a call of the method 'client.connect()' and exists methods can be corrected - because a new redis library has differences.
@none0n
@none0n Год назад
Concise and convincing, thanks.
@RikiSipahelut
@RikiSipahelut Год назад
thanks bro, for this vidio
@mohammedlamine8545
@mohammedlamine8545 Год назад
Text size too small
@carljustinemosquida4727
@carljustinemosquida4727 Год назад
Thanks for making this videos fast.
@rohithgoud30
@rohithgoud30 Год назад
eric content and way you explain is awesome. You can make some good content push yourself. You deserve more audiences
@Daniel83021
@Daniel83021 Год назад
1 of the bests explanations I found.
@DeepakShaw
@DeepakShaw Год назад
does it support .net 7?
@SojournerDidimus
@SojournerDidimus Год назад
Why does the highlighter has write and erase if neither is related to what we expect of a highlighter? It seems you have made yourself an anti pattern instead of an example of the open/close principle.
@sushantsakolkar3209
@sushantsakolkar3209 Год назад
Nice project, sorry for being an ass just wanted to correct one speaking mistake which I observed in all your videos. Instead of “can be able to” - “are able to” OR “can”
@chowder9576
@chowder9576 Год назад
LITERALLY WAS JUST THINKING ABOUT SWITCHING FROM SWE TO PM 🤯🤯 Just found ur channel and love ur content! Super helpful 🚀🚀
@alfonsomunoz5456
@alfonsomunoz5456 Год назад
Good video. Concise explanations. I really enjoyed it. Thanks!
@esdrassousa1931
@esdrassousa1931 Год назад
nice
@youtubegarbage4u
@youtubegarbage4u Год назад
considering he is only at google for just coupl eof weeks only, this video should have been more on "how did he get the job starting as a staff software engineer at google?" or wait like a year before then sharing what is it like..anyways good video regardless
@DevMentor_Hub
@DevMentor_Hub Год назад
Thanks for clearly explanation
@saeeduchiha5537
@saeeduchiha5537 Год назад
Great quick intro! I was waiting for you to explain how to handle when the database record is modified on the actual database
@KingBarath125
@KingBarath125 2 года назад
This is a nitpick, but I think the interviewees and audience would appreciate seeing your face in the video as well as the guests so it seems like we're watching a conversation. Great video Eric!
@berkackgoz7825
@berkackgoz7825 2 года назад
Thanks for the clear explanation! Just out of curiosity, could we use Factory Method design pattern here to abstract that compression logic from the main class as well? I think we could have a factory that returns compression classes based on the given type (essentially we’d move switch to factory). Each compressors could use the same interface and that could allow factory to work with them and call their methods regardless of their implementation details. And this could be injected from outside just like how you do for strategy pattern. Would this approach be a viable alternative? Just trying to get a basic understanding of different patterns, sorry if this came across a little out of context.
@ashtonjackson805
@ashtonjackson805 2 года назад
how would you Combine observer Pattern and strategy pattern ?
@adarshchhokar3818
@adarshchhokar3818 2 года назад
This is a good project. Can’t believe you built this in a month.
@SweatySockGaming
@SweatySockGaming 2 года назад
Eric, I think this channel and its videos should be on your main channel
@alexanderbobo5307
@alexanderbobo5307 2 года назад
excelent video mate
@andrewrayanit
@andrewrayanit 2 года назад
Clean and clear explanation.
@nehemoyiayoung4064
@nehemoyiayoung4064 2 года назад
This was a great talk! I loved what you said about the 4 categories of daily work for solutions architects, how do you typically go about minimizing the "unexpected work" of fixing bugs and other challenges that might derail your workflow?