<?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>DEV Community: Md. Masud Rana</title>
    <description>The latest articles on DEV Community by Md. Masud Rana (@hasib787).</description>
    <link>https://dev.to/hasib787</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%2F345239%2Fc2caf488-30b1-49d1-b580-2ffcaeefeb95.jpg</url>
      <title>DEV Community: Md. Masud Rana</title>
      <link>https://dev.to/hasib787</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hasib787"/>
    <language>en</language>
    <item>
      <title>Stylish Father's Day card</title>
      <dc:creator>Md. Masud Rana</dc:creator>
      <pubDate>Sat, 28 Jun 2025 21:55:42 +0000</pubDate>
      <link>https://dev.to/hasib787/stylish-fathers-day-card-5a6i</link>
      <guid>https://dev.to/hasib787/stylish-fathers-day-card-5a6i</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for &lt;a href="https://dev.to/challenges/frontend-2025-06-04"&gt;Frontend Challenge - June Celebrations, CSS Art: June Celebrations&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Inspiration
&lt;/h2&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;code link&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://github.com/Hasib787/fathers-day-card" rel="noopener noreferrer"&gt;https://github.com/Hasib787/fathers-day-card&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;live link&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://fathers-day-card-wheat.vercel.app/" rel="noopener noreferrer"&gt;https://fathers-day-card-wheat.vercel.app/&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Journey
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Stylish Father's Day card&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Multiple white clouds are drifting slowly left to right&lt;br&gt;
Birds flapping wings, flying horizontally across the upper portion of the screen&lt;br&gt;
Colorful hot air balloons floating gently from bottom to top&lt;br&gt;
Small airplanes flying up at different positions&lt;br&gt;
The Father’s Day card in the center that flips when clicked&lt;/p&gt;

</description>
      <category>frontendchallenge</category>
      <category>devchallenge</category>
      <category>css</category>
    </item>
    <item>
      <title>What are the best tutorials for react.js?</title>
      <dc:creator>Md. Masud Rana</dc:creator>
      <pubDate>Wed, 15 Apr 2020 18:16:04 +0000</pubDate>
      <link>https://dev.to/hasib787/what-are-the-best-tutorials-to-react-5h39</link>
      <guid>https://dev.to/hasib787/what-are-the-best-tutorials-to-react-5h39</guid>
      <description>&lt;p&gt;Suggest me, What are the best way to learn react. &lt;/p&gt;

</description>
      <category>react</category>
      <category>javascript</category>
    </item>
    <item>
      <title>How to Create HTTP Server With Node.js</title>
      <dc:creator>Md. Masud Rana</dc:creator>
      <pubDate>Wed, 18 Mar 2020 15:36:29 +0000</pubDate>
      <link>https://dev.to/hasib787/how-to-creat-http-server-with-node-js-3lha</link>
      <guid>https://dev.to/hasib787/how-to-creat-http-server-with-node-js-3lha</guid>
      <description>&lt;p&gt;http-Server&lt;br&gt;
Creating a simple proxy server in node.js&lt;/p&gt;

&lt;p&gt;Installation:&lt;/p&gt;

&lt;p&gt;Globally via npm&lt;/p&gt;

&lt;p&gt;brew install http-server&lt;/p&gt;

&lt;p&gt;Running on-demand: npx http-server [path] [options]&lt;/p&gt;

&lt;p&gt;As a dependency in your npm package: npm install http-server&lt;/p&gt;

&lt;p&gt;Usage: http-server [path] [options]&lt;/p&gt;

&lt;p&gt;[path] defaults to ./public if the folder exists, and ./ otherwise.&lt;/p&gt;

&lt;p&gt;Now you can visit &lt;a href="http://localhost:8080"&gt;http://localhost:8080&lt;/a&gt; to view your server&lt;/p&gt;

&lt;p&gt;Note: Caching is on by default. Add -c-1 as an option to disable caching.&lt;/p&gt;

&lt;p&gt;Code-&lt;/p&gt;

&lt;p&gt;let http = require('http');&lt;/p&gt;

&lt;p&gt;http.createServer(onRequest).listen(3000);&lt;/p&gt;

&lt;p&gt;function onRequest(client_request, client_res) {&lt;br&gt;
  console.log('serve: ' + client_request.url);&lt;/p&gt;

&lt;p&gt;let options = {&lt;br&gt;
    hostname: '&lt;a href="http://www.google.com"&gt;www.google.com&lt;/a&gt;',&lt;br&gt;
    port: 80,&lt;br&gt;
    path: client_request.url,&lt;br&gt;
    method: client_request.method,&lt;br&gt;
    headers: client_request.headers&lt;br&gt;
  };&lt;/p&gt;

&lt;p&gt;let proxy = http.request(options, function (res) {&lt;br&gt;
    client_res.writeHead(res.statusCode, res.headers)&lt;br&gt;
    res.pipe(client_res, {&lt;br&gt;
      end: true&lt;br&gt;
    });&lt;br&gt;
  });&lt;/p&gt;

&lt;p&gt;client_req.pipe(proxy, {&lt;br&gt;
    end: true&lt;br&gt;
  });&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;More details-&lt;a href="https://github.com/Hasib787/http-Server"&gt;https://github.com/Hasib787/http-Server&lt;/a&gt;&lt;/p&gt;

</description>
      <category>node</category>
      <category>javascript</category>
      <category>codenewbie</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
