Apple Silicon and .Net Devs BIGGEST struggle, SOLVED!

  Рет қаралды 27,302

Alex Ziskind

Alex Ziskind

9 ай бұрын

In this guide, I'll show you how to set up a VPS to use SQL Server on your MacBook.
Here is where I set up the Ionos Windows VPS: www.ionos.com/servers/windows...
Run Windows on a Mac: prf.hn/click/camref:1100libNI (affiliate)
Use COUPON: ZISKIND10
👀 Gear I use
Great 40Gbps T4 enclosure: amzn.to/3JNwBGW
My nvme ssd: amzn.to/3YLEySo
M1 MacBook Air deal - amzn.to/3E5O0Gy
M2 Mac Mini deal - amzn.to/3KPvjuw
MacBook Pro: amzn.to/3ucFbG9
LG 27” Monitor: amzn.to/3OEVNjo
👀 More gear I use: (including course creation and youtube stuff): www.amazon.com/shop/alexziskind
▶️ Microsoft FINALLY killed one Visual Studio - • Microsoft FINALLY kill...
▶️ Windows on a Mac JUST got better - • Windows on a Mac JUST ...
▶️ Visual Studio 2022 for ARM is a BANGER! - • Visual Studio 2022 for...
▶️ M1 Ultra vs Intel Core i9 Python Test DESKTOPs - • M1 Ultra vs Intel Core...
▶️ M1 MacBook vs Intel i9 MacBook Python Test - • M1 MacBook vs Intel i9...
- - - - - - - - -
❤️ SUBSCRIBE TO MY KZbin CHANNEL 📺
Click here to subscribe: www.youtube.com/@azisk?sub_co...
- - - - - - - - -
📱LET'S CONNECT ON SOCIAL MEDIA
ALEX ON TWITTER: / digitalix
- - - - - - - - -
#visualstudio #macbook #sqlserver

Пікірлер: 136
@oa_munich
@oa_munich 9 ай бұрын
I run SQL Server docker image with --platform linux/amd64 flag and Azure Data Studio on Mac OS. Works pretty well. Far less hassle than a VPS, no need to worry about your data leaving your machine.
@monstercameron
@monstercameron 8 ай бұрын
same here, not too hard either
@Mikewendwosen
@Mikewendwosen 3 ай бұрын
how do you writ e the connection string for it I am confused
@oa_munich
@oa_munich 3 ай бұрын
@@Mikewendwosen you map container port 1433 SQL port to some local port, and connect to localhost:mapped port
@bartekwietrak
@bartekwietrak Ай бұрын
@@Mikewendwosen instead of `server=.` you write `server=localhost,1234` where 1234 is the port which you specified your sql server is running in container
@bryanhobson1822
@bryanhobson1822 9 ай бұрын
Damn! I thought there was a better native Mac solution for SQL Server in the pipeline when I spotted your video. Slightly disappointing that it wasn't the case, but a good video nonetheless. 👍 Annoyingly, I've just discovered that Microsoft have, as of September 2023, dropped support for ARM64 with Azure SQL Edge server, meaning the version numbers are now different between Mac/Windows and backups can no longer be exchanged if you use both a Windows and a Mac M1/M2 device.
@carlcodes8422
@carlcodes8422 9 ай бұрын
Great video. My solution for this was to use Sql Azure Edge on Docker - runs natively on Arm, and while there IS an overhead for runnig Docker, I'm usually running docker anyway
@marna_li
@marna_li 9 ай бұрын
I run all my dependencies in Docker via Compose files. Can check that in with the code. Map volumes to store state locally. Have never been happier. ☺️
@taylorkoepp3048
@taylorkoepp3048 9 ай бұрын
Ah, I wondered if that worked. I'd definitely pick that solution over a cloud VPS!
@AZisk
@AZisk 9 ай бұрын
Yep, if all you need is just a subset of functionality that SQL Server offers, like a relational db, then your approach is great! I made a video about this last year too.
@weiln12
@weiln12 9 ай бұрын
In my testing running SQL Server 2022 through Rosetta had better performance than SQL Azure Edge. This was for large datasets for a data warehouse approaching 1TB of compressed data. However, keep in mind, that Apple does some funky disk things with writes where it doesn't actually write when it says it does. If you're working with large datasets you'll see disk performance slow significantly over time. You can see this if you run FIO tests with large data files in the Docker container vs FIO tests outside the Docker container when you use direct writes bypassing the disk caching.
@marna_li
@marna_li 9 ай бұрын
@@weiln12 In my case, I have not been bothered about that. But I get that some people are. Been using Azure Data Studio. It is really becoming a good tool managing a lot of data sources.
@MrDragos360
@MrDragos360 9 ай бұрын
I used an IONOS VPS when I was in college and when I did my master degree. Considering I used to move between cities and I had desktops in both(I couldn't cary one of the around) I didn't wanted to export/import the db each time I was moving so I bought a VPS, setup a MariaDB, two datbases: dev_db and live_db(that's howI call prod, live), connected my Laravel code to them and it workerd sooo nice. I had the same data everywhere regardless from where I was accessing/working on the app. Also the VPS was pretty slow, but it wasn't a problem because thanks to it being slow I could test the loading UI/UX whitout doing setTimeouts with promises in Vue.
@garynagle3093
@garynagle3093 9 ай бұрын
Nice video. Looks pretty cool for someone who is out and about to seamlessly access their sql database.
@AZisk
@AZisk 9 ай бұрын
You my friend get it! If I want to be remote, this is the way to go.
@wajdiballout
@wajdiballout 9 ай бұрын
Isn't Docker available to do this too?
@francute2u
@francute2u 9 ай бұрын
what about docker? and connect sql management studio on docker?
@NeoChromer
@NeoChromer 9 ай бұрын
Isnt there a docker image that works
@BrandonLackey
@BrandonLackey 8 ай бұрын
Oof, checked every thing 4 times... still can't connect to the sql server from ssms remotely. 😥
@deangrande7002
@deangrande7002 9 ай бұрын
can't wait to try this! Thanks Alex 🙌
@Rednunzio
@Rednunzio 9 ай бұрын
I’m using sql server docker container with compatibility mode on docker desktop for running X86 container on arm
@JasDua
@JasDua 9 ай бұрын
Why not just get a tiny desktop (one of those cheap ones like 1L thinkcentres from corporate liqudations they do every three years), install windows on it and set it up with zerotier to remote into it? It would probably cost less in the longterm and you'd most likely get better performance.
@AZisk
@AZisk 9 ай бұрын
yes, this is another option
@kplkasteel
@kplkasteel 9 ай бұрын
Could even install ubuntu if you don't want to spend a license, though mostly they do come with a windows license. U run such a setup with UNRAID and docker images. Old Lenovo m93p with an 4th gen I7 and 32GB ram. Besides my SQL server it also hosts my PLEX server, Minecraft server, and even my TimeMachine network backup and many more services.
@prasaddd
@prasaddd 9 ай бұрын
Nice , never heard about zerotier
@samsonite5970
@samsonite5970 9 ай бұрын
My current setup from my M2 MacBook is, docker + SQL Server 2022 and/or Azure Edge, then for browser Azure Data Studio, for my IDE I use Rider…. .Net development under apple silicon is a breeze. Windows envi. Is already dead for me and i’m not going back to windows.
@burnt1ce85
@burnt1ce85 23 күн бұрын
We all know this is a sponsored video from Ionos. That's totally fine as we all need to put food on the table. That being said Azure, AWS and Google Cloud provide a free VM for 12 months.
@evgeniibubolev9881
@evgeniibubolev9881 9 ай бұрын
Hi Alex, running MS SQL Server in docker with Rosetta emulation could also be a solution
@jaa928
@jaa928 9 ай бұрын
I went this route at first for my local copy of the database, but ended up wanting SSMS instead of Azure Data Studio to connect to my remote production database. Eventually Parallels became my choice so I could use the Windows version of Visual Studio instead of VS for Mac. I don't love the new subscription license, but it seems to be on par with the pricing of this VPS.
@kplkasteel
@kplkasteel 9 ай бұрын
Its perfect to run as an public server or if you have a public website connected to it. I just run an UNRAID server on an old SFF PC and a SQL docker image in my local network.
@kimfom
@kimfom 9 ай бұрын
I truly enjoyed this video Alex, thanks for doing .NET stuff 😅
@AZisk
@AZisk 9 ай бұрын
Glad you enjoyed it!
@shpatmjeku
@shpatmjeku 9 ай бұрын
Im studying computer (hardware/software) engineering and I need to buy a laptop. I want to get a macbook but I dont know if all the software im gonna be using is supported on mac. What do I do, do I just go for a windows laptop?
@kokosiki40
@kokosiki40 Ай бұрын
Use Windows and Linux (ubuntu or any other) in one laptop
@d365commerce
@d365commerce 7 ай бұрын
SQL Server 2022 Developer Edition does install on Windows 11 ARM, but "some assembly" is required post-installation, i.e. fixing missing folder and registry permissions, and restoring and rebulding missing master and temp dbs
@d365commerce
@d365commerce 7 ай бұрын
another option that is officially, although implicitly, fully supported on Windows 11 ARM is SQL Server 2022 Express LocalDB. Installs without any problems and can be used with SSMS.
@eduardoserrano2015
@eduardoserrano2015 9 ай бұрын
Dang, I feel sorry for .NET devs
@adrynalyne
@adrynalyne 9 ай бұрын
Docker works great and takes less to setup.
@kevinnguyen163
@kevinnguyen163 9 ай бұрын
Those Microsoft SQL Server - Ubuntu based images provided by Microsoft work just fine for me.
@mirko_lon
@mirko_lon 9 ай бұрын
What's problem use Docker container with DataGrip & Rider?
@AZisk
@AZisk 9 ай бұрын
No problem with Docker if you aren't running full SQL Server, which is what I want to use here.
@eng.josesilva2648
@eng.josesilva2648 9 ай бұрын
Why not user on Docker?
@manuelben98
@manuelben98 9 ай бұрын
But there is a Docker image, is the image not ARM compatible?
@AZisk
@AZisk 9 ай бұрын
Yes, for SQL Edge. Microsoft and their naming :)
@synen
@synen 9 ай бұрын
I just stick to PostgreSQL, don't see the need to use Microsoft SQL Server, developer or otherwise. Thanks for the video, as always, quality stuff.
@ShamirDasgupta
@ShamirDasgupta 9 ай бұрын
Alex, is it different than using an Azure VM?
@AZisk
@AZisk 9 ай бұрын
No, pretty much the same :) I tried this with Azure VM and it works just as well. The setup with Azure is more powerful, but also much more complex, but if you're comfortable in the Azure Portal, you'll be fine.
@techtalksabhishek
@techtalksabhishek 7 ай бұрын
Why cant you use Azure VM and have SQL installed on it. Not sure if you have considered this?
@AZisk
@AZisk 7 ай бұрын
yes i have. $$$$$
@techtalksabhishek
@techtalksabhishek 7 ай бұрын
@@AZisk yes I thought so. Thanks for the fast reply
@Carokas42
@Carokas42 9 ай бұрын
isn’t it possible to install sql server in windows running on parallels?
@AZisk
@AZisk 9 ай бұрын
I'm afraid not. Windows for ARM doesn't do a good job yet of translating x64 to ARM on the fly.
@Carokas42
@Carokas42 9 ай бұрын
Thanks for the fast reply! The problem i’m facing is, that i need to perform some tasks on MSSQL Dbs for my Labs in university. I currently have an m1 Air and i was about to upgrade to a 14 inch pro. Now i am not sure if i can perform all the tasks on that machine and i am really unsure if i should get a windows Maschine. For the lab an installation of ssms and localdb is required. So far i was able tu install both in my m1 air
@15buadam
@15buadam 9 ай бұрын
I use distrobox with Ubuntu 22.04 and run SQL server on in that container.
@ehvlullo
@ehvlullo 9 ай бұрын
100% coolest dude that's rocking that VS white theme
@AZisk
@AZisk 9 ай бұрын
I old-school default it all the way! Visual Studio just doesn't look right in the new dark theme.
@blackmamba6938
@blackmamba6938 9 ай бұрын
I installed SQL Server with Docker and it works.
@AZisk
@AZisk 9 ай бұрын
Are you sure about that? Or is it SQL server Edge?
@being_aslam_tiger
@being_aslam_tiger 9 ай бұрын
Please make video on "Linux and C# Dev Kit" with Visual Studio Code.
@brunoetzkorn9372
@brunoetzkorn9372 9 ай бұрын
It is also possible to run SQL Server in a Parallels VM under Windows 11 Arm64! Took me a while to get this running but after all it is a good option and running like a charm. If someone is interested in how to get this running, I can post the few necessary steps
@matttm3
@matttm3 8 ай бұрын
Yes please! That would be so helpful
@BelarusianInUk
@BelarusianInUk 9 ай бұрын
What about video how to run Oracle db on silicon? Without Colima. I use Colima which is linux vm optimized for containers. Super simple. Maybe a bit buggy sometimes. But works for me to run Oracle on M1. And it is slower than native app of course. You can probably run sql server in Colima if there is a docker container for Linux.
@AZisk
@AZisk 9 ай бұрын
I've always used SQL Server, and not familiar with Oracle administraion.
@drndn
@drndn 5 ай бұрын
You pronounce it "Postgres", the DBMS' traditional name. The QL was branding added at one point but it is silent.
@saidyeter
@saidyeter 9 ай бұрын
wht dont you use just docker
@AZisk
@AZisk 9 ай бұрын
Docker does nothing to help run x64 software on a Windows ARM VM. If you mean running another package that is NOT SQL Server (SQL Edge for example), then sure. But it doesn't have all the features that I want
@PankajNikam
@PankajNikam 9 ай бұрын
Why not VPS with Linux (cheaper than Windows) and SQL Server running in it?
@AZisk
@AZisk 9 ай бұрын
another option. Windows lets me host other things like a dev environment and IIS
@PankajNikam
@PankajNikam 9 ай бұрын
True. I would love to experiment it with Linux and .NET Core @@AZisk
@TheDenno91
@TheDenno91 9 ай бұрын
I am really surprised, why do not use Azure Edge Docker VM ? 😅 works like a charm for me. It’s the same like an azure sql database.
@AZisk
@AZisk 9 ай бұрын
In the video, I mention why I use SQL Server over the other sql services.
@geostel
@geostel 9 ай бұрын
@@AZisk no, there is azure sql edge docker image, it's basically Microsoft sql server, without some additional sql features like reporting services etc.
@AZisk
@AZisk 9 ай бұрын
@@geostelyes. in the video I mention specifically why I use SQL Server over the other options. I think I’m repeating myself. omg. how did we get into this loop. basically, sql edge offers a small subset of functionality that sql server has. if that is enough for you, then the docker solution is great. i made a video about sql edge last year for those that need just a little bit of sql sprinkled in :)
@geostel
@geostel 9 ай бұрын
@@AZisk oh, sorry,seems I looked video not very carefully and that’s why I suggested SQL edge:) thanks for a good video, it would be useful to a lot of devs since a lot of developers have struggle with installing and configuring sql server for their tasks
@TheDenno91
@TheDenno91 9 ай бұрын
Sorry, I rewatched the introduction. My brain missed that you actually mentioned that.
@smokinjoe2122
@smokinjoe2122 9 ай бұрын
Wake me up when SQL Management Studio is available for my Mac...And no...Not Azure Data Studio..
@AZisk
@AZisk 9 ай бұрын
you’re going to be sleeping for a while 😆
@ArbazAbid
@ArbazAbid 9 ай бұрын
Microsoft is sleeping too. How much this can cost them to compile for ARM.
@geostel
@geostel 9 ай бұрын
I believe they would retire ssms some day, like they killed vs for mac
@wambotcha
@wambotcha 9 ай бұрын
That letter throw to yourself is messing with my head...
@wambotcha
@wambotcha 9 ай бұрын
AI-face on a friend?
@arpitsirohi8095
@arpitsirohi8095 9 ай бұрын
Running a docker image with azure studio does the trick
@AZisk
@AZisk 9 ай бұрын
Not exactly. I run SQL Server, not SQL Edge
@DerAlbert
@DerAlbert 9 ай бұрын
Another Way is using Colima, little tweaking at the qemu config, and run the sql server 2022 x64 Docker Container…
@AZisk
@AZisk 9 ай бұрын
i don’t know about Colima. Do you have any info on this?
@ArbazAbid
@ArbazAbid 9 ай бұрын
Already tried using remote SQL Server on my M1 parallels windows, but it's a pain. Switched back to Windows laptop. I thought you really found something.
@AZisk
@AZisk 9 ай бұрын
It's not as good as using a dedicated Windows based workstation, you're right. But it's a solution for those using an Apple Silicon machine (just like the title says :)
@ArbazAbid
@ArbazAbid 9 ай бұрын
@@AZiskYeah. I will keep on following you to know what have you found better for us. Thank you for all the hustle and great videos.
@logato7128
@logato7128 9 ай бұрын
Unless you spend a lot of time working at the coffee shop! 😂Just build a small pc for a virtual server and use ADS on the Mac to work with it. These are the things you need to know!
@DanielHarrisCodes
@DanielHarrisCodes 9 ай бұрын
It’s good to have options. I’ve got SQL Edge in Docker for local dev on my Mac, but also have a full Windows box in the cloud on Windows 365. Also have a local Parallels Windows 11 machine. I do most windows dev from the windows 365 box and connect to it from my Mac, Surface Pro, iPad etc. Even iPhone can output a full resolution (eg 3440x1440) to an external display for a DeX like experience (albeit running remotely via RDP)
@toadlguy
@toadlguy 9 ай бұрын
So, of the titles you suggested , this was the only one that was really true (except Schwarzenegger) since you are not really running SQL Server on Apple Silicon. In fact you could just set up a local Windows Server on a cheap Intel box to achieve the same results. However, I’m not sure, in the long run, that this solution isn’t easier and cheaper. If this existed (at these prices) 15 years ago, when I was doing Dot NET stuff, I would have saved thousands of dollars.
@AZisk
@AZisk 9 ай бұрын
Schwarzenegger agrees :) The solution I offered here is for ultimate portability. If portability is not necessary, then a cheap windows box will do. If all you need is a simple relational db, then SQL Edge will work too.
@toadlguy
@toadlguy 9 ай бұрын
@@AZisk You don’t Know how much time and money this would have saved me years ago. But “spinning up” a Windows server, let alone SQL was an expensive proposition.
@taylorkoepp3048
@taylorkoepp3048 9 ай бұрын
If you're comfortable with the CLI (as any developer should be) it's a lot easier to install (and maintain) SQL Server on Linux. It will be cheaper too and require less hardware. I've managed SQL Server on Linux for years without any issues at all (there are alternatives to SSMS too which I use on macOS). Windows Server is mostly obsolete, aside from running legacy apps I can't think of a single compelling reason to use it.
@mattcargile
@mattcargile 9 ай бұрын
Obsolete!!?? I think not. IIS is still used all over the place as is Active Directory.
@AZisk
@AZisk 9 ай бұрын
windows server is alive and well in the enterprise world.
@taylorkoepp3048
@taylorkoepp3048 9 ай бұрын
@@mattcargile I didn't say it wasn't used. COBOL is still used but you wouldn't use it for any greenfield projects. Windows Server and IIS are in this category.
@taylorkoepp3048
@taylorkoepp3048 9 ай бұрын
​@@AZiskI'm being misinterpreted here, probably 'obsolete' was the wrong word. Windows Server exists largely to service legacy software now, new products aren't really being developed for it. Most Azure services use Linux.
@mattcargile
@mattcargile 9 ай бұрын
@@taylorkoepp3048 Naa. I know what you are saying. I’m disagreeing. To say Windows Server is obsolete is quite the hot take. SQL Server on Linux has only been out 7 years. The forward momentum of Windows is just not stopping. Folks use Windows and develop on it because that is what they know. Enterprises are chasing stability. Maybe a startup mentality is against Windows Server and IIS though having your software able to be deployed on that tech can make it easier to sell to smaller and medium business on-premise. SaaS won’t matter.
@gtangari
@gtangari 9 ай бұрын
Well, a VM deployed in Azure would have been a (more expensive) solution too :-D
@AZisk
@AZisk 9 ай бұрын
That's right. Azure VM works also, but like you said, more expensive for sure.
@johnjosephsmith
@johnjosephsmith 8 ай бұрын
🎯 Key Takeaways for quick navigation: 00:13 💡 Using Docker can significantly streamline both front-end and back-end development by enabling hot reloading. 01:26 🔄 Docker init automates the creation of Docker files, speeding up the setup process. 02:09 ✂️ Customizing Docker files for development can bypass the need for manual configuration. 03:33 🕵️ Docker can detect and scaffold configurations for different types of projects automatically. 04:01 🔄 Docker compose watch allows developers to maintain hot reloading capabilities for containerized apps. 05:37 🛠️ The watch command in Docker provides a dynamic development environment by restarting services as file changes are detected. Made with HARPA AI
@GrishTech
@GrishTech 9 ай бұрын
Rule #1. Never expose RDP to the internet. BIG Rule. Please use tailscale or zerotier to access your server instead. RDP has had to many vulnerabilities in the past, include pre-auth zero-days.
@AZisk
@AZisk 9 ай бұрын
for mission critical environments, absolutely right
@Drathis123
@Drathis123 9 ай бұрын
Internet is full of hacked servers because people blindly follow KZbin videos that don't take security into account and just say "don't do this at home" or "don't do this in production". But there is never any followup video on how to do it the right way. Why not just show the right way to do it? It's not that hard to get a good developer experience without exposing your DATABASE server to the internet. In fact you could get a sponsorship for the video that shows a security tool that manages that
@Chatlan
@Chatlan 9 ай бұрын
Somebody already tried to hack the db?
@AZisk
@AZisk 9 ай бұрын
Haha. I deleted it after this video :)
@mattcargile
@mattcargile 9 ай бұрын
You only need Browser service over UDP if you have a named instance. If not, turn it off.
@AZisk
@AZisk 9 ай бұрын
thanks!
@iainrlennox
@iainrlennox 9 ай бұрын
Scratches head! Azure?!?
@AZisk
@AZisk 9 ай бұрын
Azure has VMs yes. A bit more expensive, but same idea
@Langersagler1
@Langersagler1 9 ай бұрын
Schwarzenegger is still the better title 🤷🏻‍♂️ - change my mind
@DummyFace123
@DummyFace123 8 ай бұрын
Literally just an ad
@nasirusanigaladima
@nasirusanigaladima 9 ай бұрын
I was not first
@OscarRuizK
@OscarRuizK 9 ай бұрын
Me neither
@AZisk
@AZisk 9 ай бұрын
seems like you WERE🎉
@darlingtonolelewe1212
@darlingtonolelewe1212 9 ай бұрын
is docker a joke to you?
@AZisk
@AZisk 9 ай бұрын
am i a joke to docker?
@darlingtonolelewe1212
@darlingtonolelewe1212 9 ай бұрын
@@AZisk just saying. If it's just for development purpose
@AZisk
@AZisk 9 ай бұрын
im all about that development purpose
@old-barn
@old-barn 9 ай бұрын
why not just get a cheao-ish pc locally and run it? Not really a solution if you ask me. 1) its been around for ages so nothing new; 2) over the longer period will be more costly; 3) bandwidth might be an issue depending on your connection. tsk tsk Alex.
@AZisk
@AZisk 9 ай бұрын
yes, buying another PC is an option too. A VPS is a portable solution though.
My New Linux Laptop
1:44:56
Titus Tech Talk
Рет қаралды 33 М.
I Bought A Refurbished MacBook Pro M1 in 2024
4:32
The Creative Leo
Рет қаралды 21 М.
Does size matter? BEACH EDITION
00:32
Mini Katana
Рет қаралды 20 МЛН
Хотите поиграть в такую?😄
00:16
МЯТНАЯ ФАНТА
Рет қаралды 3,7 МЛН
🤔Какой Орган самый длинный ? #shorts
00:42
Windows on a Mac JUST got better
8:23
Alex Ziskind
Рет қаралды 263 М.
LLMs with 8GB / 16GB
11:09
Alex Ziskind
Рет қаралды 51 М.
Never install locally
5:45
Coderized
Рет қаралды 1,7 МЛН
Every DEVELOPER should have THIS 🖥️✨
8:23
Alex Ziskind
Рет қаралды 42 М.
Forced to switch from MacBook to PC for this
10:10
Alex Ziskind
Рет қаралды 50 М.
Run Microsoft SQL Server on a Mac (M1/M2)
6:51
Learning and Technology with Frank
Рет қаралды 44 М.
TRUTH about RAM vs SSD UPGRADES for MacBook
11:58
Alex Ziskind
Рет қаралды 356 М.
Set up a Mac in 2024 for Power Users and Developers
1:00:34
Syntax
Рет қаралды 275 М.
One second to compute the largest Fibonacci number I can
25:55
Sheafification of G
Рет қаралды 75 М.
Why I use Jetbrains Rider instead of Visual Studio for C# and .NET
11:27
EXEED VX 2024: Не өзгерді?
9:06
Oljas Oqas
Рет қаралды 47 М.
Klavye İle Trafik Işığını Yönetmek #shorts
0:18
Osman Kabadayı
Рет қаралды 6 МЛН
ОБСЛУЖИЛИ САМЫЙ ГРЯЗНЫЙ ПК
1:00
VA-PC
Рет қаралды 2,1 МЛН
😱Хакер взломал зашифрованный ноутбук.
0:54
Последний Оплот Безопасности
Рет қаралды 955 М.
САМЫЙ ДОРОГОЙ ЧЕХОЛ! В стиле Mac Pro
0:35
Romancev768
Рет қаралды 100 М.
Сколько реально стоит ПК Величайшего?
0:37