hu16ma
Hussein
10 posts
Software Engineer💡| .Net Content creator 👨‍💻 Love Architecting Solutions 🛠️🎯
Don't wanna be here? Send us removal request.
hu16ma · 27 days ago
Text
📚 Web Archaeology: Just discovered a digital time capsule!
Found this gem - the Cover Pages website (last updated 2006) that's been frozen in time since the 90s. It's like stumbling upon ancient digital ruins! 🏛️
Checking out the source code was like reading hieroglyphics of early web development. Table layouts, basic HTML - this was cutting-edge stuff back then! Amazing to see how far we've come from these digital foundations.
Fascinating how this site represented a major milestone in web development history, bridging early markup technologies into the modern era. Every element tells a story of how the web evolved.
Tumblr media
0 notes
hu16ma · 28 days ago
Text
Exploring the XML Ecosystem: More Than Just Markup
I’ve been learning, teaching, and developing web applications for years, from the simplest projects to more complex solutions. However, I hadn’t fully appreciated just how extensive XML can be, with its many different types and applications.
Here’s a quick overview of these XML types, summarized from my recent lecture.
Tumblr media Tumblr media
0 notes
hu16ma · 1 month ago
Text
Writing Skills: Essential Fuel for Every Programmer 🥇👨‍💻
One of the key factors that can enhance a programmer’s expertise, knowledge, and reach is the ability to effectively present their ideas—whether directly or indirectly
One of the key factors that can enhance a programmer’s expertise, knowledge, and reach is the ability to effectively present their ideas—whether directly or indirectly. After years of writing research papers and articles, I realized that the skill I most needed to improve was "academic writing". This skill focuses on enabling individuals to convey their ideas in a clear, structured, and accessible way that appeals to a wide audience.
Academic writing is essential for selecting the right title, making smooth transitions between ideas, and summarizing concepts in a concise yet comprehensive manner. It allows readers to grasp the intended message easily. Additionally, the structure of your work—whether it's an article, research paper, or essay—plays a crucial role in how your ideas are received and understood.
Through my ongoing master's studies, I’m grateful to a professor who pointed out the importance of academic writing, something I had previously overlooked. Fortunately, one of my courses is dedicated to "Academic Writing Skills", a subject that I find incredibly valuable. I believe this skill will be fundamental in helping me market my ideas to the global and digital community.
For those looking to improve their writing, I recommend the following resources:
- James Hayton's YouTube https://www.youtube.com/@James_Hayton
- Scribbr
- Writing Academy
- University of Manchester's Academic Skills YouTube Channel
1 note · View note
hu16ma · 2 months ago
Text
📚 Tech Stack Tuesday: Fueling Your Coding Journey! 🚀
Just stumbled upon this goldmine of software development wisdom! Check out this power-packed collection:
"Introduction to Algorithms" - The holy grail of algorithmic thinking
"Domain-Driven Design" - Bridging the gap between software and real-world complexity
"Clean Architecture" - Building systems that stand the test of time
"Release It!" - Because shipping is just the beginning
"Pragmatic Thinking & Learning" - Sharpening your most valuable tool: your mind
"Cracking the Coding Interview" - Your ticket to landing that dream tech job
From foundational algorithms to cutting-edge design principles, this stack covers it all. Whether you're a seasoned dev or just starting out, these books are your roadmap to leveling up your skills.
Pro tip: Notice the strawberries on top? Don't forget to take breaks and enjoy the sweet rewards of your hard work! 🍓
What's on your essential reading list? Share your top tech books in the comments below! 👇
Tumblr media
0 notes
hu16ma · 2 months ago
Text
Chinese Room argument
As a master's student, I stumbled upon this mind-bending idea in 'AI Structures and Strategies for Complex Problem Solving'. It's called the Chinese Room argument, and it's got me questioning everything about AI:
Chinese Room Argument
Imagine you are sitting in a room with a library of rule books, a bunch of blank exercise books, and a lot of writing utensils. Your only contact with the external world is through two slots in the wall labeled input'' andoutput''. Occasionally, pieces of paper with Chinese characters come into your room through the ``input'' slot. Each time a piece of paper comes in through the input slot your task is to find the section in the rule books that matches the pattern of Chinese characters on the piece of paper.
The rule book will tell you which pattern of characters to inscribe the appropriate pattern on a blank piece of paper. Once you have inscribed the appropriate pattern according to the rule book your task is simply to push it out the output slot.
By the way, you don't understand Chinese, nor are you aware that the symbols that you are manipulating are Chinese symbols. In fact, the Chinese characters which you have been receiving as input have been questions about a story and the output you have been producing has been the appropriate, perhaps even "insightful, " responses to the questions asked.
Indeed, to the outside questioners your output has been so good that they are convinced that whoever (or whatever) has been producing the responses to their queries must be a native speaker of, or at least extremely fluent .
This image
"Inside: 'I'm just following rules to arrange symbols, but I don't understand Chinese.' Outside: 'Whoever is in there must be fluent in Chinese!'
This image perfectly captures the essence of the Chinese Room argument in AI philosophy. It challenges our understanding of machine intelligence and language comprehension.
Now what do you think, tell me in the comments to expand on the matter if this is possible?
Tumblr media
0 notes
hu16ma · 3 months ago
Text
Bridging Worlds: Web Dev meets Defense Tech Innovation 💻🚀
Hey everyone! As many of you know, I'm passionate about web and mobile development, particularly in the .NET ecosystem. I love helping fellow developers master software architecture, engineering principles, and performance optimization.
But today, I want to share another side of my tech interests that some of you might not know about - my fascination with defense technology innovation.
Key points:
Web Dev Remains My Core: I'm still fully committed to web development and will continue sharing insights on .NET, software architecture, and engineering best practices.
Innovation Inspires Across Fields: Recent advancements in aerospace and defense tech (like new aircraft designs) showcase incredible engineering that can inspire us as software developers.
Transferable Principles: Many concepts in defense tech - like system reliability, security, and performance optimization - directly apply to web development.
Ethical Considerations: Just as we prioritize user privacy and data security in web dev, ethical considerations are crucial in all tech fields, including defense.
I believe that exploring diverse areas of technology can broaden our perspectives and improve our problem-solving skills in our primary fields.
Question for you: How do you think principles from other tech fields (like aerospace or defense) could be applied to improve web and mobile development?
Let's discuss how cross-discipline learning can make us better developers!
1 note · View note
hu16ma · 3 months ago
Text
Integral type
is a simple value type that represents whole numbers with no fraction (such as -1, 0, 1, 2, 3). The most popular in this category is the int data type. There are two subcategories of integral types : (signed and unsigned ) integral types.
Tumblr media
1 note · View note
hu16ma · 4 months ago
Text
Choosing the Right Data Type in C#
One of the topics that I studied and which I always review and look for updates that come with each version of the language in terms of which new types the language has begun to support and what improvements have occurred in previous types. After reading a document from Microsoft that talks about how to choose the correct data type? And when? It was a beautiful document, and although I read it within the training course, I made a summary of it with the help of AI tools
Choosing the Right Data Type in C#
1-Boundary Value Range Requirements
-Select a data type that fits the expected value range. -Example: For values between 1 and 10,000, use ushort (0 to 65,535) instead of byte or int.
2-Fit the Data, Not Performance Optimization
-Prioritize choosing a data type that matches the data, rather than optimizing for performance. -Avoid "premature optimization" by guessing; measure performance empirically later.
3-Library Function Compatibility
-Choose data types compatible with library functions' input and output. Example: For date calculations, use int or double with System.TimeSpan and System.DateTime classes.
4-Impact on Other Systems
-Consider how data will be consumed by other applications or systems, like databases. -Ensure compatibility with the type system of the external system (e.g., SQL Server).
5-Basic Data Types for Simplicity
-Use basic types for most cases : int => for whole numbers decimal => for money bool => for true/false string => for alphanumeric values Specialty Complex Types for Specific Situations
-Utilize specific .NET types when needed : byte => for encoded data or different character sets double => for geometric or scientific calculations System.DateTime => for specific date and time values System.TimeSpan => for spans of time (years, months, days, etc.) By following these guidelines, you can make informed decisions about the appropriate data types for your C# applications, ensuring both functionality and efficiency.
1 note · View note
hu16ma · 4 months ago
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
hu16ma · 4 months ago
Text
A series of shortcuts in the code
Which one did you like 😁👨‍💻 ?
Tumblr media
3 notes · View notes