<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>fareez.info</title>
    <link>https://fareez.info/</link>
    <description>Recent content on fareez.info</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Wed, 27 May 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://fareez.info/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Kiro: The Least Chaotic AI Dev Experience I’ve Had</title>
      <link>https://fareez.info/blog/kiro-least-chaotic-ai-dev-experience/</link>
      <pubDate>Wed, 27 May 2026 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/kiro-least-chaotic-ai-dev-experience/</guid>
      <description>&lt;p&gt;I was trying out &lt;a href=&#34;https://kiro.dev/&#34;&gt;Kiro&lt;/a&gt; today with very low expectations as I already have been spending more than a year with a variety of agentic coding tools extensively. As my previous client was investing heavily into AI Assisted Development, I got the chance to push it to limits to understand enough about it and that was the reason for my low expectations. But Kiro exceeded them.&lt;/p&gt;</description>
    </item>
    <item>
      <title>The Illusion of Unlimitedness</title>
      <link>https://fareez.info/blog/the-illusion-of-unlimitedness/</link>
      <pubDate>Sun, 24 May 2026 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/the-illusion-of-unlimitedness/</guid>
      <description>&lt;p&gt;Over a period of time, I have started to realize that unlimitedness is an illusion. It doesn&amp;rsquo;t bring any good. You don&amp;rsquo;t get very far with anything that you got without limits.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Why Go Is the Ideal Language for the AI Coding Era</title>
      <link>https://fareez.info/blog/why-go-for-ai-era/</link>
      <pubDate>Mon, 29 Sep 2025 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/why-go-for-ai-era/</guid>
      <description>&lt;p&gt;&lt;em&gt;Go&lt;/em&gt; is a very simple language. The philosophy it&amp;rsquo;s built on top of, is what makes it so beautiful. When I started learning Go, I had already mastered many languages both Object Oriented and Functional, but still craved for more language features in every one of them. I always missed a feature or two from another language when I was working on a project with a language.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Why Writing Still Matters in the Age of ChatGPT</title>
      <link>https://fareez.info/blog/writing-in-the-age-of-chatgpt/</link>
      <pubDate>Fri, 26 Sep 2025 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/writing-in-the-age-of-chatgpt/</guid>
      <description>&lt;p&gt;It&amp;rsquo;s been a long time since I wrote anything here. Reason is the rise of Gen AI tools. Ever since &lt;em&gt;ChatGPT&lt;/em&gt; came, I started to feel that the kind of articles I write are not relevant anymore. I&amp;rsquo;ll start to think about a topic, mostly technical, and then it&amp;rsquo;s actually just a prompt away. So I didn&amp;rsquo;t get enough motivation to write anything. I&amp;rsquo;m kind of having a dilemma if writing is not going to be the same anymore.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Retrospect: JWT Authentication using Node.js Workshop in Amrita Vishwa Vidyapeetham, Chennai</title>
      <link>https://fareez.info/blog/retrospect-jwt-auth-workshop-in-amrita-vishwa-vidyapeetham-chennai/</link>
      <pubDate>Tue, 14 Nov 2023 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/retrospect-jwt-auth-workshop-in-amrita-vishwa-vidyapeetham-chennai/</guid>
      <description>&lt;p&gt;Couple of months back, I was invited to give a talk to the Cybersecurity students of &lt;a href=&#34;https://www.amrita.edu/campus/chennai/&#34;&gt;Amrita Vishwa Vidyapeetham, Chennai&lt;/a&gt; by my professor Dr. S. Udhayakumar. When I was looking for topics, I zeroed down to JSON Web Tokens using Node.js as I have implemented it multiple times and having quite a good knowledge on it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Angular&#39;s Composability: A Deeper Dive into Why It Outshines React</title>
      <link>https://fareez.info/blog/angulars-composability-a-deeper-dive-into-why-it-outshines-react/</link>
      <pubDate>Tue, 31 Oct 2023 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/angulars-composability-a-deeper-dive-into-why-it-outshines-react/</guid>
      <description>&lt;p&gt;&lt;em&gt;React&lt;/em&gt; is usually praised for component composition over other frameworks. But in reality &lt;em&gt;Angular&amp;rsquo;s&lt;/em&gt; composability is hard to beat. The main reason is &lt;em&gt;Directives&lt;/em&gt;. Smallest building block in Angular is not component, its directive. A directive can attach itself over a component/DOM element and do a small piece of logic. Now you can create a bunch of directives and you can use it in any combination over any element. One can argue &lt;em&gt;React Hooks&lt;/em&gt; can provide the same. While hooks are a good place to host such small atomic logic, it doesn&amp;rsquo;t attach itself declaratively to a an element/component, you have to wire the props of the component/element manually to the hooks where the logic is present. That itself will create a lot of code.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Draggable Widget Layouts Using React.js</title>
      <link>https://fareez.info/blog/draggable-widget-layouts-using-reactjs/</link>
      <pubDate>Sun, 19 Jun 2022 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/draggable-widget-layouts-using-reactjs/</guid>
      <description>&lt;p&gt;It is a common expectation for dashboards to have draggable widgets. In this article, we are going to see how we can make a draggable layout without using any libraries. We are going to use only React and CSS Grid and make something that looks like the following image.&lt;/p&gt;</description>
    </item>
    <item>
      <title>useImperativeHandle: A New Perspective in Making React Components</title>
      <link>https://fareez.info/blog/use-imperative-handle-new-perspective-in-making-react-components/</link>
      <pubDate>Wed, 08 Jun 2022 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/use-imperative-handle-new-perspective-in-making-react-components/</guid>
      <description>&lt;p&gt;&lt;code&gt;useImperativeHandle&lt;/code&gt; hook is an unusual hook in React, to an extent that it is discouraged to use in the React&amp;rsquo;s official documentation. React is a declarative framework and as the hook&amp;rsquo;s name suggests, it is giving a break from React&amp;rsquo;s declarative style by letting parent component call functions within the child component.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Testing React Components Which Has Fetch or Axios API Call</title>
      <link>https://fareez.info/blog/testing-react-components-that-makes-fetch-axios-api-call/</link>
      <pubDate>Wed, 26 Jan 2022 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/testing-react-components-that-makes-fetch-axios-api-call/</guid>
      <description>&lt;p&gt;Imagine, you are having a component which is making a REST API call when it&#xA;is mounted, to fetch data and display it. &lt;em&gt;How to write Unit Test for&#xA;such a component?&lt;/em&gt; In this article we are going to see how to write Unit Tests for such case without any third part utilities other than &lt;em&gt;Jest&lt;/em&gt; and &lt;em&gt;react-testing-library&lt;/em&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Real Artists Sign Their Work</title>
      <link>https://fareez.info/blog/real-artists-sign-their-work/</link>
      <pubDate>Sun, 02 Jan 2022 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/real-artists-sign-their-work/</guid>
      <description>&lt;p&gt;When I was reading &lt;em&gt;&lt;a href=&#34;https://www.goodreads.com/book/show/11084145-steve-jobs&#34;&gt;Steve Jobs by Walter Isaacson&lt;/a&gt;&lt;/em&gt;, I came across the following line.&lt;/p&gt;&#xA;&lt;blockquote&gt;&#xA;&lt;p&gt;Real artists sign their work - Steve Jobs&lt;/p&gt;</description>
    </item>
    <item>
      <title>Emulating Discriminated Unions in C# using Records</title>
      <link>https://fareez.info/blog/emulating-discriminated-unions-in-csharp-using-records/</link>
      <pubDate>Sat, 18 Sep 2021 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/emulating-discriminated-unions-in-csharp-using-records/</guid>
      <description>&lt;p&gt;&lt;em&gt;Discriminated Union / Sum Type&lt;/em&gt; is one of the common features found amoung strong typed functional languages like F#, Haskell etc. Ever since I started using them in F#, I can&amp;rsquo;t stop wondering why such an useful feature is not  available on the popular languages. C# has been adding a lot of functional features over the last few years. So, we are going to achieve something close to that in C# using Records and Inheritance.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Depth First Traversing using Generators in Javascript</title>
      <link>https://fareez.info/blog/depth-first-traversal-using-generators/</link>
      <pubDate>Sun, 22 Aug 2021 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/depth-first-traversal-using-generators/</guid>
      <description>&lt;p&gt;Imagine you are having a tree structured object as shown below and you would like to traverse through each node and print it&amp;rsquo;s name.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Setting Up Tailwind in Angular</title>
      <link>https://fareez.info/blog/setting-up-tailwind-in-angular/</link>
      <pubDate>Fri, 13 Aug 2021 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/setting-up-tailwind-in-angular/</guid>
      <description>&lt;p&gt;Thanks to Angular team for making it so easy to integrate Tailwind with Angular&#xA;12 and above to a point that I really thought if I should write a post for it.&#xA;Finally convinced myself to document it, since there were not many good references&#xA;I could find related to this.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Why Interfaces in Go Are Not Explicitly Implemented</title>
      <link>https://fareez.info/blog/why-interfaces-in-go-are-not-explicitly-implemented/</link>
      <pubDate>Mon, 02 Aug 2021 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/why-interfaces-in-go-are-not-explicitly-implemented/</guid>
      <description>&lt;p&gt;Languages that came after Java, had great influence of it irrespective of&#xA;static-typed or dynamic&amp;mdash;especially the Object-Oriented&#xA;features. &lt;em&gt;Interfaces&lt;/em&gt;, popularized by Java was taken straight into other&#xA;languages like C# and even dynamically typed languages like PHP! But Go has&#xA;questioned every existing solution thoroughly before inheriting those features.&#xA;No while loops, no do-while loops, no ternary operators, no constructors, nothing&#xA;was brought in Go just because it existed earlier.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Why I&#39;m Adding Svelte.js to My Toolkit</title>
      <link>https://fareez.info/blog/why-am-adding-sveltejs-to-my-toolkit/</link>
      <pubDate>Sat, 26 Jun 2021 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/why-am-adding-sveltejs-to-my-toolkit/</guid>
      <description>&lt;p&gt;For a long time, I was holding myself from trying out &lt;em&gt;Svelte.js&lt;/em&gt; just&#xA;for the reason that I don&amp;rsquo;t want to wrap my head around one more framework&#xA;after &lt;em&gt;React&lt;/em&gt;, &lt;em&gt;Angular&lt;/em&gt; &amp;amp; &lt;em&gt;Vue&lt;/em&gt;. Last year, I broke my vow out of curiosity&#xA;and started checking Svelte. But the fact that typescript support was not&#xA;so good at that point of time stopped me from considering it seriously.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Creating a Tree Component using Svelte.js</title>
      <link>https://fareez.info/blog/creating-tree-component-using-sveltejs/</link>
      <pubDate>Sat, 05 Jun 2021 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/creating-tree-component-using-sveltejs/</guid>
      <description>&lt;p&gt;I was playing around with Svelte.js recently and was curious to know how easy it&#xA;would be to build a Tree component using it. It was simpler than I expected it to be&#xA;with Svelte&amp;rsquo;s recursive &lt;code&gt;svelte:self&lt;/code&gt; feature. Let me explain how its&#xA;done.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Embedding a React Application in Go Binary</title>
      <link>https://fareez.info/blog/embedding-react-app-in-go-binary/</link>
      <pubDate>Mon, 22 Mar 2021 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/embedding-react-app-in-go-binary/</guid>
      <description>&lt;p&gt;Go 1.16 has come out with a feature which I waited for quite some time. With&#xA;&lt;a href=&#34;https://golang.org/pkg/embed/&#34;&gt;&lt;em&gt;Embed&lt;/em&gt;&lt;/a&gt; we will be able to add static files into the go binary at build time. It also makes accessing the files as simple as dealing with File System APIs.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Thread Safe Lazy Loading Using sync.Once in Go</title>
      <link>https://fareez.info/blog/thread-safe-lazy-loading-using-sync-once-in-go/</link>
      <pubDate>Tue, 19 Jan 2021 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/thread-safe-lazy-loading-using-sync-once-in-go/</guid>
      <description>&lt;p&gt;Imagine you have a server and you are loading some configuration for executing&#xA;some business logic. You don&amp;rsquo;t want to load all the configuration when the&#xA;server is launched since it will take a lot of time for it to be ready for&#xA;handling requests. You have to postpone loading configuration till it is&#xA;actually needed. It&amp;rsquo;s called &lt;em&gt;Lazy Loading&lt;/em&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Authenticate Users from Multiple Tables in Laravel</title>
      <link>https://fareez.info/blog/authenticate-users-from-multiple-tables-in-laravel/</link>
      <pubDate>Thu, 14 Jan 2021 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/authenticate-users-from-multiple-tables-in-laravel/</guid>
      <description>&lt;p&gt;It is a common practice to store different user types in different database&#xA;tables. For example, in most applications you will have an Admin user and&#xA;a normal user. Though we can have all the users in a single table and&#xA;discriminate them based on a column, sometimes if the fields are quite&#xA;different, we would like to have different table for each type of user.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Custom React Hook to Trigger Callback when Component Enters Screen</title>
      <link>https://fareez.info/blog/custom-react-hook-to-trigger-callback-when-component-enters-screen/</link>
      <pubDate>Sun, 08 Mar 2020 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/custom-react-hook-to-trigger-callback-when-component-enters-screen/</guid>
      <description>&lt;p&gt;Sometimes we would like to postpone loading data in a component till it is&#xA;actually visible in the viewport. This is handy in applications&#xA;where we have lots of tables with data that should be loaded only when we scroll&#xA;down. This behavior could be used in a variety of cases in different components,&#xA;so we are going to make it into a reusable custom hook so that we can use it&#xA;wherever we would like to.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Extending Blade for Role Checks in Laravel</title>
      <link>https://fareez.info/blog/extending-blade-for-role-checks-in-laravel/</link>
      <pubDate>Sun, 27 Oct 2019 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/extending-blade-for-role-checks-in-laravel/</guid>
      <description>&lt;p&gt;Displaying parts of view based on conditions is super easy in Blade using&#xA;&lt;code&gt;@if ... @endif&lt;/code&gt; conditions. Imagine we are storing the role information as a&#xA;string in the &lt;code&gt;User&lt;/code&gt; model under the &lt;code&gt;role&lt;/code&gt; field. We would write something as&#xA;shown below to check the roles in the blade syntax.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Create Your Own Autocomplete Using Vue.js 2</title>
      <link>https://fareez.info/blog/create-your-own-autocomplete-using-vuejs-2/</link>
      <pubDate>Thu, 06 Jul 2017 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/create-your-own-autocomplete-using-vuejs-2/</guid>
      <description>&lt;p&gt;&lt;em&gt;Why should we make our own Autocomplete component when there is plenty of&#xA;existing components out there?&lt;/em&gt; For simple use cases, yes that serves enough.&#xA;But when you want to create complex ones, like the one which shows Movies in&#xA;&lt;em&gt;IMDB&lt;/em&gt;, its always good to create our own component to have the best control&#xA;over the design we provide. This article will help with that. We are going to&#xA;make the an Autocomplete as shown below.&lt;/p&gt;</description>
    </item>
    <item>
      <title>How to Make a Simple ALV Table in Web Dynpro ABAP</title>
      <link>https://fareez.info/blog/simple-alv-table-in-webdynpro-abap/</link>
      <pubDate>Fri, 16 Jun 2017 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/simple-alv-table-in-webdynpro-abap/</guid>
      <description>&lt;p&gt;ALV Tables are most preferred way to display when you have large amount of data&#xA;to be displayed in tabular format due its flexibility and numerous features.&#xA;However developing applications with ALV Tables in Webdynpro are perceived more&#xA;difficult than the startdard Table element of Web Dynpro ABAP. Let&amp;rsquo;s see how&#xA;to create a simple ALV Table with minimum options and code to understand the&#xA;basics of ALV.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Pagination Component using Vue 2.0</title>
      <link>https://fareez.info/blog/pagination-component-using-vuejs/</link>
      <pubDate>Sun, 30 Oct 2016 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/pagination-component-using-vuejs/</guid>
      <description>&lt;p&gt;Pagination is one of the basic component we will need with any application.&#xA;Let&amp;rsquo;s create a pagination component using &lt;em&gt;Bootstrap&lt;/em&gt; and &lt;em&gt;Vue.js&lt;/em&gt;, and in the&#xA;course of development we will see about custom events in Vue.js.&lt;/p&gt;</description>
    </item>
    <item>
      <title>My Experience on SAP TechEd Bangalore</title>
      <link>https://fareez.info/blog/my-experience-on-sap-teched-bangalore/</link>
      <pubDate>Sun, 16 Oct 2016 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/my-experience-on-sap-teched-bangalore/</guid>
      <description>&lt;p&gt;This being my first SAP TechEd, my experiences are countless and still I’ll try to summarize some of the things I felt.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Countdown Timer using Vue.js</title>
      <link>https://fareez.info/blog/countdown-timer-using-vuejs/</link>
      <pubDate>Tue, 05 Jul 2016 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/countdown-timer-using-vuejs/</guid>
      <description>&lt;p&gt;Let&amp;rsquo;s explore &lt;em&gt;Vue.js&lt;/em&gt; further by creating a Countdown timer component which&#xA;will be very useful for people to quickly put a Countdown page for the products&#xA;or events website. While developing it, we will explore the features of Vue.js&#xA;which makes it such a bliss to develop complicated things from the scratch&#xA;without much effort.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Create your own Autocomplete using Vue.js</title>
      <link>https://fareez.info/blog/create-your-own-autocomplete-using-vuejs/</link>
      <pubDate>Sat, 18 Jun 2016 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/create-your-own-autocomplete-using-vuejs/</guid>
      <description>&lt;p&gt;&lt;em&gt;Note: This article is using Vue.js 1.0. If you are planning to use Vue.js 2,&#xA;go to this &lt;a href=&#34;https://fareez.info/create-your-own-autocomplete-using-vuejs-2/&#34;&gt;article&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;&#xA;&lt;p&gt;From the days of jQuery, I have been pulling in different plugins everytime I&#xA;wanted to create an &lt;em&gt;Autocomplete&lt;/em&gt; input. Later Bootstrap came with an&#xA;&lt;em&gt;Typeahead&lt;/em&gt; component and then they removed it from Bootstrap 3 and I was forced&#xA;to use &lt;em&gt;typeahead.js&lt;/em&gt; when I was developing &lt;a href=&#34;https://encollege.in&#34;&gt;Encollege&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Play with Bootstrap using BootSync</title>
      <link>https://fareez.info/blog/play-with-bootstrap-using-bootsync/</link>
      <pubDate>Sun, 24 Jan 2016 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/play-with-bootstrap-using-bootsync/</guid>
      <description>&lt;p&gt;Bootstrap has become one of the basic tools to start web development. Though I&amp;rsquo;m using it for quite some time, I don&amp;rsquo;t dare to change the original look and feel due to the fear that I may mess up with the project and or spend too much time on designing. Yes! &lt;em&gt;Sass&lt;/em&gt; makes it easy but still I refrain from changing.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Bootstrap Sass in Laravel 5</title>
      <link>https://fareez.info/blog/bootstrap-sass-in-laravel-5/</link>
      <pubDate>Fri, 03 Apr 2015 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/bootstrap-sass-in-laravel-5/</guid>
      <description>&lt;p&gt;Laravel 5 ships with Bootstrap 3 by default, but it uses &lt;em&gt;Less&lt;/em&gt; and not &lt;em&gt;Sass&lt;/em&gt;. Personally I prefer &lt;em&gt;Sass&lt;/em&gt; over &lt;em&gt;Less&lt;/em&gt; and this article helps you set up Bootstrap Sass using Bower and Laravel Elixir.&lt;/p&gt;</description>
    </item>
    <item>
      <title>How to create a Tree List report in ABAP</title>
      <link>https://fareez.info/blog/how-to-create-tree-list-report-in-abap/</link>
      <pubDate>Thu, 05 Mar 2015 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/how-to-create-tree-list-report-in-abap/</guid>
      <description>&lt;p&gt;Reports which has the capability to drill down to multiple levels are of good use. It serves as a simple overview as well as more detailed report when you want to look into a particular record in detail. SAP makes it easy to create &lt;em&gt;Tree List&lt;/em&gt; reports with &lt;em&gt;Function Modules&lt;/em&gt; &lt;code&gt;RS_TREE_CONSTRUCT&lt;/code&gt; and &lt;code&gt;RS_TREE_LIST_DISPLAY&lt;/code&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Creating an ALV Grid Using OOP</title>
      <link>https://fareez.info/blog/creating-an-alv-grid-using-oop/</link>
      <pubDate>Mon, 19 Jan 2015 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/creating-an-alv-grid-using-oop/</guid>
      <description>&lt;p&gt;SAP provides many ways to accomplish a task, creating an &lt;em&gt;ALV Grid&lt;/em&gt; is no different. Though there are simple &lt;em&gt;Function Modules&lt;/em&gt; available to create an ALV grid, &lt;em&gt;Object Oriented&lt;/em&gt; methodology is more preferred due to its own advantages which are always debated in the ABAP world. As far as OO is concerned, my advice to ABAP developers is &lt;em&gt;&amp;ldquo;Sometimes, you have to take a leap of faith first. The trust part comes later&amp;rdquo;&lt;/em&gt; (from the film Man of Steel) . Debates apart, we are going to try our hands creating an &lt;em&gt;ALV grid display&lt;/em&gt; using the class &lt;code&gt;CL_GUI_ALV_GRID&lt;/code&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>How to Store Files in Database in ABAP</title>
      <link>https://fareez.info/blog/how-to-store-files-in-database-in-abap/</link>
      <pubDate>Tue, 25 Nov 2014 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/how-to-store-files-in-database-in-abap/</guid>
      <description>&lt;p&gt;There are requirements where documents has to be uploaded and associated with business data available in the system. When we store files in tables, it will be easy to link it with other tables data. This article is aimed at storing files in databases and downloading or uploading them.&lt;/p&gt;</description>
    </item>
    <item>
      <title>How to Create a Zip File in ABAP</title>
      <link>https://fareez.info/blog/how-to-create-zip-file-in-abap/</link>
      <pubDate>Sat, 11 Oct 2014 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/how-to-create-zip-file-in-abap/</guid>
      <description>&lt;p&gt;We generate different kinds of files varying from Excel sheets to Text files based on the data&#xA;available in SAP. It is very much possible to zip multiple reports within a single zip file&#xA;and download the zip file from SAP.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Random Number Generation in ABAP</title>
      <link>https://fareez.info/blog/random-number-generation-in-abap/</link>
      <pubDate>Wed, 17 Sep 2014 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/random-number-generation-in-abap/</guid>
      <description>&lt;p&gt;&lt;em&gt;Random Numbers&lt;/em&gt; are used for a variety of purposes in programming, and in this article we&#xA;will see how to generate a &lt;em&gt;Random Number&lt;/em&gt; or &lt;em&gt;Random Number Sequence&lt;/em&gt; in ABAP&lt;/p&gt;</description>
    </item>
    <item>
      <title>Dynamic Search Help from Internal Table Data</title>
      <link>https://fareez.info/blog/dynamic-search-help-from-internal-table/</link>
      <pubDate>Mon, 11 Aug 2014 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/dynamic-search-help-from-internal-table/</guid>
      <description>&lt;p&gt;While SAP has created most of the &lt;em&gt;Search Helps&lt;/em&gt; that we will ever need, we still face situations&#xA;where a &lt;em&gt;Search Help&lt;/em&gt; has to be shown dynamically from data that we have in the an internal&#xA;table. SAP has provided us a powerful &lt;em&gt;Function Module&lt;/em&gt; to acheive this, and that is&#xA;&lt;code&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/code&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Optimize LOOP AT using Field Symbols</title>
      <link>https://fareez.info/blog/optimize-loop-at-using-field-symbols/</link>
      <pubDate>Thu, 19 Jun 2014 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/optimize-loop-at-using-field-symbols/</guid>
      <description>&lt;p&gt;The time taken for an ABAP report to run is mostly spent in database queries and internal table processing. While the responsibility of database query optimization is spread across so many different levels, optimizing internal table processing remains solely the developer&amp;rsquo;s responsibility. In this article, we will see the advantage of making using of &lt;em&gt;Field Symbols&lt;/em&gt; instead of &lt;em&gt;Work areas&lt;/em&gt; in &lt;code&gt;LOOP AT&lt;/code&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Executing Operating System Commands from ABAP</title>
      <link>https://fareez.info/blog/executing-operating-system-commands-from-abap/</link>
      <pubDate>Fri, 13 Sep 2013 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/executing-operating-system-commands-from-abap/</guid>
      <description>&lt;p&gt;Sometimes certain processes has to be run at Application Server&#xA;level and the results has to be used within SAP system. They could&#xA;be some simple OS commands or Shell scripts that does works like&#xA;backup of files or database. In this article we are going to see&#xA;how to achieve that.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Running a Report Program and Getting Its Result Programmatically</title>
      <link>https://fareez.info/blog/running-a-report-and-getting-its-result/</link>
      <pubDate>Tue, 10 Sep 2013 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/running-a-report-and-getting-its-result/</guid>
      <description>&lt;p&gt;There are situations when you need to run a report program and&#xA;get its result list programmatically and display or process as you need. This&#xA;article helps you to achieve that.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Continuous Development and Deployment of CodeIgniter using Git</title>
      <link>https://fareez.info/blog/continuous-development-and-deployment-of-codeigniter-using-git/</link>
      <pubDate>Sat, 13 Jul 2013 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/continuous-development-and-deployment-of-codeigniter-using-git/</guid>
      <description>&lt;p&gt;I have had serious problems with continuously developing and deploying enhancements to web applications in CodeIgniter. The problem is that the deployment version has different set of configurations than the development version. Usually, these are sensitive configurations like database connection settings. So even if I missed a single configuration, the result is that the website is down. This made making quick enhancements very difficult. Git helped me come out of it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Windows Phone Tiles Using CSS and jQuery</title>
      <link>https://fareez.info/blog/windows-phone-tiles-using-css-and-jquery/</link>
      <pubDate>Thu, 11 Apr 2013 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/windows-phone-tiles-using-css-and-jquery/</guid>
      <description>&lt;p&gt;Windows Phone&amp;rsquo;s tile design is a haunting beauty to me. I never knew a layout of neat square boxes can impress me that much. And so I tried to implement that tile design in web using CSS and jQuery.  I have tried only the &lt;em&gt;Tile Flip&lt;/em&gt; animation which can show two different information one at the front side and another at the back side of the tile.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Sticky Notes using CSS3 and jQuery</title>
      <link>https://fareez.info/blog/sticky-notes-using-css3-and-jquery/</link>
      <pubDate>Tue, 12 Mar 2013 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/sticky-notes-using-css3-and-jquery/</guid>
      <description>&lt;p&gt;Most of us are good users of Sticky notes application of Windows which is quite a good tool for quick notes to remember. I got inspired by that and tried to create a simple web Sticky Notes using CSS3 and jQuery.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Using Labels Inside Text Field, Is That Wrong?</title>
      <link>https://fareez.info/blog/using-labels-inside-text-field/</link>
      <pubDate>Tue, 05 Feb 2013 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/using-labels-inside-text-field/</guid>
      <description>&lt;p&gt;Today, I got the chance to read the article &lt;a href=&#34;http://www.uxmatters.com/mt/archives/2013/02/dont-put-labels-inside-text-boxes-unless-youre-luke-w.php&#34;&gt;Don’t Put Labels Inside Text Boxes (Unless You’re Luke W)&lt;/a&gt;. In that article, Caroline tries to address the problem of using anything inside a text box. Whether it is label or hints. This really pulled me to write this article. I don&amp;rsquo;t exactly remember when I met the first form with labels inside the text box, but since then I have been fan of labels inside text fields both as an user and designer.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Integrating Applications With Suspend, Resume &amp; Exit Plugs </title>
      <link>https://fareez.info/blog/integrating-applications-with-suspend-resume-exit-plugs/</link>
      <pubDate>Tue, 15 Jan 2013 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/integrating-applications-with-suspend-resume-exit-plugs/</guid>
      <description>&lt;p&gt;Integrating two different applications in Web Dynpro ABAP is quite a challenging task. Most of the time we choose to integrate applications by making component usage of one component in another. But sometimes this becomes a tedious task, especially when both component are dependent on each other. Here we are going to see an alternative option which is redirecting URL by using &lt;strong&gt;Suspend, Resume &amp;amp; Exit plugs&lt;/strong&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Saving Tweets to MongoDB using Java</title>
      <link>https://fareez.info/blog/saving-tweets-to-mongodb-using-java/</link>
      <pubDate>Mon, 19 Nov 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/saving-tweets-to-mongodb-using-java/</guid>
      <description>&lt;p&gt;MongoDB is the fastest growing NoSQL database. Apart from the advantages of NoSQL technology, it&amp;rsquo;s JSON querying style, easy installation makes it more preferable. In this article I&amp;rsquo;m going to show you how to save tweets into MongoDB using Java.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Text Symbols in Web Dynpro ABAP</title>
      <link>https://fareez.info/blog/text-symbols-in-web-dynpro-abap/</link>
      <pubDate>Wed, 07 Nov 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/text-symbols-in-web-dynpro-abap/</guid>
      <description>&lt;p&gt;&lt;em&gt;Text symbols&lt;/em&gt; are one of the great and most used feature in ABAP. It is very helpful when it comes to internationalization of your application and also manages all your text at one place. &lt;em&gt;‘Is this feature available in Web Dynpro?’ Yes indeed, but it seems Web Dynpro has complicated accessing it.&lt;/em&gt; So this article is all about creating a simple application that gets the text from &lt;em&gt;Text Symbols&lt;/em&gt; and places the text in a caption.&lt;/p&gt;</description>
    </item>
    <item>
      <title>How to Create a Context Menu in Web Dynpro ABAP</title>
      <link>https://fareez.info/blog/how-to-create-a-context-menu-in-web-dynpro-abap/</link>
      <pubDate>Mon, 22 Oct 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/how-to-create-a-context-menu-in-web-dynpro-abap/</guid>
      <description>&lt;p&gt;Creating customized menu for right click is always cool and creating such menu&amp;rsquo;s in Web Dynpro ABAP is quite easy. In this article we are going to see creating context menu for a &lt;em&gt;TextEdit UI&lt;/em&gt; element which has to be filled with the text &amp;lsquo;Hello World&amp;rsquo; on clicking an action in the menu.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Anatomy of Table UI and Creating Customized Table UI Dynamically</title>
      <link>https://fareez.info/blog/anatomy-of-table-ui/</link>
      <pubDate>Thu, 18 Oct 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/anatomy-of-table-ui/</guid>
      <description>&lt;p&gt;Whenever we want to create a &lt;em&gt;Table UI&lt;/em&gt; dynamically, we go to &lt;code&gt;CREATE_TABLE_FROM_NODE&lt;/code&gt; method of &lt;code&gt;CL_WD_DYNAMIC_TOOLS&lt;/code&gt; (see &lt;a href=&#34;https://fareez.info/creating-table-ui-dynamically&#34;&gt;here&lt;/a&gt;. However in some cases we want the Table to be very much customized. For example, you may need to create a Table UI bounded to only three attributes of a node which already has four attributes and you may also want to represent each column with different UI element. &lt;em&gt;‘Yes, situations like this are there’&lt;/em&gt;. If you are making a service call, it will create a set of context nodes in the component controller. Now if you want to create a table dynamically and bind it to an already existing node, where you don’t want all the fields to be bound.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Creating Table UI Dynamically</title>
      <link>https://fareez.info/blog/creating-table-ui-dynamically/</link>
      <pubDate>Mon, 15 Oct 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/creating-table-ui-dynamically/</guid>
      <description>&lt;p&gt;Many a time you come across a situation of creating a &lt;em&gt;Table UI&lt;/em&gt; dynamically. Especially, when you want to create &lt;em&gt;Table UI&lt;/em&gt; based on certain conditions which will be known only during the run time. However, Table is not a simple element, it comprises of Columns, Cell Editors and Popins. To make our job simple, SAP has provided a built in method to create a simple table which can only display data. In this article we are going to use this method to create a &lt;em&gt;Table UI&lt;/em&gt; dynamically.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Convert Photos to CSS3</title>
      <link>https://fareez.info/blog/convert-photos-to-css3/</link>
      <pubDate>Mon, 08 Oct 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/convert-photos-to-css3/</guid>
      <description>&lt;p&gt;Few days ago I saw a link bearing the title &lt;em&gt;&amp;lsquo;Monalisa using CSS3&amp;rsquo;&lt;/em&gt; repeatedly in Facebook and Twitter. When I checked it out, I was totally impressed. A Monalisa picture made by just using CSS3 alone. To be more precise box-shadow property of CSS3 alone. It was done by &lt;a href=&#34;https://twitter.com/jaysalvat&#34;&gt;Jay Salvat&lt;/a&gt; using a PHP program which he had uploaded on his GitHub. He has done an incredibly innovative work.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Google Maps in Web Dynpro ABAP</title>
      <link>https://fareez.info/blog/google-maps-in-web-dynpro-abap/</link>
      <pubDate>Mon, 08 Oct 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/google-maps-in-web-dynpro-abap/</guid>
      <description>&lt;p&gt;Google Maps integration with Web Dynpro ABAP is one of the most sought out thing. There are a lot of possible ways to this. Google is providing many ways to access map data and we are going to use static maps for this tutorial.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Creating UI Elements Dynamically</title>
      <link>https://fareez.info/blog/creating-ui-elements-dynamically/</link>
      <pubDate>Thu, 04 Oct 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/creating-ui-elements-dynamically/</guid>
      <description>&lt;p&gt;SAP Web Dynpro ABAP is an excellent tool to create huge data related applications easily and efficiently. However most of the time we create applications that has predefined screen design. So most of the people are quite unaware about manipulating UI elements dynamically. But Web Dynpro indeed has the capability to do anything dynamically. It is a perfect Object Oriented System just like &lt;em&gt;Java Swing&lt;/em&gt; or &lt;em&gt;.NET&amp;rsquo;s Forms&lt;/em&gt;. I would like to give a brief introduction on creating UI elements dynamically.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Star Rating Input Component in Web Dynpro ABAP</title>
      <link>https://fareez.info/blog/star-rating-component-in-web-dynpro-abap/</link>
      <pubDate>Thu, 13 Sep 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/star-rating-component-in-web-dynpro-abap/</guid>
      <description>&lt;p&gt;Few days back I wrote the blog &lt;a href=&#34;https://fareez.info/star-rating-display-component-web-dynpro-abap&#34;&gt;Star Rating Display Component&lt;/a&gt; which can be used to show the average rating of an item. Now in this document I wish to share you how to create a reusable star rating input component through which we can give rating to items by just clicking on stars.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Star Rating Display Component in Web Dynpro ABAP</title>
      <link>https://fareez.info/blog/star-rating-display-component-web-dynpro-abap/</link>
      <pubDate>Tue, 04 Sep 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/star-rating-display-component-web-dynpro-abap/</guid>
      <description>&lt;p&gt;Most of the time ratings are expressed in terms of stars, which is more appealing and easy to interpret. I came across a similar situation and I developed a reusable component to show star rating.&lt;/p&gt;</description>
    </item>
    <item>
      <title>An Analysis on Twitter&#39;s Leaked Passwords</title>
      <link>https://fareez.info/blog/an-analysis-on-twitters-leaked-passwords/</link>
      <pubDate>Sun, 20 May 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/an-analysis-on-twitters-leaked-passwords/</guid>
      <description>&lt;p&gt;On May 9, 2012 the headlines were &lt;strong&gt;‘58000+ Twitter username and passwords are leaked’&lt;/strong&gt;. Twitter is one the most used social networks with 140 million active users. Such a networks security has been breached and considerably huge number of passwords along with usernames was made available on Pastebin which is a paste and share web service. As a response all those accounts hacked are deactivated immediately by Twitter.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Pursuit of Better Password Storing Technique</title>
      <link>https://fareez.info/blog/pursuit-of-better-password-storing-technique/</link>
      <pubDate>Mon, 14 May 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/pursuit-of-better-password-storing-technique/</guid>
      <description>&lt;p&gt;From the early days I’m very much bothered about storing passwords in my application. After studying some cryptographic techniques I got some idea and I have been following them since then. I shared the idea which I was following in &lt;a href=&#34;https://fareez.info/how-your-passwords-are-stored&#34;&gt;How your passwords are stored!&lt;/a&gt;. And I’m glad that I got a very good response and suggestion for that which totally lifted me to a new level on understanding the use of cryptographic hash functions for the purpose of storing passwords.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Search Twitter from your Program</title>
      <link>https://fareez.info/blog/search-twitter-from-your-program/</link>
      <pubDate>Sat, 05 May 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/search-twitter-from-your-program/</guid>
      <description>&lt;p&gt;Twitter is the social network used very widely for promoting products, films, etc. It is loved by companies especially for marketing. Twitter API owes the biggest part in Twitter’s success. The API is providing you the ability to do every possible operation that you can do in the website through your programs. For example, you find twitter tweets in many other sites (even in this blog) and this is achieved using Twitter API. Using this API you can do a lot of innovative things similar to the viral marketing done by Warner Bros for &lt;em&gt;The Dart Knight Rises&lt;/em&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Web Technologies</title>
      <link>https://fareez.info/blog/web-technologies/</link>
      <pubDate>Thu, 26 Apr 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/web-technologies/</guid>
      <description>&lt;p&gt;Internet seems to be the best innovation from human race. The architecture of the internet remains the same for decades, but the application and use of internet has got an unimaginable growth. To be precise, from 2001 to 2011, within a span of 10 years, internet users’ growth is 528%! (Source: &lt;a href=&#34;http://www.internetworldstats.com/stats.htm).&#34;&gt;http://www.internetworldstats.com/stats.htm).&lt;/a&gt; Web is the largest application in the internet. Every one of us is active user of at least 10 websites. Last decade saw a new revolution in the name of social networking which is still not over yet. Definitely web is the big thing which is going to rule the world for few more decades (Some say mobile is the next big thing; I would like to ask them to switch off internet in their &lt;em&gt;‘smarter’&lt;/em&gt; phones and say it again).&lt;/p&gt;</description>
    </item>
    <item>
      <title>Hierarchy of UI Elements</title>
      <link>https://fareez.info/blog/hierarchy-of-ui-elements/</link>
      <pubDate>Mon, 16 Apr 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/hierarchy-of-ui-elements/</guid>
      <description>&lt;p&gt;&lt;em&gt;Web Dynpro&lt;/em&gt; has been provided with lots of tools to make the development easier. When we want to create applications in which UI elements has to be created dynamically and processed dynamically, we have to go a little deeper i.e., we have to use the OO classes of the UI elements.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Singleton Pattern in ABAP</title>
      <link>https://fareez.info/blog/singleton-pattern-in-abap/</link>
      <pubDate>Sun, 15 Apr 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/singleton-pattern-in-abap/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Object Oriented Programming&lt;/strong&gt; has been a boon to the programmers without which development of huge systems is almost impossible. ABAP is no exception to that which is why Object Oriented Programming was added to ABAP.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Timer in Web Dynpro ABAP</title>
      <link>https://fareez.info/blog/timer-in-web-dynpro-abap/</link>
      <pubDate>Sun, 15 Apr 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/timer-in-web-dynpro-abap/</guid>
      <description>&lt;p&gt;Timer is a very essential UI element in many applications and creating a timer in Web Dynpro ABAP seems to be a little&#xA;critical task in the versions prior to &lt;em&gt;NetWeaver 7.1&lt;/em&gt; where Island technologies are not allowed and only Iframe is&#xA;available. Recently, I got an acquaintance with this problem and I ended up at a solution which I wish to share here as&#xA;it would be useful for many. My solution uses &lt;em&gt;Iframe&lt;/em&gt; and &lt;em&gt;Javascript&lt;/em&gt; to create a timer. However, there are two of the&#xA;main problem that one can face. One is the &lt;em&gt;TimedTrigger&lt;/em&gt; component itself. It fires an action at every n second from&#xA;when the previous action was fired but not from the start of execution of the application. Second, refreshing the Iframe&#xA;will reload the HTML page resulting in resetting the timer. I have tried to provide a solution for both here.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Java and Platform Independency</title>
      <link>https://fareez.info/blog/java-and-platform-independency/</link>
      <pubDate>Thu, 29 Mar 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/java-and-platform-independency/</guid>
      <description>&lt;p&gt;Necessity is the mother of invention. Computer languages are not an exception to this rule. However, there are as many as 1600 different computer languages as they say. Did all these languages have necessities? Yes. But the importance of the necessities differ. At the least it had a necessity to satisfy its own designer. When a language satisfies a big need of numerous people, it remains, others wash away or limited to particular community. Java is one such language which was designed for something and outgrown into something invincible.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Bitwise Can Avoid Loops</title>
      <link>https://fareez.info/blog/bitwise-can-avoid-loops/</link>
      <pubDate>Mon, 30 Jan 2012 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/bitwise-can-avoid-loops/</guid>
      <description>&lt;p&gt;As we have seen before, the power of bitwise operators are immense. Sometimes thinking in terms of arithmetical operators cost you lots of CPU time when compared to bitwise operators. So given a problem its obvious for us to think in terms of arithmetical solutions, but try to search for a bitwise solution and compare it with previous one. You can end up in a very powerful algorithm too. Now I wish to share one such case where the use of bitwise operator avoids the use of a loop too.&lt;/p&gt;</description>
    </item>
    <item>
      <title>How your passwords are stored!?</title>
      <link>https://fareez.info/blog/how-your-passwords-are-stored/</link>
      <pubDate>Fri, 07 Oct 2011 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/how-your-passwords-are-stored/</guid>
      <description>&lt;p&gt;Most of us use numerous services available on the net such as mails, social networking services, and blogs. So it is obvious to have the question &lt;em&gt;“Can a database administrator working on Facebook can get the password of my Facebook account if he wishes?”&lt;/em&gt;. A worthy question it is. But the answer is &lt;em&gt;“No”&lt;/em&gt;. Your passwords are never stored as it is. (Well, I don’t know the policy of Facebook regarding this; I mention it just for an example).&lt;/p&gt;</description>
    </item>
    <item>
      <title>Build your own Twitter</title>
      <link>https://fareez.info/blog/build-your-own-twitter/</link>
      <pubDate>Sun, 14 Aug 2011 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/build-your-own-twitter/</guid>
      <description>&lt;p&gt;Twitter has been famous from two or three years ago. I had not had much idea about it till two weeks back. I really wanted to check what twitter offers and so joined twitter two weeks back. It is a nice experience exploring a new service. Whenever I do explore, I try to reverse engineer that too.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Do you really study?</title>
      <link>https://fareez.info/blog/do-u-really-study/</link>
      <pubDate>Sat, 30 Jul 2011 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/do-u-really-study/</guid>
      <description>&lt;p&gt;When I started this blog, I wanted to write only about computer science but I really think that I have to express something that has been inside me for long and I think it’s the right time for that. This article is for the students of computer science or more generally students of any discipline.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Feel the Binary Code</title>
      <link>https://fareez.info/blog/feel-the-binary-code/</link>
      <pubDate>Sat, 23 Jul 2011 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/feel-the-binary-code/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;&amp;ldquo;There are 10 kind of people,&#xA;One who knows Binary and the other who doesn&amp;rsquo;t.&amp;rdquo;&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;In the earlier days when electronic computers was first built, inputs were given in binary using tapes and outputs were also obtained as binary. So then, the people who where using the computers had to know binary &amp;rsquo;language&amp;rsquo;. But now, we have GBs of movies, pictures, audio, documents, text and more &amp;amp; more type of files that we even we couldn&amp;rsquo;t make a full list of. &lt;em&gt;Do we ever know how 0s and 1s formed these things?&lt;/em&gt; At the least, when we start to work with Bitwise operators we should have the knowledge of how these media are represented by the binary language. In this article we will see how to does binary works with numbers and text.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Four Different Characters</title>
      <link>https://fareez.info/blog/four-different-characters/</link>
      <pubDate>Tue, 12 Jul 2011 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/four-different-characters/</guid>
      <description>&lt;p&gt;I suddenly got an example that may help you remember the characteristics of AND, OR, NOT and XOR. Consider them as four different human individuals, with four different characteristics or behavior. Humans generally have the behavior of conveying things different from what they really heard; they may add something to the original story or hide something or even tell opposite of what happened. We have had lots of acquaintances with situations like this which would make this example unforgettable I think. Our men, AND, OR, NOT and XOR are no exception to these characters but each one having a different unique character.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Bit-&#39;Wise&#39; Magic</title>
      <link>https://fareez.info/blog/bit-wise-magic/</link>
      <pubDate>Sun, 10 Jul 2011 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/bit-wise-magic/</guid>
      <description>&lt;p&gt;‘Bitwise operators’, as the name says they are indeed wise enough to do anything that a computer can do. In computer architecture, we would have studied how these ANDs, ORs and SHIFTs are used to do any mathematical operation. Any basic arithmetic operation is a set of bitwise operation, which for convenience we have abstracted to a level that we forgot what is underlying. Sometimes, a lower level of abstraction is a better tradeoff to higher level of abstraction; an example is that programs written in assembly language are more efficient than those written in high level language. So we have to pierce through the abstraction to find the right things when we really need right things. Well, I think it is time to learn some bitwise tricks and improve our programming. Presence of bitwise operators in your programs identifies yourself as a quality programmer from my point.&lt;/p&gt;</description>
    </item>
    <item>
      <title>To my fellow readers</title>
      <link>https://fareez.info/blog/to-my-fellow-readers/</link>
      <pubDate>Wed, 06 Jul 2011 00:00:00 +0000</pubDate>
      <guid>https://fareez.info/blog/to-my-fellow-readers/</guid>
      <description>&lt;p&gt;First of all, I introduce myself to my fellow readers. I&amp;rsquo;m Fareez Ahamed, a person who was impressed by computers from when I was studying fifth standard (well children now are introduced to computers more early now-a-days than those days). &amp;lsquo;How this stuff works?!&amp;rsquo; is always a quest for many when they are introduced to new things. I&amp;rsquo;m no exception to that when I saw what a computer can do at first. It was at our printing press long back when I was studying fifth. The first software that I remember is Adobe PageMaker 5.0, something dedicated to printing industry. It did far better than what a traditional printing technique with very large space and tons of lead typesets can do.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
