.NET in 300 seconds

  Рет қаралды 90,504

Amichai Mantinband

Amichai Mantinband

Күн бұрын

Пікірлер: 58
@gianlucalocri
@gianlucalocri Жыл бұрын
Just started your DDD course. It seems amazing! Btw, your teaching skills are superb! Thanks you!!!
@amantinband
@amantinband Жыл бұрын
Awesome to hear 🫶🏼
@joemboho
@joemboho 10 күн бұрын
What the link to his course on Domay-jurin-dezi 0:36
@noahg2
@noahg2 11 ай бұрын
The problem is not with the current ecosystem but it's with the past, .net framework is still used in a lot of legacy application and some companies have no plans moving those apps to new ecosystem, they don't have the proper resources for that. If you're a dotnet developer now there's a good chance you'll be dealing with legacy apps throughout your career, it's not going away.
@geeksy2278
@geeksy2278 10 ай бұрын
I cannot confirm. I work with many companies in the .NET space and I haven't seen a legacy .NET app in the past 5 years.
@shafialanower3820
@shafialanower3820 10 ай бұрын
@@geeksy2278I’m assuming most companies are using .Net core rn instead?
@xerox-f1p
@xerox-f1p 9 ай бұрын
​@@geeksy2278what you mean
@GuitarxPlayax
@GuitarxPlayax 8 ай бұрын
Fake news
@AchmadBadra
@AchmadBadra 8 ай бұрын
Is just microsoft hater sentiment, who complaining why linux is not monopoly desktop segment.
@AminVincent
@AminVincent Жыл бұрын
clean explanation thanks
@Kannamusica
@Kannamusica Жыл бұрын
thanks for your explanation. it was quick and detail.
@AK-vx4dy
@AK-vx4dy Жыл бұрын
I use Rust and don't hate C#
@405192802
@405192802 Жыл бұрын
Nice intro to c#, when will you teach us your vscode keybinding? can not wait for it!
@amantinband
@amantinband Жыл бұрын
Most of the key bindings are vim. On top of that, I only have a few for navigating between the editor, the folder viewer, the terminal, and for opening some plugins
@405192802
@405192802 Жыл бұрын
Thank you@@amantinband 👍
@elitetechacademy
@elitetechacademy 2 ай бұрын
Thanks for this.
@ahmedifhaam7266
@ahmedifhaam7266 7 ай бұрын
where can I find the techempower chart you showed at the end, i wanna share with collegues, they are gonna ask questions like, maybe using a custom or stripped down version of the bcl idk,
@OmriKipi
@OmriKipi Жыл бұрын
Great video! But after 12 years in C#, I'm thinking about moving to Node. More jobs and opportunities. Especially in Israel. Your toughs ?
@amantinband
@amantinband Жыл бұрын
Totally up to you and your career/personal preferences 🙂
@shawsie
@shawsie Жыл бұрын
I work in node in northern ireland...most jobs are in .Net framework & C#.... depends where you are I guess
@juanpaFX17
@juanpaFX17 Жыл бұрын
I think that many people that is already starting is doing the same, going with javascript so maybe there are a lot of people with the same knowledge applying for the same jobs (React, Node). In my case I started with javascript, Vue, Node and all that popular stuff, but was really difficult to get a job, later I discovered .Net and is really amazing(Infrastructure and power for me) and many jobs but obviously you know that so, perhaps you should try something like F# or new groundbreaking languages like Rust or Go, or going back to functional programming languages like Scala, Elixir or Clojure are gaining many popularity in the last years if you want a change.
@Sp1tfire100
@Sp1tfire100 11 ай бұрын
​@@shawsiehehe
@PSADS-qb5im
@PSADS-qb5im 6 ай бұрын
12 years? Jesus Christ I thought not moving from c# for 5 years was bad I’m not a professional though just a hobbyist
@ashil816
@ashil816 Жыл бұрын
Nice Introduction, How did you get a copilot-like suggestion at the terminal with dotnet cli (time-stamp 3:09)?
@voidmice1669
@voidmice1669 Жыл бұрын
The shell he uses is probably the Z Shell (zsh), and it has a plugin called zsh-autosuggestions (if I remember the name correctly).
@amantinband
@amantinband Жыл бұрын
Yep. My dotfiles are on my GitHub if you want more details
@ArchangelWatch1337
@ArchangelWatch1337 6 ай бұрын
Best thumbnail in the world, love it!
@TheMurinDeventa
@TheMurinDeventa Жыл бұрын
Can develop dotnet using neovim ? Are there any huge disadvantages using editor over IDE like Visual Studio, Rider ?
@TheQuackingExodus
@TheQuackingExodus 7 ай бұрын
Use rider
@megistusable
@megistusable Жыл бұрын
Poor F# .. the black sheep of dotnet, shame its such a nice language.
@maxron6514
@maxron6514 Жыл бұрын
It is
@umer.on.youtube
@umer.on.youtube 2 күн бұрын
F# might be the only, I repeat, the only thing from Microsoft that I never used, never will. And I've used them all. Huge Microsoft fan! But F# just ---- ummm --- why? When C# and VB are there.
@timmkrause6684
@timmkrause6684 Жыл бұрын
What magnifier are you using?
@amantinband
@amantinband Жыл бұрын
Presentify on MacOS and ZoomIt on windows
@timmkrause6684
@timmkrause6684 Жыл бұрын
@@amantinband Looks super awesome. Coming from Windows with ZoomIt and trying to find an alternative. Thanks for sharing. Any opinion on ScreenBrush?
@someuser4166
@someuser4166 8 ай бұрын
I don't like the dlls, I want executable binaries but nuget is nice, coming from cpp, I hate cmake.
@paca3107
@paca3107 6 ай бұрын
There is an option to compile C# code to machine code. It's called "native AOT" and the performance is simillar to Go lang. Interesting thing but now it's not mature yet.
@someuser4166
@someuser4166 6 ай бұрын
@@paca3107 hmm I didn't know about that. Thanks for telling me. Lately I've been trying to move over to rust though 🤔
@vlc-cosplayer
@vlc-cosplayer 2 ай бұрын
Have you "rusted" yet haha Fr C# can do static binaries too, but the minimum size is like 10-15 MB because they also include the runtime. You can easily compress it down to 5-7 MB for distribution, however. Don't use UPX, it breaks things and sets off AV.
@nexdownfallrs
@nexdownfallrs Жыл бұрын
Very good super interesting and also very informative video! Keep up the great work! Subbed and liked :)
@KodingKuma
@KodingKuma Жыл бұрын
Just too bad people can't get pass the old Microsoft stigma. What a shame.
@Hellbending
@Hellbending Ай бұрын
Take a shot every time he says 'daat-nhat', if you can still type then report back how far you got
@patrikduch1669
@patrikduch1669 Жыл бұрын
I am .NET expert, but still good video to watch.
@tobiassjoholm9325
@tobiassjoholm9325 9 ай бұрын
“Expert”
@brock4643
@brock4643 Жыл бұрын
.Net seems to always be behind the curve, however seems to have much more stable releases
@amantinband
@amantinband Жыл бұрын
JS is the girlfriend, dotnet is who you would marry.
@Eirenarch
@Eirenarch Жыл бұрын
That's only true if you compare it to the most advanced tech on each criteria. How is JS compared to .NET on the performance front? How is JS compared to .NET on the game dev front? How is C++ compared to .NET on the web front? As a full platform that goes everywhere only Java and JavaScript can compare. And they will lose
@THEROOT1111
@THEROOT1111 Жыл бұрын
@@amantinband Good analogy, especially when after the first 5 years you'll be dead inside with suicidal thoughts questioning all your lifetime choices, as i've seen developers being exactly like that ;p
@kristijanog
@kristijanog Жыл бұрын
@@THEROOT1111 that sounds... oddly specific! :D
@THEROOT1111
@THEROOT1111 Жыл бұрын
@@kristijanog i know people, i have eyes :p
@mehrdaddowlatabadi2319
@mehrdaddowlatabadi2319 7 ай бұрын
Thats how computer users look like
@valerianmp
@valerianmp 8 ай бұрын
To be honest, yeah I'm heavily prejudiced and hate Windows, but I give it a try and found it awesome! Especially compared to Java lol
@sleeping_dragon
@sleeping_dragon 10 ай бұрын
big ad
@nachojimenez2420
@nachojimenez2420 Жыл бұрын
no, that realy didn't explain aything
Brutally honest advice for new .NET Web Developers
7:19
Ed Andersen
Рет қаралды 290 М.
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
She made herself an ear of corn from his marmalade candies🌽🌽🌽
00:38
Valja & Maxim Family
Рет қаралды 18 МЛН
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 31 МЛН
C# in 100 Seconds
2:27
Fireship
Рет қаралды 2,1 МЛН
The Ultimate .NET Version Guide
14:35
Claudio Bernasconi
Рет қаралды 32 М.
Coding Was HARD Until I Learned These 5 Things...
8:34
Elsa Scola
Рет қаралды 834 М.
ASP.NET Core Crash Course - C# App in One Hour
1:00:44
freeCodeCamp.org
Рет қаралды 1,6 МЛН
What is C#? What is the difference between C# and .NET?
6:33
Interview Happy
Рет қаралды 112 М.
C# vs .NET
8:27
Roberts Dev Talk
Рет қаралды 34 М.
These coding projects give you an unfair advantage
8:13
Jason Goodison
Рет қаралды 1,1 МЛН
20 Programming Projects That Will Make You A God At Coding
14:27
The Coding Sloth
Рет қаралды 1,6 МЛН
.NET and C# are in trouble. Here is what I'd do.
10:57
Ed Andersen
Рет қаралды 117 М.
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН