- 42
- 100 183
Geekinsta
India
เข้าร่วมเมื่อ 17 ก.ค. 2020
ഗീകിൻസ്റ്റയിലേക്കു എല്ലാവർക്കും സ്വാഗതം. എല്ലാവരെയു പ്രോഗ്രാമിങ്ങ് വളരെ എളുപ്പത്തിൽ പഠിക്കാൻ സഹായിക്കുക എന്ന ലക്ഷ്യത്തിലാണ് ഞങ്ങൾ ഗീകിൻസ്റ്റ തുടങ്ങിയത്. ആദ്യം ഒരു ചെറിയ ബ്ലോഗ് അയി ആണ് ഞങ്ങൾ തുടക്കം കുറിച്ചത്. പിന്നീട് മലയാളത്തിൽതന്നെ കോഴ്സുകൾ ലഭ്യമാക്കുന്ന ഒരു ഇ-ലേണിംഗ് പ്ലാറ്റഫോമും ഞങ്ങൾ ആരംഭിച്ചു.
കോഡിങ്, ഗ്രാഫിക്സ് ഡിസൈനിങ് എന്നീ മേഖലകളിൽ ഉള്ള വീഡിയോസ് ആണ് ഈ യൂട്യൂബ് ചാനലിൽ അപ്ലോഡ് ചെയ്യുന്നത്.
Websites: www.geekinsta.com
For Courses (beta): learn.geekinsta.com
കോഡിങ്, ഗ്രാഫിക്സ് ഡിസൈനിങ് എന്നീ മേഖലകളിൽ ഉള്ള വീഡിയോസ് ആണ് ഈ യൂട്യൂബ് ചാനലിൽ അപ്ലോഡ് ചെയ്യുന്നത്.
Websites: www.geekinsta.com
For Courses (beta): learn.geekinsta.com
C# 11 Required Properties | .NET 7 Update
In this video, we'll explore the concept of Required Properties in C#. Required properties are used to ensure that certain properties of an object must have values assigned to them before the object can be created. We'll discuss the use of the "required" keyword, how to apply it to properties, and the benefits of using required properties in your code. By the end of this video, you'll have a clear understanding of how required properties work and be able to use them effectively in your C# projects.
--------------------------------------------------------------------------------------------------------------------------
Want to learn C# or .NET in Malayalam?
🎓 C# Tutorial: learn.geekinsta.com/liveclass/c-sharp-programming
📞 Contact us: +91 8138863533
✉️ Telegram: t.me/geekinsta
--------------------------------------------------------------------------------------------------------------------------
Want to learn C# or .NET in Malayalam?
🎓 C# Tutorial: learn.geekinsta.com/liveclass/c-sharp-programming
📞 Contact us: +91 8138863533
✉️ Telegram: t.me/geekinsta
มุมมอง: 125
วีดีโอ
Anchuruli Thuruthu 3D Design | അഞ്ചുരുളി തുരുത്ത്
มุมมอง 1.7K2 ปีที่แล้ว
അഞ്ചുരുളി തുരുത്ത് എന്ന സ്ഥലത്തെ 3D അനിമേഷനിലൂടെ എല്ലാവരിലേക്കും എത്തിക്കുന്നതിനാണ് ഈ വീഡിയോ ചെയ്തിരിക്കുന്നത് 3 3D ആര്ടിസ്റ്റിറ് 200 അധികം മണിക്കുറുകൾ ചെലവഴിച്ചാണ് ഈ വീഡിയോ നിർമ്മിച്ചിരിക്കുന്നത്. If you have any questions, or you want to learn coding, graphic designing or video editing (in Malayalam), please contact us. Get In Touch 📞 Call: 91 8138863533 📩 Telegram Group: t.me/geekinsta ✉️ ...
Proper Way To Write Comments - Everything You Should Know | Malayalam
มุมมอง 1712 ปีที่แล้ว
A comments is a written explanation about a section of code written for others to read and understand the code. Different languages have different coding convention for writing comments. While languages like C, C , C#, and Java uses a "//" as the comment delimiter, Python uses # as the comment delimiter. If you have any questions, or you want to learn coding (in Malayalam), please contact us. G...
Working Of Garbage Collector | Did You Know? | Malayalam
มุมมอง 9712 ปีที่แล้ว
In this video, we're discussing the working of Garbage collector. In different languages, the working of garbage collector could be different. But the functionality or the purpose stays the same. Garbage collector is responsible for removing unused objects and reliving the memory claimed by unused objects. In .NET, the garbage collector has four generations, Generation 0, Generation 1 and Gener...
List and ArrayList In C# | What is The Difference?
มุมมอง 1802 ปีที่แล้ว
List and ArrayList are two different collection types in C#. They both can be used to multiple elements like an array and they both have same methods and properties. Having said that, there are some difference between these two data types. The main difference between a list and an arraylist is that an array list store the elements as objects internally, while the list data type uses generics. T...
Creating a Calculator Design Using HTML and CSS | Malayalam
มุมมอง 1.6K2 ปีที่แล้ว
Hi, in this video, we'll design a calculator using HTML and CSS. If you already have basic knowledge in HTML and CSS you can easily follow this tutorial. If you have any questions, please share in the comment section. Roboto Font Page: fonts.google.com/specimen/Roboto Instant Eyedropper: instant-eyedropper.com/downloads/
Part 5 | Basic Datatypes | Python Malayalam Tutorial
มุมมอง 5562 ปีที่แล้ว
In this video we'll learn different datatypes in Python. A datatype indicates the type of the data stored in a variable. The basic datatypes in Python are integer, float, string and bool. Int datatype - Used to store integer values like 0, 1, 2, and 3. Float datatype - Used to hold values like 0.1, 1.2, 3.14 etc. String datatype - Used to hold string values. Ex: John Doe, Hi, Hello. Bool dataty...
Part 4 | Reading From Console - Input Function | Python Malayalam Tutorial
มุมมอง 7162 ปีที่แล้ว
In this video we'll learn to read input data from console using the input function in Python. Input function reads anything user types in the console and returns it as a string. We can use this date to implement further login in our applications. We'll also learn to read multiple values together from the console with input function. Looking for a live class in Malayalam? Need help / support? Ge...
Part 3 | Variables And Datatypes | Python Malayalam Tutorial
มุมมอง 9453 ปีที่แล้ว
Python is one of the most widely used programming languages in the world. It is an interpreted, dynamic programming language. This is the third video of Python Malayalam Tutorial for beginners. In this video, we'll learn to declare and use variables Python. A variable is a name for a place in the computer's memory where you store some data. In Python, you can create a variable simply by providi...
Part 2 | Print Function | Python Malayalam Tutorial
มุมมอง 2.5K3 ปีที่แล้ว
Python is one of the most widely used programming languages in the world. It is an interpreted, dynamic programming language. This is the second video of Python Malayalam Tutorial for beginners. In this video, we'll learn to use the print function in Python. We use the print function to display some text on the console. It is the Python equivalent of printf() function in c Looking for a live cl...
Part 1 | Installing Python | Python Malayalam Tutorial
มุมมอง 11K3 ปีที่แล้ว
Python is one of the most widely used programming languages in the world. It is an interpreted, dynamic programming language. This is the first video of Python Malayalam Tutorial for beginners. In this video, we'll learn to install and set up a Python development environment on our machine. Get In Touch 📞 Call: 91 8138863533 📩 Telegram Group: t.me/geekinsta ✉️ Telegram Direct Message: t.me/mish...
C Sharp Null Coalescing Operator (??) and (??=)
มุมมอง 1733 ปีที่แล้ว
C Sharp Null Coalescing Operator (??) and (??=)
Use MySQL With .NET Core and Entity Framework
มุมมอง 20K3 ปีที่แล้ว
Use MySQL With .NET Core and Entity Framework
Progress And Meter Tag | Web Designing Tutorial - Part 9 | Malayalam
มุมมอง 6133 ปีที่แล้ว
Progress And Meter Tag | Web Designing Tutorial - Part 9 | Malayalam
LAKE - Lumion Cinematic Animation | Concept Visualization | Geekinsta
มุมมอง 6183 ปีที่แล้ว
LAKE - Lumion Cinematic Animation | Concept Visualization | Geekinsta
Creating Tables in HTML | Web Designing Tutorial - Part 8 | Malayalam
มุมมอง 4453 ปีที่แล้ว
Creating Tables in HTML | Web Designing Tutorial - Part 8 | Malayalam
HTML List | Web Designing Tutorial - Part 7 | Malayalam
มุมมอง 4023 ปีที่แล้ว
HTML List | Web Designing Tutorial - Part 7 | Malayalam
Create Your Own VPN In Just 20 Minutes | Malayalam
มุมมอง 1.3K3 ปีที่แล้ว
Create Your Own VPN In Just 20 Minutes | Malayalam
Inline Semantic Tags | Web Designing Tutorial - Part 6 | Malayalam
มุมมอง 5283 ปีที่แล้ว
Inline Semantic Tags | Web Designing Tutorial - Part 6 | Malayalam
Paragraph And Break Tag | Web Designing Tutorial - Part 5 | Malayalam
มุมมอง 1233 ปีที่แล้ว
Paragraph And Break Tag | Web Designing Tutorial - Part 5 | Malayalam
HTML Heading Tag | Web Designing Tutorial - Part 4 | Malayalam
มุมมอง 5823 ปีที่แล้ว
HTML Heading Tag | Web Designing Tutorial - Part 4 | Malayalam
Structure Of An HTML Document | Web Designing Tutorial - Part 3 | Malayalam
มุมมอง 7273 ปีที่แล้ว
Structure Of An HTML Document | Web Designing Tutorial - Part 3 | Malayalam
Customizing VS Code | Web Designing Tutorial - Part 2 | Malayalam
มุมมอง 1.1K3 ปีที่แล้ว
Customizing VS Code | Web Designing Tutorial - Part 2 | Malayalam
Web Designing Tutorial - Part 1 | Malayalam
มุมมอง 3.3K3 ปีที่แล้ว
Web Designing Tutorial - Part 1 | Malayalam
Caricature Drawing Of Fahadh Faasil From Malik Movie | Malayalam
มุมมอง 5523 ปีที่แล้ว
Caricature Drawing Of Fahadh Faasil From Malik Movie | Malayalam
GitHub Copilot - Everything you need to know | Malayalam
มุมมอง 7253 ปีที่แล้ว
GitHub Copilot - Everything you need to know | Malayalam
What's New In Windows 11? Features and Changes | Malayalam
มุมมอง 15K3 ปีที่แล้ว
What's New In Windows 11? Features and Changes | Malayalam
Create Pixel Stretch Effect in Photoshop | Malayalam Tutorial
มุมมอง 6253 ปีที่แล้ว
Create Pixel Stretch Effect in Photoshop | Malayalam Tutorial
Whether u are giving any online training for this
Dispose method enthanu
can u do more videos about pattern
Bro .net framework architecturine lurich oru video cheyyumo?
You are a lifesaver. Thank you so much for introduction :)
I got this error when I run migration: PM> Add-Migration InitialMigration Build started... Build succeeded. Unable to create a 'DbContext' of type ''. The exception 'Method not found: 'Void CoreTypeMappingParameters..ctor(System.Type, Microsoft.EntityFrameworkCore.Storage.ValueConversion.ValueConverter, Microsoft.EntityFrameworkCore.ChangeTracking.ValueComparer, Microsoft.EntityFrameworkCore.ChangeTracking.ValueComparer, Microsoft.EntityFrameworkCore.ChangeTracking.ValueComparer, System.Func`3<Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore.ValueGeneration.ValueGenerator>)'.' was thrown while attempting to create an instance. For the different patterns supported at design time, see go.microsoft.com/fwlink/?linkid=851728 Please help me. Thank you
Great👍
Bro wrk file onn tharuo🥹 nizz saanam❤
Engane terminal color full akkiya
Check ohmyposh.dev/
Thanks Man ❤️ I was disturb last 5 days, and wasted on research, first which database, after that I decided to choose MySQL, then how to connect with MySQL, I didn't understand, finally got your video, and great thanks man ❤️
Glad it helped
great tutorial thank you so much for making this ❤
Glad it was helpful!
Entel kaanunnila
Really helpful and easy to understand, Thanks.
Great to hear!
certification payment illathe cheyyan enthelm vazhy undoo??
good work exactly what I needed
thank you very much sir
Next clss🙂
Bro version 3.11.2 same coding ano alla vithiyasam undo
Yes. Same aanu.
Bro ithil red colouril entho an varunne
There might be some errors. Could you please contact me on the number provided in the description of this video.
Thanks
😍😍
Run aavunhilla
Any error messages?
Please help me how to install oracle cx file to python 3.8 version?
Have you checked the documentation? What issue are you facing?
Wifi password hack cheyyaan pattumo ?
Thank you very much❤
You're welcome 😊
Cool! Thanks a lot bro. You save me
Glad to hear that
Excellent job
Thank you very much!
Brow where are next vds
Bro enik python full stack web development padikkaan aan thaalparayam. But kurach aallkaar job kittaan pryaasam aanenn parannu Mern stack aaan trending enn parayunnu. Bro nte abipraayam enthaa? Mern stack aano better
Please contact us
@@Geekinsta number
@@junaidjunu2941 8138863533
Super design 👌.. Eth Bhaki erakamoo
Why you are not uploading new videos of python
Planning to upload new videos soon. I was busy some other with works.
عاشت ايدك
👍👍
You again 😂😂 Nice initiative bro 👌
Thanks 😅
Very much appreciated of your time , energy and knowledge to make this video. I finally can move on with my project.
Glad it helped
thx dude
You're welcome!
Very informative video, i have noticed some of them that you have explained over here..
Glad to hear that
Sir ithe ellam cheytho inni enghane python open cheyya ? Please reply
I've sent a reply on WhatsApp.
@@Geekinstabro enkm pattunilla
Superb 👏👏
Thanks 🤗
Keep it up bro! After 8h of researching and making dumb mistakes while creating the f*cking project u were the on to save me <3
simple, concise yet complete video! thanks! If the database is handled by MySQL, where may we host our Asp.Net Core MVC application or API? what alike options do we have for that?
Azure or a vps
after wasting my time to other video. and till I found you. <3 thnx man!
Glad I could help!
Thank you. It worked on the first try! +1 Sub
Glad I could help
How to install visual studio code
Please check out updated tutorial th-cam.com/video/TdiU-_7fuYc/w-d-xo.html
All the best☺☺☺☺☺
Adipoliye
Pwoli....
Nice work 🥰. Keep going. May be in future we can collab
Sure 😊
Super👍😍
🤗
Super
Thanks