<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Md. Tasnimul Hassan</title>
    <description>The latest articles on Forem by Md. Tasnimul Hassan (@tasnimulhassan02).</description>
    <link>https://forem.com/tasnimulhassan02</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1245537%2F2b01ad22-5f73-47aa-8498-3a3e8648b327.png</url>
      <title>Forem: Md. Tasnimul Hassan</title>
      <link>https://forem.com/tasnimulhassan02</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/tasnimulhassan02"/>
    <language>en</language>
    <item>
      <title>Best stack for Web Development....</title>
      <dc:creator>Md. Tasnimul Hassan</dc:creator>
      <pubDate>Fri, 17 May 2024 08:02:45 +0000</pubDate>
      <link>https://forem.com/tasnimulhassan02/best-stack-for-web-development-2mfm</link>
      <guid>https://forem.com/tasnimulhassan02/best-stack-for-web-development-2mfm</guid>
      <description>&lt;p&gt;What is the best tech stack out there for web development? I mean which languages or frameworks should I learn write now for both frontend and backend. Specially considering the future of web development. I know it depends on the project or the company but still there are few things which has and will have high demand. Please comment down if you want to share your valuable feedback. I would appreciate that a lot!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>learning</category>
      <category>discuss</category>
    </item>
    <item>
      <title>HTML IN A NUTSHELL</title>
      <dc:creator>Md. Tasnimul Hassan</dc:creator>
      <pubDate>Fri, 03 May 2024 15:27:32 +0000</pubDate>
      <link>https://forem.com/tasnimulhassan02/html-in-a-nutshell-2ngk</link>
      <guid>https://forem.com/tasnimulhassan02/html-in-a-nutshell-2ngk</guid>
      <description>&lt;p&gt;&lt;strong&gt;HTML (HyperText Markup Language)&lt;/strong&gt; is often considered one of the easiest programming languages to learn. It is the primary component of web development, serving as the foundation upon which the &lt;strong&gt;online world&lt;/strong&gt; is built. Using HTML one can create intriguing websites, stimulating user interface and offer seamless user experience. In this article, I will share all the tags you need to use &amp;amp; know in HTML. You can use these tags and start creating webpages &lt;strong&gt;right now&lt;/strong&gt;!&lt;/p&gt;




&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0q5fr4ei1812gcafnj22.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0q5fr4ei1812gcafnj22.png" alt="HTML IN A NUTSHELL" width="800" height="382"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Document Structure&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE&amp;gt;: Declares the document type and version of HTML being used.
&amp;lt;html&amp;gt;: Represents the root of an HTML document.
&amp;lt;head&amp;gt;: Contains meta-information about the document.
&amp;lt;title&amp;gt;: Defines the title of the document, displayed in the 
browser's title bar or tab.
&amp;lt;meta&amp;gt;: Provides metadata about the HTML document.
&amp;lt;link&amp;gt;: Defines the relationship between the current document and an external resource.
&amp;lt;style&amp;gt;: Contains CSS rules for the document.
&amp;lt;script&amp;gt;: Embeds client-side scripts or links to external scripts.
&amp;lt;body&amp;gt;: Contains the content of the document.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;&lt;strong&gt;Text Formatting&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;p&amp;gt;: Defines a paragraph.
&amp;lt;h1&amp;gt;, &amp;lt;h2&amp;gt;, &amp;lt;h3&amp;gt;, &amp;lt;h4&amp;gt;, &amp;lt;h5&amp;gt;, &amp;lt;h6&amp;gt;: Headings of different levels.
&amp;lt;strong&amp;gt;: Indicates strong importance, typically rendered as bold.
&amp;lt;em&amp;gt;: Emphasizes text, typically rendered as italic.
&amp;lt;u&amp;gt;: Defines underlined text.
&amp;lt;s&amp;gt; or &amp;lt;strike&amp;gt;: Defines strikethrough text.
&amp;lt;sup&amp;gt;: Defines superscript text.
&amp;lt;sub&amp;gt;: Defines subscript text.
&amp;lt;br&amp;gt;: Inserts a single line break.
&amp;lt;hr&amp;gt;: Represents a thematic break between paragraph-level elements.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;&lt;strong&gt;Lists&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;ul&amp;gt;: Defines an unordered list.
&amp;lt;ol&amp;gt;: Defines an ordered list.
&amp;lt;li&amp;gt;: Defines a list item within &amp;lt;ul&amp;gt; or &amp;lt;ol&amp;gt;.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;&lt;strong&gt;Links and Anchors&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;a&amp;gt;: Defines a hyperlink.
&amp;lt;href&amp;gt;: Specifies the URL of the page the link goes to.
&amp;lt;target&amp;gt;: Specifies where to open the linked document.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;&lt;strong&gt;Images and Multimedia&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;img&amp;gt;: Embeds an image into the document.
&amp;lt;src&amp;gt;: Specifies the URL of the image.
&amp;lt;alt&amp;gt;: Specifies an alternate text for the image.
&amp;lt;figure&amp;gt;: Represents self-contained content, such as images, diagrams, photos, code listings, etc.
&amp;lt;figcaption&amp;gt;: Provides a caption for the content within &amp;lt;figure&amp;gt;.
&amp;lt;audio&amp;gt;: Embeds sound content into the document.
&amp;lt;video&amp;gt;: Embeds video content into the document.
&amp;lt;source&amp;gt;: Specifies multiple media resources for media elements like &amp;lt;audio&amp;gt; and &amp;lt;video&amp;gt;.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;&lt;strong&gt;Tables&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;table&amp;gt;: Defines a table.
&amp;lt;tr&amp;gt;: Defines a row in a table.
&amp;lt;th&amp;gt;: Defines a header cell in a table.
&amp;lt;td&amp;gt;: Defines a data cell in a table.
&amp;lt;thead&amp;gt;, &amp;lt;tbody&amp;gt;, &amp;lt;tfoot&amp;gt;: Groups header, body, and footer content in a table.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;&lt;strong&gt;Forms&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;form&amp;gt;: Represents a form for user input.
&amp;lt;input&amp;gt;: Defines an input control.
&amp;lt;textarea&amp;gt;: Defines a multiline text input control.
&amp;lt;button&amp;gt;: Defines a clickable button.
&amp;lt;select&amp;gt;: Creates a drop-down list.
&amp;lt;option&amp;gt;: Defines an option in a drop-down list.
&amp;lt;label&amp;gt;: Defines a label for an &amp;lt;input&amp;gt; element.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;&lt;strong&gt;Semantic Elements&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;header&amp;gt;, &amp;lt;footer&amp;gt;, &amp;lt;main&amp;gt;, &amp;lt;nav&amp;gt;, &amp;lt;div&amp;gt;, &amp;lt;article&amp;gt;, &amp;lt;section&amp;gt;, &amp;lt;aside&amp;gt;: Defines different parts of a webpage, aiding in its semantic structure.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;&lt;strong&gt;Miscellaneous&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;iframe&amp;gt;: Embeds another HTML page into the current document.
&amp;lt;canvas&amp;gt;: Used for graphics and visualizations that are rendered dynamically.
&amp;lt;embed&amp;gt;, &amp;lt;object&amp;gt;, &amp;lt;param&amp;gt;: Embeds external resources into a document.

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;p&gt;You can start writing and make awesome projects with only HTML in any plain text editor, such as Notepad (Windows), TextEdit (Mac), or gedit (Linux), or more advanced code editors like Visual Studio Code or even online editors like CodePen.&lt;/p&gt;

&lt;p&gt;While mastering HTML might take some practice, getting started with it is relatively easy, making it an accessible entry point for anyone interested in coding or web development.&lt;/p&gt;




&lt;p&gt;If you like my article, you can follow me on &lt;a href="https://www.linkedin.com/in/tasnimul-hassan-646932230/" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>html</category>
      <category>webdev</category>
      <category>tutorial</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Deciding Career Path</title>
      <dc:creator>Md. Tasnimul Hassan</dc:creator>
      <pubDate>Fri, 29 Mar 2024 17:41:11 +0000</pubDate>
      <link>https://forem.com/tasnimulhassan02/deciding-career-path-3l7l</link>
      <guid>https://forem.com/tasnimulhassan02/deciding-career-path-3l7l</guid>
      <description>&lt;p&gt;Hello guys. Hope you are doing well. Today I'm gonna reveal my decision regarding &lt;strong&gt;career path&lt;/strong&gt;. After a lot of confusion, asking seniors and a lot of time spent on researching I've decided I'm gonna &lt;strong&gt;pursue&lt;/strong&gt; my career in &lt;strong&gt;Data Science&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Data Science?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Data science&lt;/strong&gt; uses a combination of various tools, algorithms, formulas, and machine learning principles to draw hidden patterns from raw data. Following that, these patterns can be applied to &lt;strong&gt;improve&lt;/strong&gt; mechanism of many aspects and have an impact on &lt;strong&gt;decision-making&lt;/strong&gt;. Now you guys will be asking why I have chosen that. The reason behind choosing Data Science as my career path is my &lt;strong&gt;peak interest&lt;/strong&gt; in data, &lt;strong&gt;revolutionizing applications&lt;/strong&gt; of Data Science and &lt;strong&gt;huge demand&lt;/strong&gt; of data specialist in technology sector. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fajzvx549e87xagza273t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fajzvx549e87xagza273t.png" alt="Applications of Data science" width="800" height="547"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Data Science?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Firstly,&lt;/strong&gt; I have realized that I am really curious about data. It makes me exited. Cause it's not just some random information about an entity. It tells a story as we can know the background story as we go deep. We can &lt;strong&gt;compare, manipulate, analyze, predict future&lt;/strong&gt; and many more with the help of data science. That's why it's so much interesting to me. &lt;strong&gt;Secondly,&lt;/strong&gt; now in the age of AI data science has reached new heights. Today Data Science is &lt;strong&gt;dominating&lt;/strong&gt; almost every sector of our society such as Business, Healthcare, Manufacturing, Retail, Financial Services etc. It is capable of revolutionizing every aspect of our life. Infect it has been doing already. &lt;strong&gt;Lastly&lt;/strong&gt;, the demand for data scientists has soared to unprecedented heights. Businesses all throughout the world are keen to use their knowledge as know they depend more than ever on people who can effectively navigate through data due to the growth of big data. This is proven by the large number of data scientist job postings, many of which come with &lt;strong&gt;attractive&lt;/strong&gt; salary packages. Choosing a career in data science offers financial rewards in addition to job &lt;strong&gt;stability&lt;/strong&gt;. It is anticipated that the demand will &lt;strong&gt;increase&lt;/strong&gt; even more as 2024 approaches. That's why after thoughtful consideration I've chosen &lt;strong&gt;Data Science&lt;/strong&gt; as my main &lt;strong&gt;career path&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Small Twist
&lt;/h2&gt;

&lt;p&gt;However, there is a small &lt;strong&gt;twist&lt;/strong&gt; . Though I've chosen a career in Data Science, for now I'm gonna focus on &lt;strong&gt;Web Development&lt;/strong&gt; . Although there are rumors that AI will replace developers soon but I still think Web Development is a very basic thing every techie should know. Moreover, there is a very good amount of &lt;strong&gt;demand&lt;/strong&gt; for backend developers specially &lt;strong&gt;full stack developers&lt;/strong&gt; in the local market. That's why I am going to &lt;strong&gt;focus&lt;/strong&gt; on full stack development for now. Later after getting a good grasp in development, I'm gonna &lt;strong&gt;shift to Data Science&lt;/strong&gt; and get in-depth skilled in it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Final Words
&lt;/h2&gt;

&lt;p&gt;To end, I hope I can dominate in &lt;strong&gt;Data Science&lt;/strong&gt; and make major &lt;strong&gt;contribution&lt;/strong&gt; to the society. Another thing is You never know what may happen in future. That's why one should be always prepared to &lt;strong&gt;change&lt;/strong&gt; their domain if it becomes necessary to cope up with industry. Though I have chosen &lt;strong&gt;Data Science&lt;/strong&gt; as my career path, in future I might shift to another path if that's what I have to do. For one should never stop &lt;strong&gt;learning&lt;/strong&gt; and one should always &lt;strong&gt;explore&lt;/strong&gt; different technologies.&lt;/p&gt;

</description>
      <category>career</category>
      <category>learning</category>
      <category>webdev</category>
      <category>datascience</category>
    </item>
    <item>
      <title>Learning stuff.....</title>
      <dc:creator>Md. Tasnimul Hassan</dc:creator>
      <pubDate>Sun, 17 Mar 2024 09:41:55 +0000</pubDate>
      <link>https://forem.com/tasnimulhassan02/learning-stuff-34k1</link>
      <guid>https://forem.com/tasnimulhassan02/learning-stuff-34k1</guid>
      <description>&lt;p&gt;Yes, I am &lt;strong&gt;alive&lt;/strong&gt;. It's been a long time since I last posted here. Last few months been very busy for me. Still I managed time to learn some new stuff. I spend last few weeks learning &lt;strong&gt;MySQL&lt;/strong&gt; using xampp. Actually it was a requirement for a university course named database system. I'm supposed to make a web based project using MySQL. To be honest it was easier than I thought. Moreover, also started learning &lt;strong&gt;German&lt;/strong&gt; language as I was hoping to go to Germany for my masters. Been practicing playing &lt;strong&gt;guitar&lt;/strong&gt; too. Since my childhood I wanted to learn guitar but the right opportunity didn't came. However, I am practicing daily now and It's a bit harder than I thought. I'm learning a few other things also. But the most important thing was to decide my &lt;strong&gt;career path&lt;/strong&gt; as a techie. I was in a lot of confusion regarding this matter. But finally I was able to take a decision which you will get to know another day.&lt;/p&gt;

</description>
      <category>career</category>
      <category>learning</category>
    </item>
    <item>
      <title>New Year Resolution 2024</title>
      <dc:creator>Md. Tasnimul Hassan</dc:creator>
      <pubDate>Sun, 31 Dec 2023 18:53:14 +0000</pubDate>
      <link>https://forem.com/tasnimulhassan02/2024-new-year-resolution-2po3</link>
      <guid>https://forem.com/tasnimulhassan02/2024-new-year-resolution-2po3</guid>
      <description>&lt;p&gt;&lt;strong&gt;It's&lt;/strong&gt; been on my mind for some time. No, actually it's been on my mind for a long time. But for some weird reasons I really couldn't start my journey in realm of tech till now. Anyway, I've decided that 2024 is the year I break free from procrastination and start my adventure in the tech world. I have big dreams and goals, and I'm excited to see where this journey takes me. From the beginning of 2024, I'm putting all my energy into building my career from scratch. I know i am behind a lot, but Insha'Allah I will catch up in no time. And here, I'll be sharing updates on my journey along the way. Hopefully, i will connect with some wonderful like minded people here who are on their own voyage of self-discovery and professional growth. Together, we will help &amp;amp; support one another in our collective pursuit of excellence. Who knows what the future holds? Perhaps, a decade from now, you'll witness the transformation of a person dedicated to changing the world for the better. It's a commitment to a journey that transcends boundaries and dreams of making a lasting impact. Here's to the beginning of my adventure to find my ONE PIECE!&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>career</category>
      <category>softwareengineering</category>
    </item>
  </channel>
</rss>
