Hey, happy to see you back! I've been using your windows manager for more than 1,5 years and can't imagine now using mac without it! When I heard about the book, I knew that it's something high quality. I've just checked it and everything: explanation, design, interactivity - just perfect! So after reading few free articles I immediately bought it! I would love to see in this book later maybe more in depth explanations for each topics and maybe more complex real-world examples. Of course for higher price, but I believe for such high quality content there are a lot of people who are ready to pay more than just 19 dollars!
Man I love you, just got my first job a month ago and you are the guy motivating me to go forward cause I haven't done anything because all of the access that I don't have, thank you very much. Love from Portugal
I am reading the free resources in your book and I am blown away by their quality! This book is a gem, I am considering to buy it with the source code. I really like your videos too, they are inspiring and relaxing at the same time 🎉
Great job ! As a student who is doing backend projects i discovered from a lot from this,and your project structure is awesome . I am sure that I can learn a lot from you. ✌
It does not matter that much, but I think you’ve overloaded the term proxy a bit:) Usually a proxy is some kind of optimization on top of the main resource (caching, balancing, routing, etc.), proxy has very little state and almost “transparent”. What you’ve built I think fits the definition of a middleware or just a micro-service. Again, sorry for nitpicking on terminology, the important thing is that it works and does the job. Thank you for the video!
Haha fair comment 😃 It is a middleware of sorts for sure. It works for my case, but it may not be the first choice for many people because on the surface it mixes too many concerns 😃
Ah, a new video finally dropped! The architecture of the project you have there is interesting. Have you considered getting a pentest on it or, at least, a vulnerability assessment?
Hey it's MVP for now, but that is an excellent suggestion! I will be working on improving the security and stability for sure in the next couple of months 👍
@@withmarko Thanks for the response! Once you have it going, it's a good step on the development roadmap (implementing security measures + testing/APTe). Wish you all the best with the project, it really looks cool and technically interesting! :)
I am wondering why you chose to save the access token in the local storage rather than on a http-only cookie. Wouldn't it be more secure out of the box?
Hi Marko, Nice video about backend arhitecture and the book looks like Tailwind book, and I love it the styles which had you used. Have you changed your Macbook? I see the color of the macbook is not familiar and is 14 inch. Why have you changed the size of the macbook from 16 inch to 14 inch? I'd love to see the answer in comments or in another future video. Great video
Okay so I need a little help with vscode when working with Json files Let's say I add info for 64 bars so "bar 1" thru "bar 64" .. now because those bars keep repeating themselves I need to add "bar 1a" thru bar 64 and then "bar 1b" ... Now I do not want to do that with code rather change or should I say add a letter to all 64 bars... I can't use change all ocurances..but because this new data is always added to the end of the Json file I simply want to start with "bar 1x" and change this all the way down to 64 ... Is this possible ? I tried something that ChatGPT suggest but I get no match .. please help 😎
Another great video! I will also be taking a look at your book. By the way, did the vlogs featuring your workplace get unlisted/remove? I can't seem to find them on your channel anymore.
@@withmarko Ah gotchu. I really enjoyed those vlogs where you sort of start from home, go somewhere, do some work, and then go back home and do some more work.
What you just did is called Proxy based Authentication AWS got a nice article about it We do identify Auth in Rev Proxy or APIM So before you hit any internal server u should present a token which get verified by an IAm solution The diff here is that the proxy itself does Auth (so its the IDP or IAM I would imagine does authorization as well) which’s not the best thing surly but for your case is more than sufficient
Hey yeah exactly 👍 but I also decided to add features like payments and an admin dashboard because so many of my apps need exactly the same stuff all the time. At scale this is not ideal, but for my levels of traffic it’s totally fine 😄
Just curious, what made you switch to the 14” MacBook Pro? And do you prefer the smaller form factor as a software engineer after using both the 14” and 16”? Thanks for the great content!
Is there any validation in place, that the headers you mentioned cannot be set from outside? As this would lead to huge challenges concerning XSS or user impersonation
Your book is really well done. I’m not the target since I already saw a lot and just a quick google search and maybe a little LLM used to refresh my memory but the interface and the topics are nice. I just had a question about your pricing. Do you plan in a future to raise the price ? Like sais I’m not buying yet since I just don’t need it now but maybe one day I could and that could be nice the source code tiers don’t change of price with all those neat pictures.
Hey thank you 🙏 yes this price is the early access price, because I am adding some final touches to certain pages, but soon, when I release the video walkthrough the prices will go up a bit, not by much though, and occasionally there will be discount codes randomly in my videos 👍
Hi man, how are you? Can you tell me what theme you use in vs code and how you made the explorer, search, and source control like this and made them very beautiful and cool and I liked it. I use one dark pro darker myself, but this is great, thank you for telling me, friend
sounds like regular micro-service architecture. the only difference is usually proxy/gateway doesn't handle anything by itself, but uses upstream for it. if you put your auth and payment logic into upstream on its own separate from other upstreams it would be classic microservices or am i missing something?
Hey yes, that's a valid observation. It's very common that microservice architectures end up looking like star topology where everything depends on the ahem... user service 😃 It is possible to avoid that of course, but I decided it's not a problem worth solving in my case, and so I reduced the number of network hops by combining the proxy / gateway and the user + payment service, essentially.
Hey Marko, love your videos! Totally unrelated question, how do you shoot your videos? Do you just have a camera on you when you work outside? Do you have any BTS perhaps on socials? Just curious.
It's quite nice, but downtown areas can be a hassle as well. I prefer to stay at home if I can in the winter, but I do go out to the water to get some nice shots for the video 😃
hiii marko, i have some question about the degree or fundamental stuff that I had to know to be a software engineer . i am kind of in a stage where I need to choose a university and its programme and I'm confused about it hahahahaha
Hey I'm pretty sure a computer science degree will get you where you want to be if you are looking to become a software engineer. I personally wouldn't go for AI or ML stuff.
Đe si Markooo😂 As soon as I saw you uploaded a new video, I thought you are the person who can help me. I need help choosing a topic for my thesis. If you have any ideas, please let me know, something interesting or something you would work on if you had to do it now. Note: no AI, ML😂 Now that I’ve commented, I’ll go watch the video.😂
Hej pozdrav! 😃 I'm not sure what your area is, but assuming it's CS, I'd probably work on something related to security, or perhaps digital identity to prevent impersonation scams in the age of AI. Something like digital signatures, fingerprinting, etc. is always interesting to me personally.
Whattt??? You just really blowed my mind with this. For one of my work project we are doing this extact same thing but without a db to proxy. We have a helper function(more like a microservice, we call him func) it will fetch all the data for us and embed it to internal apps. But this thing actually is a game changing technology, the part of modifying response is like no-brainer. How could no one on the internet could have thought about this? My man you just have my fullest of respect 📈 Please if you are making a writing any blog post, make a post about this. This is something tech nerds like me will love to see.
Hey thanks for the nice comment 🙌 most people end up building the same thing, I just decided to package a few of those helpers together, to use in other projects, I’ll potentially write a blog once I’ve had some more time to see how it works in practice. Thanks again for the comment 🙏🙏
@@withmarkoyeah thats need and the essantion part! Great work! for my experience all my project manger have at any time forgotten the middleware only when there is a view, they don't have it
Classic custom reverse proxy. We don’t think a lot about them since are applications are generally standalone and independent but like show we can do a lot of things when we customize one. The just con is that we will make more networks request and you need to configure everything to TRUST that the proxy is yours proxy but except that. In certain case yours. It’s magic. And side note, it’s simple for example with nginx and caddy to have a reverse proxy that just protect a page with http basic authentication. What a powerful power !
Hey yes, the trust part is very important, and right now, all the upstream services are only visible from the private network, so it’s impossible to spoof the headers from outside, but if they weren’t there are of course solutions: could pass a custom header with a secret that only the proxy and the upstream know. Or even better there can be a request signing, which is not currently implemented, but I am thinking about adding in the future 👍
@@withmarkoyes. And better that’s what JWT are made for. You could share a secret between all your servers and make them generate JWT to make sure those messages comme from them.
Hey I’m making a second video with it soon. It’s a great machine, but a colleague of mine asked to buy it from me so I’m going to sell it when I’m done testing. Unfortunately, I already had ordered the new Mac before LG contacted me to send me this one. Laptop for laptop they are both good, but because everything personal I have is in iCloud it’s hard for me to make the switch so quickly, plus I want to keep developing the Mac app I have 👍
@withmarko alright 👍 I believe that Mac's make some people productive I am willing to buy one two Which model do you think I should go for! Us a sec year student with a student salary. I am a cs student that is why I am watching your content and the new book I am checking it out it is so cool!.
Hey I did, when it came out, but I didn’t have time to make a video about it. I will make one soon, maybe like a 3 month review or something like that 😃
@withmarko yes but you can show your city and beauty of your country. Norway is one of the happiest countries in the world. As an Indian ,I work in a Finnish company and their work life balance policy is really great. Cycling and gadgets and all other stuff please bring that 2022 era.💕
Finally you found your youtube password
Haha, working on getting back to posting, thanks for the comment 🙏
Haha best comment
Really inspired by how organic and real your video feels. Its like someone is talking to me like a friend.
Hey thanks, I appreciate this comment, glad you like it 😊
So glad you came back!
so your proxy is more of a gateway rather than a proxy
Yeah good observation 👍👍
or a Middleware
I really love the warmth in your videos. I sometimes even rewatch some of them just to relax. Amazing content Marko!
Hey thank you 😊🙏
Hey, happy to see you back! I've been using your windows manager for more than 1,5 years and can't imagine now using mac without it! When I heard about the book, I knew that it's something high quality. I've just checked it and everything: explanation, design, interactivity - just perfect! So after reading few free articles I immediately bought it!
I would love to see in this book later maybe more in depth explanations for each topics and maybe more complex real-world examples. Of course for higher price, but I believe for such high quality content there are a lot of people who are ready to pay more than just 19 dollars!
Man I love you, just got my first job a month ago and you are the guy motivating me to go forward cause I haven't done anything because all of the access that I don't have, thank you very much. Love from Portugal
Hey wow, congrats on the job! 👏 I'm excited for your career! 🇵🇹
Marko: "It's not the best solution". My Brain: if it works, it's the best solution 😅
Haha, if it works don’t touch it 😄
@@withmarko exactly!
I am reading the free resources in your book and I am blown away by their quality! This book is a gem, I am considering to buy it with the source code. I really like your videos too, they are inspiring and relaxing at the same time 🎉
Been a while, but no matter how long it takes, I just love the videos. welcome back ✨🦄
Great job ! As a student who is doing backend projects i discovered from a lot from this,and your project structure is awesome . I am sure that I can learn a lot from you. ✌
Hey thanks, I'm still learning myself, but for now this one solves my use case 😃
It does not matter that much, but I think you’ve overloaded the term proxy a bit:) Usually a proxy is some kind of optimization on top of the main resource (caching, balancing, routing, etc.), proxy has very little state and almost “transparent”. What you’ve built I think fits the definition of a middleware or just a micro-service. Again, sorry for nitpicking on terminology, the important thing is that it works and does the job. Thank you for the video!
Haha fair comment 😃 It is a middleware of sorts for sure. It works for my case, but it may not be the first choice for many people because on the surface it mixes too many concerns 😃
I've been watching you since the beginning and even though I have improved a bit, every time I watch one of your videos I feel stupid 🗿. Respect
The man is back. Great seeing you again
Hey thanks for the comment 🙌
Nice job Marko,
I'm buying the book, everything is in the one place, hvala legendo
Hej hvala puno 🙏
Keep going, your content it's really good. I will check your book!
Hey thank you 😊🙌
Another great video! Thank you for always putting out
Hey thanks for the nice comment 🙌
Is that a new MacBook Marko? We finally upgraded the M1?
Hey yes actually, I'm working on a video about it 😃
Super awesome Marko! Wow. 50k monthly users!
This evening is going to be awesome!
Hey thanks for the comment 🙌
ur book looks awesome. imma be reading it after finals.
Hey thank you, I appreciate it 🙌 This is early access, I’m still improving it 😃
so cool! I love Miro, perfect combo!
Ah, a new video finally dropped! The architecture of the project you have there is interesting. Have you considered getting a pentest on it or, at least, a vulnerability assessment?
Hey it's MVP for now, but that is an excellent suggestion! I will be working on improving the security and stability for sure in the next couple of months 👍
@@withmarko Thanks for the response! Once you have it going, it's a good step on the development roadmap (implementing security measures + testing/APTe). Wish you all the best with the project, it really looks cool and technically interesting! :)
I am wondering why you chose to save the access token in the local storage rather than on a http-only cookie. Wouldn't it be more secure out of the box?
Hi Marko, Nice video about backend arhitecture and the book looks like Tailwind book, and I love it the styles which had you used. Have you changed your Macbook? I see the color of the macbook is not familiar and is 14 inch. Why have you changed the size of the macbook from 16 inch to 14 inch? I'd love to see the answer in comments or in another future video. Great video
I'm impatiently waiting for the new laptop video haha
welcome back
"Raw Dogging" at 8am is crazy! 🤣
Finally you bought a new Macbook🎉
Hey yes, I'm working on the unbox video 😃
Love your videos man keep up!!
Thank you, I’m working hard to get back to RUclips 😃
i just go my new first macbook m4. Should i plug in it when i use ? i hope u have video about it🔥
Hey not really, just when it’s low on battery. Congrats on your new machine 😃
Okay so I need a little help with vscode when working with Json files
Let's say I add info for 64 bars so "bar 1" thru "bar 64" .. now because those bars keep repeating themselves I need to add "bar 1a" thru bar 64 and then "bar 1b" ... Now I do not want to do that with code rather change or should I say add a letter to all 64 bars... I can't use change all ocurances..but because this new data is always added to the end of the Json file I simply want to start with "bar 1x" and change this all the way down to 64 ... Is this possible ? I tried something that ChatGPT suggest but I get no match .. please help 😎
I am a cs student your vidéos encourage me a lot thanks
Thanks for the comment, I’m excited for your cs journey 🙌
Another great video! I will also be taking a look at your book. By the way, did the vlogs featuring your workplace get unlisted/remove? I can't seem to find them on your channel anymore.
Hey thanks! Yes they were removed, because the company requested they get removed
@@withmarko Ah gotchu. I really enjoyed those vlogs where you sort of start from home, go somewhere, do some work, and then go back home and do some more work.
Hi Marko. What is the name of the theme you use in vs code
What you just did is called Proxy based Authentication AWS got a nice article about it
We do identify Auth in Rev Proxy or APIM
So before you hit any internal server u should present a token which get verified by an IAm solution
The diff here is that the proxy itself does Auth (so its the IDP or IAM I would imagine does authorization as well) which’s not the best thing surly but for your case is more than sufficient
Hey yeah exactly 👍 but I also decided to add features like payments and an admin dashboard because so many of my apps need exactly the same stuff all the time. At scale this is not ideal, but for my levels of traffic it’s totally fine 😄
Hi Marko, what's your vs code color theme?
What is that vs code theme called? Looks very good
Maestro is back :)
🙏
Cool! Thanks to the sponsors for reminding Marko of his RUclips password😅
I am working hard on getting back to regular posting schedule! 🙏
Do you find it better to code on 14 inch or 16 inch Macbook?
How do you choose the music for videos? That sounded similar to some other RUclips channels.
Hey it’s just the free RUclips audio library that’s why 😄
Developing an app.
Writing a book.
Managing it.
RUclips.
Marko is incredible.
Hey thank you for the comment, I'm trying hard 🙏😃
Just curious, what made you switch to the 14” MacBook Pro? And do you prefer the smaller form factor as a software engineer after using both the 14” and 16”? Thanks for the great content!
Hey yes, the 16 was a bit too big to carry around together with my camera when I’m vlogging 😃
@@withmarko Okay cool, thanks for the input!
Good videos Marko!
Thanks 🙏😃
Is there any validation in place, that the headers you mentioned cannot be set from outside? As this would lead to huge challenges concerning XSS or user impersonation
Hey that’s a great question! The headers related to the user are always overwritten by the proxy no matter what comes in 👍
which vscode theme do u use? very goood!
It’s the default cursor theme
Hey Marko, what's the VScode theme ?
Default cursor dark theme 😃
0:14 and 0:17 which theme is that?
Default cursor dark theme 😃
What platform do you use to release your book?
The book is hosted behind the proxy described in the video, and the book itself is a custom codebase 👍
hi! what is your vs code theme? really nice looking
Hey it’s the default cursor editor dark theme
Your book is really well done. I’m not the target since I already saw a lot and just a quick google search and maybe a little LLM used to refresh my memory but the interface and the topics are nice.
I just had a question about your pricing. Do you plan in a future to raise the price ?
Like sais I’m not buying yet since I just don’t need it now but maybe one day I could and that could be nice the source code tiers don’t change of price with all those neat pictures.
Hey thank you 🙏 yes this price is the early access price, because I am adding some final touches to certain pages, but soon, when I release the video walkthrough the prices will go up a bit, not by much though, and occasionally there will be discount codes randomly in my videos 👍
Hi man, how are you? Can you tell me what theme you use in vs code and how you made the explorer, search, and source control like this and made them very beautiful and cool and I liked it. I use one dark pro darker myself, but this is great, thank you for telling me, friend
Hey this is the cursor editor with default setup 👍
Did you update your computer ? is the 14 inch version better than the pervious 16th inch mac you had ?
Hey yes I did, I'm working on the unbox video + impressions, just not ready yet 😃
@@withmarko Waiting!
@Marko, if i buy the middle version of the book now will I have to pay the full price if I get the top tier? And congrats on the book of course.
Hey thank you! Great question, there will be upgrades available to purchase only the difference you want. 👍
@@withmarko Thanks
sounds like regular micro-service architecture. the only difference is usually proxy/gateway doesn't handle anything by itself, but uses upstream for it.
if you put your auth and payment logic into upstream on its own separate from other upstreams it would be classic microservices or am i missing something?
Hey yes, that's a valid observation. It's very common that microservice architectures end up looking like star topology where everything depends on the ahem... user service 😃 It is possible to avoid that of course, but I decided it's not a problem worth solving in my case, and so I reduced the number of network hops by combining the proxy / gateway and the user + payment service, essentially.
If token is passed to the upstream service, do we need to pass X-User-id etc ? JWT token itself can contain that info rite ?
Hey that’s 100% correct. The reason I have user id as well is for convenience, that way the upstream service doesn’t even need to parse the jwt.
What is the theme? It's beautiful.
Hey this is the default cursor dark theme 😃
Hi, the name is Anysphere Dark I think
Hey Marko, love your videos! Totally unrelated question, how do you shoot your videos? Do you just have a camera on you when you work outside? Do you have any BTS perhaps on socials? Just curious.
Hey great question! I went through many setups but eventually I just started using a tripod in front of me and a standard camera 😃👍
Marko, the unboxing video? Looks like an M4 machine.
Hey coming soon, I’m working on it 😃
When did you bought a new mac?
Hey I bought it when it came out, but I didn’t have enough time to make a video about it. I am still working on that 😄
Ooo, a new laptop, why have you changed the previous one?😅
Which coffee shop is that?
Hey this is Kaffebrenneriet in Barcode in Oslo 😃
@@withmarko highkey jealous of your lifestyle in norway
It's quite nice, but downtown areas can be a hassle as well. I prefer to stay at home if I can in the winter, but I do go out to the water to get some nice shots for the video 😃
hi, Marco, tell me, what is your theme in the whole code?
Hey it's the default dark theme for cursor
hey Marko :)
Which browser do you prefer?
Hey as of now I’m on safari. 👍
hiii marko, i have some question about the degree or fundamental stuff that I had to know to be a software engineer .
i am kind of in a stage where I need to choose a university and its programme and I'm confused about it hahahahaha
Hey I'm pretty sure a computer science degree will get you where you want to be if you are looking to become a software engineer. I personally wouldn't go for AI or ML stuff.
When a tour of the programs you use daily? You have a very interesting minimalist style.
Hey I will make a video about that soon, thanks for the idea 🙌
Hello, please send configuration vscode 🙏
Đe si Markooo😂
As soon as I saw you uploaded a new video, I thought you are the person who can help me. I need help choosing a topic for my thesis. If you have any ideas, please let me know, something interesting or something you would work on if you had to do it now. Note: no AI, ML😂
Now that I’ve commented, I’ll go watch the video.😂
Hej pozdrav! 😃 I'm not sure what your area is, but assuming it's CS, I'd probably work on something related to security, or perhaps digital identity to prevent impersonation scams in the age of AI. Something like digital signatures, fingerprinting, etc. is always interesting to me personally.
hmm, now u got me thinking. Thanks
Looking awesomeeeee 🙃
Thanks 🙏😃
why did you down-size the macbok?
Great question. The 16 is a bit too bulky when I have to carry it together with all the camera gear 😃
Whattt??? You just really blowed my mind with this.
For one of my work project we are doing this extact same thing but without a db to proxy. We have a helper function(more like a microservice, we call him func) it will fetch all the data for us and embed it to internal apps. But this thing actually is a game changing technology, the part of modifying response is like no-brainer. How could no one on the internet could have thought about this? My man you just have my fullest of respect 📈
Please if you are making a writing any blog post, make a post about this. This is something tech nerds like me will love to see.
Hey thanks for the nice comment 🙌 most people end up building the same thing, I just decided to package a few of those helpers together, to use in other projects, I’ll potentially write a blog once I’ve had some more time to see how it works in practice. Thanks again for the comment 🙏🙏
which vs code theme u are using ?
Hey it's the default dark theme for cursor
nice! It sounds like a proxy and middleware had a baby 😂
That’s about right 😃
🎉🎉
Where can I learn to code like you ?
Hey there are plenty of free resources like freecodecamp.org but also the book in the description has a few free pages 👍
whats ipad do you have?
It’s the iPad Air 4 from a few years back
sooo, is just a middleware software?
i have build this for so many companies because of strange testing environments...
Hey yes, it’s just middleware with a convenient dashboard that I needed in the first place 😄
@@withmarkoyeah thats need and the essantion part! Great work!
for my experience all my project manger have at any time forgotten the middleware only when there is a view, they don't have it
Classic custom reverse proxy. We don’t think a lot about them since are applications are generally standalone and independent but like show we can do a lot of things when we customize one. The just con is that we will make more networks request and you need to configure everything to TRUST that the proxy is yours proxy but except that. In certain case yours. It’s magic. And side note, it’s simple for example with nginx and caddy to have a reverse proxy that just protect a page with http basic authentication. What a powerful power !
Hey yes, the trust part is very important, and right now, all the upstream services are only visible from the private network, so it’s impossible to spoof the headers from outside, but if they weren’t there are of course solutions: could pass a custom header with a secret that only the proxy and the upstream know. Or even better there can be a request signing, which is not currently implemented, but I am thinking about adding in the future 👍
@@withmarkoyes. And better that’s what JWT are made for. You could share a secret between all your servers and make them generate JWT to make sure those messages comme from them.
Remember to check me out as the description says!
100% 😃
I understood nothing, still a fantastic video!!
First my idol Marco! 👨💻
Hey thanks, that's very kind! 🙏
Proxy server is a good idea
Its something I found works well for my silly projects 😃
definitely "one of the solutions of all time" lol
I tough Marko started speaking and writing in Portuguese 😂
RUclips automatically translated the content
lol, that’s hilarious 😄
2 videos in 10 days! Lfgg
Haha I’m trying hard 😃 thanks for the comment 🙌
Pozdrav brate, pretpostavljao sam da si nas, ali evo tek sad se uvjjerio (prezime u videu). Odakle si?
Hej pozdrav! Iz Nisa sam 😃
when are we getting new wallpapers
Soon! 🙌
Let's goo
Hey thanks for the comment 🙌
what about the windows pc I thought you liked it!
Hey I’m making a second video with it soon. It’s a great machine, but a colleague of mine asked to buy it from me so I’m going to sell it when I’m done testing. Unfortunately, I already had ordered the new Mac before LG contacted me to send me this one. Laptop for laptop they are both good, but because everything personal I have is in iCloud it’s hard for me to make the switch so quickly, plus I want to keep developing the Mac app I have 👍
@withmarko alright 👍 I believe that Mac's make some people productive I am willing to buy one two
Which model do you think I should go for! Us a sec year student with a student salary. I am a cs student that is why I am watching your content and the new book I am checking it out it is so cool!.
You bought a new Mac and didn’t do an unboxing?
Hey I have the unboxing recorded, and I will post a video soon, probably something like: "my first month with the new Mac" or similar. 😃
ohh wait you bought a new macbook?
Hey I did, when it came out, but I didn’t have time to make a video about it. I will make one soon, maybe like a 3 month review or something like that 😃
@ ya that’s a good idea
Hi ! Love your content ! Interested in collab? :)
How am I not the first to comment 😂
Hey you are the first human, some bots spammed the video for no reason 😃 Thanks for the comment! 🙏
M4 pro good computer but still not worth upgrading
Yeah, I’d say coming from M1 Pro, it’s only occasionally that I notice a performance improvement. I upgraded for another reason, though 😃
Thanks for another video filled with ads
I also shared more in this one video for free than you shared on your channel since the beginning of time.
People are missing Day in a life videos , Most of the people are interested in those kind of videos.
Hey I like making those as well, but I'm not allowed to record my office anymore 🙈
@withmarko yes but you can show your city and beauty of your country. Norway is one of the happiest countries in the world. As an Indian ,I work in a Finnish company and their work life balance policy is really great. Cycling and gadgets and all other stuff please bring that 2022 era.💕