#dotnet development
Explore tagged Tumblr posts
Text
THINKWISE DEVELOPERS for #Europe, REMOTE WORK
THINKWISE DEVELOPERS for #EuropeREMOTE WORKContract : 6 MonthWages : 50 EURO Per HrSkill : #DotNet #SQL #thinkwisedevelopers DotNet #dotnetdeveloper #dotnetdevelopment #DotNetDevelopersinEurope europe #europejobs #jobsineurope #itjobsineurope #european #indianineurope #europerecruitment #itrecruitment #itstaffing openfornewopportunities #jobopenings #hirirng #hiringalert #hiringimmediately…

View On WordPress
#Dontnet Developer#Dotnet Development#EuropeITjobs#Europejobs#InternaciaRekruto#Internationalrecruiters#Internationalrecruiterschennai#internationalrecruitersindia#JobsinEurope#Remotejobs#Sql developer#Thinkwise Developer#Workfromhome
0 notes
Text
Razor Page is similar to the HTML page but it loads data easily. A Razor Page is almost the same as ASP.NET MVC’s view component. It has basically the syntax and functionality the same as MVC. Razor pages vs. MVC in ASP.NET
#razor#razor pages#mvc#mvc development#asp.net#asp.net development#razor pages vs mvc#dotnet development#software outsourcing#software development
1 note
·
View note
Text
C# Study Links | Resources ✨
As I am starting to relearn C#, I thought why not share some links that have helped me in the past and what new ones I will be using this time to learn! I already made a similar resource post (post 1 | post 2) for C# in the past but why not a new one? 🤗
Microsoft Learn - LINK
C# Station - LINK
YouTube - LINK
SoloLearn - LINK
Codecademy - LINK
Learn C# - LINK
C# Yellow Book - LINK
C# Programming Guide - LINK
Tutorials Point - LINK
Roadmap to ASP.NET Core Developer (C#): LINK
C# Subreddit - LINK
Dot Net Perls - LINK
C# Coding Conventions - LINK
The Ultimate C# Guide For Beginners - LINK
That's all for now! If this does interests you, do check out the other posts (1 | 2) I made of other C# resources!
Happy coding/programming! 😎💻👍🏾
#resources#coding resources#programming#coding#studying#codeblr#progblr#web development#webdev#computer science#cs academia#study hard#technology#tech#csharp#dotnet#software development#software
825 notes
·
View notes
Text
I'm thrilled to share that I recently completed the SheCodes Basic workshop and earned my certificate! 🎉 This immersive online program provided such a great introduction to web development concepts and skills.
Over the workshop, I gained so much useful knowledge about HTML, CSS, and JavaScript. The hands-on coding challenges let me apply what I was learning in a practical way. I'm proud of all the web pages, interactions and animations I coded from scratch!
I'll be starting the SheCodes Plus where we'll dive deeper into HTML. CSS, JavaScript, Bootstrap and more! Although I still can't decide if I want to be a Frontend Developer or go the Fullstack way😑.
Here is a link to my final Basic project:
#software#css#100 days of code#software development#webdev#coding#codeblr#studyblr#progblr#programming#dotnet
78 notes
·
View notes
Text


Today’s achievement: successfully centred a text!!
Watching: Avatar The Last Airbender.
#codeblr#maui#studyblr#motivation#coding#programming#.net development#.net#.net developers#developer#app development#dotnet#dot net developers
20 notes
·
View notes
Text
instagram
📍How do you stay up to date as a developer?🤔
In a world where tech evolves rapidly, keeping up with the latest news and updates can be challenging. 🧠
👩🏻💻Discover the latest trends, updates, and insights in just 5 minutes a day. ✨
Daily.dev is an all in one platform that allows developers to:
* Stay ahead with the latest tech news! 🚀
* Discover articles tailored to your interests! 🔍
* Connect and engage with fellow developers! 💬
Level up your coding game! Stay ahead of the tech curve with Daily.dev - your ultimate news hub for developers!
Boost your productivity and stay informed. Watch now and upgrade your dev skills!
#resources#coding resources#programming#coding#studying#codeblr#progblr#web development#webdev#computer science#cs academia#study hard#technology#tech#csharp#dotnet#software development#software#techhouse#codinglife#desksetup#deskgoals#deskgram#softwaredeveloper#cozygamergirl#techinfluencer#engineering#designer#programminglife#code
5 notes
·
View notes
Text
Question From Microsoft 🥇💡
A developer writes some code that includes an if statement code block. They initialize one (int F)integer variable to a value of 5 above (outside) of the code block. They initialize a second(int S) integer variable to a value of 6 on the first line inside of the code block. The Boolean expression for the code block evaluates to true if the first integer variable has a value greater than 0. On the second line inside the code block, they assign the sum of the two values to the first variable. On the first line after the code block, they write code to display the value of the first integer.
What is the result when the code statement used to display the first integer is executed ?
1- Is the sum of the(F+S) integer 2- Is the initialized value 3- Error,First var isn't in-scope
3 notes
·
View notes
Text
The Ultimate Showdown: .NET vs Node.js – Decoding the Battle of Web Developers
🚀 Dive into the ultimate showdown of web development titans: .NET vs Node.js! 🤔💻 Unravel the coding clash as these powerhouses go head-to-head in the quest for supremacy. 🌐💪 Let's decode the battle, weigh the pros and cons, and discover which framework rules the realm of web development! 🔍🔥
#dotnet#nodejs#web development#coding#codingbootcamp#software#.net development#.net developers#node.js#node js developers#node js development company#node js development services#techtalentforce#.netforstartups#nodejsforstartups
2 notes
·
View notes
Text
youtube
.NET Maui Apps | Build Expenses Tracker Mobile App using MAUI, SQLite and Syncfusion components.
#dotnet#Netcode-Hub#mobile app development#mobile app design bd#mobile app developer company#mobile application development#mobile app developers#web app development#web development#software development#app development#Youtube
2 notes
·
View notes
Text
Hey there, Tumblr community! If you're a developer building web applications with ASP.NET Core, you know that object mapping can be a time-consuming and error-prone process. Luckily, there's a solution that can simplify this process: AutoMapper.
AutoMapper is a free and open-source library that allows you to easily map objects from one type to another in your ASP.NET Core applications. It helps you reduce the amount of code you need to write and maintain, and ensures that your mapping logic is consistent and easily testable.
One of the biggest advantages of using AutoMapper is that it allows you to define mappings between objects using a simple and intuitive syntax. For example, you can use the CreateMap() method to specify how to map properties from one type to another:
CreateMap<Source, Destination>()
.ForMember(dest => dest.PropertyName, opt => opt.MapFrom(src => src.OtherPropertyName));
This creates a mapping between the Source and Destination types, and maps the value of the OtherPropertyName property on the Source object to the PropertyName property on the Destination object.
AutoMapper also provides a variety of features that make it easy to customize the mapping process to fit your specific needs. For example, you can use custom type converters to convert between types that AutoMapper doesn't natively support, or use value resolvers to calculate values for properties during mapping.
Another advantage of using AutoMapper is that it provides comprehensive documentation and a supportive community of developers who can help you if you run into any issues.
In conclusion, AutoMapper is an excellent solution for simplifying object mapping in your ASP.NET Core applications. If you're working on a project that requires object mapping, be sure to check out AutoMapper and see how it can streamline your development process!
4 notes
·
View notes
Text

UI/UX Design Mastery Course in Madurai: Transforming Ideas into Exceptional Digital Experiences
Unlock the world of digital design with our comprehensive UI/UX Design Mastery Course in Madurai. Tailored for aspiring designers, this course provides a robust foundation in both User Interface (UI) and User Experience (UX) design principles, blending creativity with practical, hands-on training. Whether you’re a beginner with no prior experience or a professional looking to expand your skills, our course offers a clear path to mastering the tools and techniques needed to craft seamless, user-friendly digital experiences.
Website : https://tandeminformatics.com/
#animation courses#data science and data analytics#it training#2d & 3d animation#c#c++#digital marketing.#dotnet#full stack development#game designing
0 notes
Text



Treating myself with a date at my favourite place✨✨
Also why did I miss out on Spanish latte all that long?
#studyblr#study#motivation#langblr#study blog#coding#codeblr#code#women in tech#maui#dot net developers#dotnet#xaml#app development
6 notes
·
View notes
Text
A series of shortcuts in the code
Which one did you like 😁👨💻 ?
3 notes
·
View notes
Text
#hire full stack developers#hire dedicated angularjs developers#hire reactjs developer#hire node js development team#hire dedicated php developer#hire dotnet developer
0 notes
Text
Unlocking the Power of .NET Framework: A Robust Platform for Modern Development
Explore the versatility of the .NET Framework, a powerful Microsoft platform for building secure, scalable, and high-performance applications. From web and desktop development to cloud solutions, .NET simplifies coding with extensive libraries and seamless integration. Learn how .NET can enhance your development projects today! 🚀
0 notes
Text
🛑 Placement Assistance Program 🛑 👉 Join our JAVA & .NET Training! 🚀 New Batch Starting: 20th February 2025 ⏰ Time: 11:00 AM – 01:00 PM 📍 Mode: Classroom / Online
🔗 Register Now: https://t.ly/bN-TR
✅ Course Modules: 🔥 JAVA Track: • Core Java, Advanced Java, Oracle • HTML | CSS | JS • C Language, Data Structures & Algorithms • Soft Skills, CRT
🔥 .NET Track: • C# .NET, Asp Dot Net, Asp Dot Net MVC Core • MVC5 + MVC Core, SQL Server, Angular 15 • HTML | CSS | JS • Soft Skills, CRT
🌐 Visit for More Details: nareshit.com/new-batches 📞 Call: +91-9000225725 | ✉️ [email protected] 📸 Follow us on Instagram: @nareshitech
👩💻 Kickstart your tech career with our expert training and placement support!

0 notes