<?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: Aditya tambi</title>
    <description>The latest articles on DEV Community by Aditya tambi (@aditya_tambi).</description>
    <link>https://dev.to/aditya_tambi</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%2F2453671%2F94ca59a3-10d2-4c81-994a-d51bf760857e.png</url>
      <title>DEV Community: Aditya tambi</title>
      <link>https://dev.to/aditya_tambi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/aditya_tambi"/>
    <language>en</language>
    <item>
      <title>GoLang</title>
      <dc:creator>Aditya tambi</dc:creator>
      <pubDate>Sun, 15 Jun 2025 15:17:19 +0000</pubDate>
      <link>https://dev.to/aditya_tambi/golang-23i4</link>
      <guid>https://dev.to/aditya_tambi/golang-23i4</guid>
      <description>&lt;p&gt;I have been coding React micro-apps in Typscript in my organisation. Occasionally taking on minor SQL or cloud work. &lt;br&gt;
I want to dive into any backend technology and get my hands dirty there.&lt;/p&gt;

&lt;p&gt;I have spent God knows how many months trying to figure out what I should learn and build.&lt;/p&gt;

&lt;p&gt;Now I have decided, the answer is GoLang. I will start with &lt;a href="https://gobyexample.com/" rel="noopener noreferrer"&gt;gobyexample&lt;/a&gt;. &lt;br&gt;
Have decided to put my daily progress here before shutting down my pc for the day.&lt;/p&gt;

&lt;p&gt;Kudos! To a fresh new start!!&lt;/p&gt;

</description>
      <category>go</category>
    </item>
    <item>
      <title>Set-up ladybird in mac</title>
      <dc:creator>Aditya tambi</dc:creator>
      <pubDate>Tue, 19 Nov 2024 10:25:28 +0000</pubDate>
      <link>https://dev.to/aditya_tambi/set-up-ladybird-in-mac-22h8</link>
      <guid>https://dev.to/aditya_tambi/set-up-ladybird-in-mac-22h8</guid>
      <description>&lt;p&gt;In case you missed out on this new ongoing project, visit the website  &lt;a href="https://ladybird.org/" rel="noopener noreferrer"&gt;Ladybird&lt;/a&gt; to get acquainted.&lt;/p&gt;

&lt;p&gt;The official &lt;a href="https://github.com/LadybirdBrowser/ladybird/blob/master/Documentation/BuildInstructionsLadybird.md" rel="noopener noreferrer"&gt;build instructions&lt;/a&gt;. This is a step by step guide to build ladybird locally in MacOS.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;1. Install Build Prerequisites
You need development tools and dependencies. Use the terminal to install them. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Install Xcode and Command Line Tools&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;xcode-select --install
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In my case the xcode-select was already installed.&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%2F68iixm5zkk9pskzerpua.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%2F68iixm5zkk9pskzerpua.png" alt="install xcode" width="800" height="19"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;xcode provides compilers like clang, and tools like git. Essential for building software on macOS. We need it for compiling the source code and managing version control.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install Homebrew (if not already installed)&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;/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fm9k84vjp5yjex8pr6y29.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%2Fm9k84vjp5yjex8pr6y29.png" alt="install homebrew" width="800" height="333"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Homebrew is a package manager for macOS that simplifies the installation of software and libraries. We would use it to install and manage additional build dependencies like cmake, nasm, and ninja.&lt;/p&gt;

&lt;p&gt;Keep in mind for Homebrew that it needs to be added in your PATH&lt;br&gt;
the following would show up on your console.&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%2Fu5wxsb5viej65s8mpbgx.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%2Fu5wxsb5viej65s8mpbgx.png" alt="set PATH in homebrew" width="603" height="296"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install Required tools via Homebrew&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;brew install autoconf autoconf-archive automake ccache cmake nasm ninja pkg-config
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;ccache: a compiler cache that speeds up recompilation by caching previous compilations. Will reduce build time when making frequent modifications to source code.&lt;/li&gt;
&lt;li&gt;cmake: a cross-platform build system generator. Will help build and configure the build environment based on system-specific conditions.&lt;/li&gt;
&lt;li&gt;nasm: Required for building parts of code written in assembly.&lt;/li&gt;
&lt;li&gt;ninja: helps build systems in parallel, reducing the build time.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;em&gt;Don't think a screenshot is needed here. Simply run the command.&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The build guide mentions an optional to get clang from Homebrew.&lt;br&gt;
If you face issues with Xcode’s default clang, install a newer version: _I did not need to install this&lt;br&gt;
&lt;/p&gt;
&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;brew install llvm@18
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;2. Download Ladybird Source Code&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Clone the repository&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;git clone https://github.com/LadybirdBrowser/ladybird.git
cd ladybird
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;3. Build Ladybird&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Using the ladybird.sh script&lt;/strong&gt;&lt;br&gt;
This script simplifies the build process.&lt;/p&gt;

&lt;p&gt;To build and run the Ladybird browser:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;./Meta/ladybird.sh run ladybird
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This command will take a little while to run in your terminal. Will install other dependencies if you have missing. And then it should run the ladybird browser in your machine&lt;/p&gt;

&lt;p&gt;Note: if you have downloaded clang using Homebrew then build command will look like this&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;CC=$(brew --prefix llvm)/bin/clang CXX=$(brew --prefix llvm)/bin/clang++ ./Meta/ladybird.sh run
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then when it is done, when you open any url in ladybird it should work and show in your terminal as well.&lt;/p&gt;

&lt;p&gt;Currently this is what google.com looks like in ladybird browser&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%2Fmx5lkpw8w3hig512z4sj.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%2Fmx5lkpw8w3hig512z4sj.png" alt="Screenshot of google" width="800" height="697"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;and in terminal you can check something like this (even errors)&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%2Fa94tqh6dglh1wf601qw1.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%2Fa94tqh6dglh1wf601qw1.png" alt="terminal image of success and error" width="666" height="158"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As of November 2024, ladybird is in pre-alpha stage. Hence the complexity in build and run. That also explains the look of google's homepage as well.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>web</category>
    </item>
  </channel>
</rss>
