<?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: kritik sah</title>
    <description>The latest articles on DEV Community by kritik sah (@kritik).</description>
    <link>https://dev.to/kritik</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%2F488438%2F44dc8b5b-c3e6-48bb-968c-142b0e56c072.jpg</url>
      <title>DEV Community: kritik sah</title>
      <link>https://dev.to/kritik</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kritik"/>
    <language>en</language>
    <item>
      <title>Connect your latest wagmi + viem with ethersjs to use ethers provider, signer with wagmi</title>
      <dc:creator>kritik sah</dc:creator>
      <pubDate>Sun, 09 Jul 2023 21:01:28 +0000</pubDate>
      <link>https://dev.to/kritik/connect-your-latest-wagmi-viem-with-ethersjs-to-use-ethers-provider-signer-with-wagmi-2hg3</link>
      <guid>https://dev.to/kritik/connect-your-latest-wagmi-viem-with-ethersjs-to-use-ethers-provider-signer-with-wagmi-2hg3</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/YNsuJT5orgU"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Highlights&lt;br&gt;
🚀 Learn how to connect metaMask wallet with Wagmi using Ethers.js&lt;br&gt;
🎯 Resolve issues faced while using Wagami + Ethers combination&lt;br&gt;
📱 Connect your Metamask wallet with Wagmi application&lt;br&gt;
🚪 Log in and log out functionality with console logging of signer&lt;br&gt;
⚙️ Create a provider and configure the chain for Wagmi&lt;br&gt;
🔗 Use connectors like Metamask or WalletConnect&lt;br&gt;
✍️ Provide signature functionality for various tools using Ethers.js&lt;/p&gt;

&lt;p&gt;In this exciting video, we explore the integration of wagmi and Viem with ethers.js, enabling seamless interaction with the Ethereum blockchain. Join us as we dive into the world of Web3 development and learn how to leverage the power of ethers.js to connect to an Ethereum provider and utilize signers for secure transactions.&lt;/p&gt;

&lt;p&gt;🚀 Discover the possibilities of wagmi, the innovative decentralized application framework, combined with Viem, a powerful user interface library. With this dynamic duo, you'll be equipped to create remarkable decentralized applications on the Ethereum network.&lt;/p&gt;

&lt;p&gt;🔗 Whether you're a seasoned developer or a newcomer to the world of Ethereum, this tutorial provides step-by-step guidance on setting up your development environment, integrating wagmi, Viem, and ethers.js, and implementing essential functionality using Ethereum providers and signers.&lt;/p&gt;

&lt;p&gt;💡 Don't miss out on this opportunity to level up your Ethereum development skills and unlock the potential of Web3. Join us as we bridge the gap between wagmi, Viem, and ethers.js, and empower your applications with the full capabilities of the Ethereum ecosystem.&lt;/p&gt;

&lt;p&gt;🔔 Stay tuned, hit that notification bell, and be the first to watch this informative video. Like, share, and subscribe to our channel to stay updated with the latest Ethereum development content. Let's wagmi together in the world of Ethereum Web3!&lt;/p&gt;

</description>
      <category>web3</category>
      <category>ethereum</category>
      <category>nextjs</category>
      <category>react</category>
    </item>
    <item>
      <title>[EASY] How to center an object or Image using HTML and CSS flex | IT Rebels</title>
      <dc:creator>kritik sah</dc:creator>
      <pubDate>Mon, 21 Nov 2022 17:03:52 +0000</pubDate>
      <link>https://dev.to/kritik/easy-how-to-center-an-object-or-image-using-html-and-css-flex-it-rebels-1o27</link>
      <guid>https://dev.to/kritik/easy-how-to-center-an-object-or-image-using-html-and-css-flex-it-rebels-1o27</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/p1-aiCWHW4Y"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  How to center an element horizontally and vertically
&lt;/h2&gt;

&lt;p&gt;Flexbox method&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;    &lt;span class="nt"&gt;display&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="nt"&gt;-webkit-flexbox&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
    &lt;span class="nt"&gt;display&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="nt"&gt;-ms-flexbox&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
    &lt;span class="nt"&gt;display&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="nt"&gt;-webkit-flex&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
    &lt;span class="nt"&gt;display&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="nt"&gt;flex&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
    &lt;span class="nt"&gt;-webkit-flex-align&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="nt"&gt;center&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
    &lt;span class="nt"&gt;-ms-flex-align&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="nt"&gt;center&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
    &lt;span class="nt"&gt;-webkit-align-items&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="nt"&gt;center&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
    &lt;span class="nt"&gt;align-items&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="nt"&gt;center&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
    &lt;span class="nt"&gt;justify-content&lt;/span&gt;&lt;span class="o"&gt;:&lt;/span&gt; &lt;span class="nt"&gt;center&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>a11y</category>
      <category>resources</category>
    </item>
    <item>
      <title>Confused about freelancing.</title>
      <dc:creator>kritik sah</dc:creator>
      <pubDate>Tue, 01 Nov 2022 21:29:20 +0000</pubDate>
      <link>https://dev.to/kritik/confused-about-freelancing-9ca</link>
      <guid>https://dev.to/kritik/confused-about-freelancing-9ca</guid>
      <description>&lt;p&gt;Hello everyone, I am Kritik sah, a learner and a jr. Frontend developer.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Having trouble finding work as a beginner freelancer, with almost no contacts to start.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;With my current skill set I think I have what it takes to be a developer, but finding clients is a great challenge for me.&lt;/p&gt;

&lt;p&gt;Sharing my portfolio:&lt;br&gt;
&lt;a href="https://kritik.servicesstrategy.com/"&gt;https://kritik.servicesstrategy.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/ZmE6qdgQ-74"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Skill set:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Strong point confident and experienced with&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Html&lt;/li&gt;
&lt;li&gt;CSS&lt;/li&gt;
&lt;li&gt;Bootstrap&lt;/li&gt;
&lt;li&gt;JavaScript es6+&lt;/li&gt;
&lt;li&gt;jQuery&lt;/li&gt;
&lt;li&gt;Slick carousel&lt;/li&gt;
&lt;li&gt;basic Php&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;Some projects I built or worked on using them:&lt;/em&gt;&lt;br&gt;
&lt;a href="https://wpcsindia.com/services/"&gt;&lt;br&gt;
&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs33oimc70wkzxrjvc0z8.jpg" alt="Image description" width="400" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://tonicww.in/tte/"&gt;&lt;br&gt;
&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fztvq4pihkswkxq9oha9k.jpg" alt="Image description" width="400" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.nucleusofficeparks.com/"&gt;&lt;br&gt;
&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fotvlta8gb3wvevx66344.jpg" alt="Image description" width="400" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.zyduswellness.com/"&gt;&lt;br&gt;
&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fga8dreg2jf08nwqux9am.jpg" alt="Image description" width="400" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://birlacellulose.com/traceability-greentrack.php"&gt;&lt;br&gt;
&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fupv7vxkoyeidr9niran8.jpg" alt="Image description" width="400" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.livafluidfashion.com/livamissdiva/"&gt;&lt;br&gt;
&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Faodls6jqudanqkb82q8s.jpg" alt="Image description" width="400" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://infinitelearning.org.in/"&gt;&lt;br&gt;
&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgefvjkpegohummuiwusd.jpg" alt="Image description" width="400" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://kritik.servicesstrategy.com/"&gt;https://kritik.servicesstrategy.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Built some projects using them need more practice&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;React.js&lt;/li&gt;
&lt;li&gt;Tailwind CSS + headless UI / Chakra UI&lt;/li&gt;
&lt;li&gt;Next.js&lt;/li&gt;
&lt;li&gt;Typescript&lt;/li&gt;
&lt;li&gt;Recoil / useContext + useReducer&lt;/li&gt;
&lt;li&gt;Axios&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;Some projects I built or worked on using them:&lt;/em&gt;&lt;br&gt;
&lt;a href="https://joykites.cryptolancer.in/"&gt;&lt;br&gt;
&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs4d38rsv4mbz54ps8njw.jpg" alt="Image description" width="400" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://kritik.cryptolancer.in/"&gt;&lt;br&gt;
&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Faddrvs63314azpidwya2.jpg" alt="Image description" width="400" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://memecommerce-xi.vercel.app/"&gt;&lt;br&gt;
&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2hat53h5av73sryga7t3.jpg" alt="Image description" width="400" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://next-instagram-kritik.vercel.app/"&gt;&lt;br&gt;
&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1if9j176szhvw8b2xbzx.jpg" alt="Image description" width="400" height="400"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://coctaildb.vercel.app/"&gt;&lt;br&gt;
&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvbc0b6ze32a6pg701pus.jpg" alt="Image description" width="400" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How can you help me?
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;By outsourcing some work to me, I mean if you have some frontend development work that you can leverage to me, that will be a great help. &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;and in return, you will get a partner who can work with you.&lt;/p&gt;

&lt;p&gt;Here is my Upwork profile:&lt;br&gt;
&lt;a href="https://www.upwork.com/freelancers/%7E017c8efb6c6d49d654"&gt;https://www.upwork.com/freelancers/~017c8efb6c6d49d654&lt;/a&gt;&lt;br&gt;
Looking forward to working with you.&lt;/p&gt;

&lt;p&gt;How to connect with me[where I can answer you within 1 hr.]:&lt;br&gt;
WhatsApp: &lt;a href="https://wa.link/xpwssg"&gt;https://wa.link/xpwssg&lt;/a&gt;&lt;br&gt;
Instagram: &lt;a href="https://www.instagram.com/kritik.sah/"&gt;https://www.instagram.com/kritik.sah/&lt;/a&gt;&lt;br&gt;
or reach out to me &lt;a href="mailto:kritiksahco@gmail.com"&gt;kritiksahco@gmail.com&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Thank you,&lt;br&gt;
Kritik Sah&lt;/p&gt;

</description>
      <category>freelancing</category>
      <category>help</category>
      <category>javascript</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Modern react + recoil + tailwind based Cocktail Db Application [Showcase]</title>
      <dc:creator>kritik sah</dc:creator>
      <pubDate>Tue, 01 Nov 2022 12:58:39 +0000</pubDate>
      <link>https://dev.to/kritik/modern-react-recoil-tailwind-based-cocktail-db-application-showcase-4f32</link>
      <guid>https://dev.to/kritik/modern-react-recoil-tailwind-based-cocktail-db-application-showcase-4f32</guid>
      <description>&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/EQv7vtb1wCI"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h1&gt;
  
  
  Modern react based Coctail Db Application
&lt;/h1&gt;

&lt;p&gt;Hello everyone i have built this application, Checkout and do let me know How is it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://youtu.be/EQv7vtb1wCI"&gt;Features (YT)&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/kritik-sah/coctaildb"&gt;Source code&lt;/a&gt;&lt;br&gt;
&lt;a href="https://coctaildb.vercel.app/"&gt;Features (🔴Live)&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;Clone this Repo&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;  npm &lt;span class="nb"&gt;install

  &lt;/span&gt;npm start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Documentation
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://youtu.be/EQv7vtb1wCI"&gt;Video Documentaion (YT)&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Authors
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://kritik.cryptolancer.in"&gt;@Kritik.sah&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🚀 About Me
&lt;/h2&gt;

&lt;p&gt;I'm a Kritik Sah, I will become a full stack developer on web2 , web3 and build awesome apps that will sove humans problems.&lt;/p&gt;

&lt;h2&gt;
  
  
  Acknowledgements &amp;amp; respect
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.thecocktaildb.com/"&gt;TheCocktailDB&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://beta.reactjs.org/"&gt;React&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://reactrouter.com/en/main"&gt;React Router&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://recoiljs.org/docs/introduction/installation"&gt;Recoil&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://tailwindcss.com/docs/installation"&gt;tailwind Css&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://react-icons.github.io/react-icons"&gt;React Icon&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Also checkout there interactive document... &lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>javascript</category>
      <category>react</category>
      <category>recoil</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Learning Blockchain Development #day8 as a frontend developer</title>
      <dc:creator>kritik sah</dc:creator>
      <pubDate>Mon, 13 Dec 2021 18:35:06 +0000</pubDate>
      <link>https://dev.to/kritik/learning-blockchain-development-day8-as-a-frontend-developer-je2</link>
      <guid>https://dev.to/kritik/learning-blockchain-development-day8-as-a-frontend-developer-je2</guid>
      <description>&lt;p&gt;Hello Everyone, I am Kritik Sah and I am a frontend end developer.&lt;br&gt;
I use HTML, CSS, Bootstrap, and JavaScript to build a frontend website.&lt;br&gt;
Now I am learning react.js &amp;amp; tailwind CSS for frontend development. NEXT.js for full-stack development and Mongodb as our database.&lt;/p&gt;

&lt;p&gt;Started My blockchain Developer journey, I am very confused about Where to start and how to progress. I did my research on this but I got myself more confused. That's why I am jumping right Into the dev space for help, support, and collaboration I will be greatful.&lt;/p&gt;

&lt;p&gt;As I commited In my previous blog.&lt;/p&gt;

&lt;h2&gt;
  
  
  We will try to build our first Dapp with next.js and tailwind CSS + Molarir or Infura in our next session
&lt;/h2&gt;

&lt;p&gt;Today I will be writing about that.&lt;br&gt;
I did it, I Did It.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flih8d6yarrmrnaindgt7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flih8d6yarrmrnaindgt7.gif" alt="Image description" width="486" height="274"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  lets see what I build.
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F75x2tz98biaydgcxa351.JPG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F75x2tz98biaydgcxa351.JPG" alt="cryptolancer.in" width="800" height="411"&gt;&lt;/a&gt;&lt;br&gt;
Link: &lt;a href="https://test.cryptolancer.in"&gt;https://test.cryptolancer.in&lt;/a&gt; you can check it out. Its live🔴.&lt;/p&gt;

&lt;p&gt;I used&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;tailwind css&lt;/li&gt;
&lt;li&gt;next.js&lt;/li&gt;
&lt;li&gt;moralis web3&lt;/li&gt;
&lt;li&gt;Daisy Ui a tailwind Ui library.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;About our project:&lt;br&gt;
Cryptolancer.in a decentralized freelancer marketplace like fiverr. without a banking system and payment gateway, It will help newcomers to start their crypto journey.&lt;/p&gt;

&lt;p&gt;Why I am building this project?&lt;br&gt;
I know bitcoin and crypto from 2017, Just imagine if I had invested $10 ever single month till now how much money I was able to make. but now I got my first job so that's how I started investing in crypto, by the way, for those who don't know, I am Kritik sah, and I am 21 year old "learner".&lt;br&gt;
I am still looking for platforms where I can earn in crypto without investing real money. and I cant find a good one. &lt;br&gt;
I found Ethlance, anytasks, ... and we all know the gas fee on eth network.and anytask is useless. &lt;/p&gt;

&lt;p&gt;"That's why I want to build a decentralized Freelance platform on L2 chains on Ethereum blockchain"&lt;br&gt;
Already started an opensource project it is available on GitHub&lt;br&gt;
&lt;a href="https://github.com/ServicesStrategy/website"&gt;https://github.com/ServicesStrategy/website&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;if you want to connect with me, and build this projects together, join our &lt;a href="https://discord.gg/2BBhj8VCpb"&gt;discord server&lt;/a&gt;. Thank you!.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>blockchain</category>
      <category>nextjs</category>
      <category>web3</category>
    </item>
    <item>
      <title>Learning Blockchain development #day1 - As a frontend developer.</title>
      <dc:creator>kritik sah</dc:creator>
      <pubDate>Sun, 05 Dec 2021 10:50:47 +0000</pubDate>
      <link>https://dev.to/kritik/learning-blockchain-development-day1-as-a-frontend-developer-579b</link>
      <guid>https://dev.to/kritik/learning-blockchain-development-day1-as-a-frontend-developer-579b</guid>
      <description>&lt;p&gt;Hello Everyone, I am Kritik Sah and i am a frontend end developer.&lt;br&gt;
I use HTML, CSS, Bootstrap and JavaScript to build a frontend website.&lt;br&gt;
Now I am learning react.js &amp;amp; tailwind css for frontend development. NEXT.js for fullstack development and Mongodb as our database.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhosasajs2k6yvtly3oyc.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhosasajs2k6yvtly3oyc.jpg" alt="my time optmization" width="800" height="565"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'm will follow this time table which i created for myself.&lt;/p&gt;

&lt;p&gt;Starting My blockchain Developer journey from today, I am very confused Where to start and how to progress. I did my research on this but i got myself more confused. That's why i am jumping right Into the dev space for help , support  and collaboration i will be greatful.&lt;/p&gt;




&lt;p&gt;What i did in last few weeks.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Trying to find out what blockchain is and how it works.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Now i understood about Blockchain  and how it works, Why we have to pay gas and How minners are helping the ecosystems, And about L2 solution to overcome high gas fees.&lt;br&gt;
Diffrence between Mainnet vs Testnet, Currency(BNB) VS TOKEN(CAKE)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;What are the requirements to Build a dAPP's, I still don't know much about this.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;We need a basic web development experience to build a simple website.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;We need a wallet lets say MetaMask.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;IDE as a beginner I think &lt;a href="https://remix.ethereum.org/"&gt;remix.ethereum.org&lt;/a&gt; will be a good fit for me, Later we will use VS Code.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Solidity(Programing Language)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;openzeppelin and other npm pakages (not sure about which to use).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;learn things one at a time and connect with people and learn together.&lt;br&gt;
if you want to connect with me, and build projects together, join my &lt;a href="https://discord.gg/2BBhj8VCpb"&gt;discord server&lt;/a&gt;. Thank you!.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  We will try to build our first Dapp with next.js and tailwind CSS + Molarir or Infura in our next session
&lt;/h2&gt;

</description>
      <category>beginners</category>
      <category>javascript</category>
      <category>webdev</category>
      <category>blockchain</category>
    </item>
  </channel>
</rss>
