Skip to main content

Posts

1ST HARD HITTING LESSON FROM COLLEGE

  BE Stubborn This is the 1st lesson college taught me. It taught me hard. It slapped tight and hard on my face and I cried. I cried a lot. I always thought that being stubborn is a bad quality one might possess, but in some cases, it’s not. It's showing others how confident you are about it and how much effort you have put into it. Today I failed to be stubborn. Remember the saying: "When you engage in people-pleasing, you are out of integrity with yourself." This is also applicable when you are not stubborn with yourself and your ideas. What exactly? Be stubborn about your goals & flexible about your methods. If you are confident about something and if you have a proper plan, never ever step down. Never! And never be afraid to take responsibility. It’s not about saying "paatukalam" to your teammates. It’s about giving them an idea. It involves organizing, having a proper plan in your head or better, on a piece of paper, and if you are a team lead, take up ...
Recent posts

AJAX Workflow Explained

 AJAX Workflow Explained: The Backbone of Modern Web Interactivity What is AJAX? AJAX, which stands for Asynchronous JavaScript and XML, is a set of web development techniques that utilize various web technologies on the client side to create asynchronous web applications. The key feature of AJAX is its ability to communicate with the server and update web pages asynchronously without requiring a full page reload. This results in a more responsive user experience. How Does AJAX Work? Asynchronous Communication The term "asynchronous" refers to communication between the web page and the server in the background. This means that the user can continue interacting with the web page without any interruptions, even while data is being fetched or sent. For example, when you type in a search box and see suggestions appear instantly, that's AJAX in action. JavaScript JavaScript is the scripting language used to make asynchronous requests to the server and handle the response. It a...

XML vs. JSON: Understanding the Differences for Efficient Data Exchange

In data exchange, XML (eXtensible Markup Language) and JSON (JavaScript Object Notation) are widely used formats. Both have their strengths and weaknesses; understanding their differences is crucial for choosing the right one for your needs. Syntax XML : Uses a tag-based syntax. JSON : Utilizes a key-value pair syntax enclosed in curly braces {} or square brackets [] . Example: XML: <person>    <name>Harini</name>    <age>20</age> </person> JSON: {    "name": "John Doe",    "age": 30 } Data Types JSON : Supports a variety of data types including strings, booleans, arrays, and objects. XML : Considers all data as text, though it can represent complex structures using attributes and nested elements. Schema and Validation Schema and validation play a crucial role in ensuring data integrity and structure. I would love to share an analogy I read, If coding was cooking, the schema would be the...

Essential Graphic Design Tools for Beginners: Insights from a New Designer

  This is a compilation of what Aishwarya shared in an interview I conducted with her. I've known Aishwarya for over 16 years. From a young age, she was interested in editing software, starting at just 10 years old. When I asked her what sparked her interest in graphic design , she explained that her innate creativity found an outlet in graphic design, allowing her to create amazing designs. Recently, I enjoyed exploring Aishwarya's Instagram, and I was truly impressed by her unique style and creativity. Her designs are a wonderful blend of simplicity and innovation, each piece reflecting her keen eye for detail and artistic flair. Aishwarya's journey into graphic design truly began during the lockdown. She started by making birthday videos for friends, some of the best I've seen. She mostly used her mobile phone and Filmora for her edits, gradually exploring more tools and delving into video editing. Regarding the software she uses, Aishwarya began with beginner-frien...