Stay Updated | FIFO

Stay updated.

Explore the best ideas, stories and insights about top  and upcoming D2C businesses and Makers.

Start reading for free 
editor-img
editor-img
editor-img

Read posts by industry experts
and learn from the best

BLOC BUILDER:

In my previous post I have discussed BlocProvider. With reference to it in today’s post we will be looking more at Flutter BLoC concepts. BlocBuilder is a widget that helps rebuild the UI based on some Bloc state changes. This component rebuilds the UI every time either Bloc or Cubit emits a new state.

editor-img

Sailesh Verma

DevOps Principles

The main principles of DevOps are Continuous delivery, automation, and fast reaction to the feedback. End to End Responsibility: DevOps team need to provide performance support until they become the end of life. It enhances the responsibility and the quality of the products engineered.

editor-img

Amit Kumar

Fraud Detection

The bulk of eCommerce businesses prioritise growing their clientele and revenue. Businesses want their websites to be successful so they may accomplish their objectives. Efficiency won't be able to save the company if the organisation can't provide security.

editor-img

Gulnaaz

Sprout Social vs. Later: Which is Better for Branding in 2023?

Wondering which social media management tool will elevate your branding game this year? Well! Picking the right tool matters. By this, you can enhance your brand effectively. So, dear readers, Meet Sprout Social first. It gives data-driven insights, and competitive analysis that will help you in multiple ways. Plus, it nurtures client relationships seamlessly. Now, let's talk about Later. Its visual storytelling expertise awaits you.

editor-img

Rob Den

Differences between Docker Swarm and Kubernetes

1. Docker Compose a. Manages a group of containers on a single host b. Comes with Docker Desktop c. Works with Docker Engine d. Control with docker-compose e. No auto-scaling f. Product from Docker Inc. 2. Docker Swarm a. Manages a cluster of instances of Docker Engine b. Built into Docker Engine

editor-img

Amit Kumar

Pages and Layouts in Nextjs-

When building projects with Next.js, we typically create an entire user interface by assembling isolated components. However, some parts of the interface require the same code snippets across multiple routes — for example, the navigation header, footer, and sidebar. To manage this, we use layouts to structure the interface in a way that contains shared code snippets. Next.js recommends starting a new project with the App Router. However, we’ll discuss how to implement layouts and nested layouts with the Pages Router for users who have yet to migrate to the new Next.js routing system.

editor-img

Shalini Chauhan

Is useEffect a bad place to make API calls.

The design choices made my react team in useEffect hook are still a heated debate. Some people like it and some people don’t. If you are not from react world you might find it strange that the default behaviour of useEffect is dreaded Infinite Render Loop.

editor-img

Manvi Sharma

BharOS:

BharOS is a mobile operating system designed by IIT Madras. It is an Indian government-funded project to develop a free and open-source OS for use in government and public systems. The project aims to reduce the dependence on foreign OS in smartphones and provides the huge leap forward to create an indigenous ecosystem and a self-reliant future.

editor-img

Sailesh Verma

Exploring and Experimenting with AI (Part-4)

Quillbot AI - Summarizer Feature QuillBot Summarizer is a free tool that can generate summaries of articles or text. The device uses advanced artificial intelligence algorithms to understand the context, structure, and meaning of the content. Then it generates a summary that captures the key points and message of the original text.

editor-img

Chetna Grover

The first "Hello, World" example---

Heyy everyone, Today we will be discussing the next part of Express :) const express = require('express') const app = express() app.get('/', (req, res) => res.send('Hello World!')) app.listen(3000, () => console.log('Server ready')) These 4 lines of code do a lot behind the scenes.

editor-img

Shalini Chauhan

Is "Later" your cup of tea: A Comprehensive Review

Have you ever wondered if there's a single tool that can truly revolutionize your B2B business operations? Well, the search for that game-changer might just end here. Welcome to our in-depth LATER review, where we embark on a journey to uncover the extraordinary potential of this exceptional platform. In the following pages, we'll leave no stone unturned as we explore the features, capabilities, and real-world advantages that LATER has in store for your business.

editor-img

Rob Den

In my previous post I have discussed State Management in Flutter. In this post I will be discussing what BLoC is & why it is used.

While building an application as a developer we want to know what state our application is in at every point and to record every single user interaction in our application so BLoC was designed to handle all these requirements.

editor-img

Sailesh Verma

How to work with Lifecycle Events in Svelte-

This is the part1 of Lifecycle Events- https://fifo.im/p/qqh48vh0hti0 and today I will discussing more about Lifecycle Events. Here’s a sample usage of onMount: <script> import { onMount } from 'svelte' onMount(async () => { //do something on mount }) </script>

editor-img

Shalini Chauhan

Binding components props-

Using bind: you can bind a value to any prop that a component exposes. Let's you have a Car.svelte component: <script> export let inMovement = false </script> <button on:click={() => inMovement = true }>Start car</button> You can import the component and bind the inMovement prop:

editor-img

Shalini Chauhan

Data fetching in Next.js

When fetching data in Next.js, we have following options- It is important to understand the different approaches when trying to create pages that include dynamic data whether that’s being pulled in at compile time, rendered on the server, or fetched in the browser client-side.

editor-img

Shalini Chauhan

Best SaaS Product for Team Collaboration: Trello Vs Slack Vs Monday.com

Looking to level up your teamwork game and find the perfect SaaS product for seamless coordination? Well, grab your coffee, get comfy, and prepare for a wild ride as we delve into the battle of Trello vs. Slack vs. Monday.com! Picture this: you and your team are on a mission to conquer projects, slay deadlines, and high-five each other in victory.

editor-img

Rob Den

Is Sprout Social worth the hype in 2023?

Is Sprout Social still living up to its hype as we step into the digital realm of 2023? This burning question has been on the minds of businesses alike, eager to stay on the cutting edge of online engagement. In this blog, we'll peel back the layers and dive deep into the ever-evolving world of social media management to answer that very question. Buckle up, because we're about to uncover whether Sprout Social is still the golden ticket to social media success or if the landscape has shifted, demanding new tools and strategies. Let's embark on this exciting quest and determine if Sprout Social is the right choice for you in 2023 and beyond!

editor-img

Rob Den

Basics: Django

Django, a Python framework, streamlines web development by handling complex tasks, enabling developers to focus on crafting web applications. Emphasizing component reusability (DRY principle), Django offers out-of-the-box features like a login system, database connectivity, and CRUD operations (Create Read Update Delete). Operational Mechanism of Django: Django adheres to the MVT design pattern (Model View Template). Model: Represents data, typically sourced from a database. Django employs Object-Relational Mapping (ORM), simplifying database interaction. Unlike SQL, which necessitates database knowledge, ORM allows streamlined communication without intricate SQL coding.

editor-img

Manvi Sharma

What are React server components?

React Server Components allows the server and the client to collaborate in rendering your React application. Here’s a quick illustration from the React team, showing what the end goal is: a React tree, where the orange components rendered on the server, and blue components are rendered on the client.

editor-img

Shalini Chauhan

What is initState() In Flutter?

In this post we will go through the initState method of the flutter initState() This is the first method called when the widget is created ,initState is called once and only once when the Stateful Widget is inserted in the widget tree. We generally override this method if we need to do some sort of initialization work .

editor-img

Sailesh Verma

Deep Learning and Machine Learning.

The order of these terms is frequently reversed whenever they are spoken. People refer to them as AI-ML, DL-ML, and so on, leading most of us to believe they're the same thing. And we frequently employ one set of terms to represent the other, creating even more confusion about what they actually mean.

editor-img

Yash Sharma

Svelte Store - Part 2

This is the part 1-> https://fifo.im/p/bry4ezmuif30 and let's discuss more about Svelte Stores. To get the value of the store variable once, you can use the get() function exported by svelte/store: import { writable, get } from 'svelte/store' export const username = writable('Guest') get(username) //'Guest'

editor-img

Shalini Chauhan

Convolutional neural networks

The convolutional neural network is a major component of most deep learning-based computer vision applications (CNN). CNNs are a sort of neural network that is effective at capturing patterns in multidimensional spaces. CNNs were invented in the 1980s by deep learning pioneer Yann LeCun.

editor-img

Yash Sharma

Transform Your Images into Captivating Advertisements with Zyng!

In the world of advertising, visual appeal is paramount. A captivating image has the power to grab attention, convey a message, and leave a lasting impression. However, creating stunning advertisement visuals often requires expertise in graphic design and expensive software tools. That's where Zyng comes in - a tool that simplifies the process of transforming ordinary images into eye-catching advertisements.

editor-img

Harshik Pulavarthy

Psychology - A helping hand for designers

•The outcome of the work can be even more positive if a designer applies psychology in the creative process since science gives an intimate understanding of the audience. •Psychology knowledge helps to create the design which will make users perform the expected actions, such as making a purchase or contacting the team.

editor-img

Chetna Grover

DNA as Data Storage 😕 ?

Over the decades, storage technology has evolved and gotten better. It has moved from CDs and floppy disks to hard and solid-state drives. But still, we have a problem: the amount of storage available and being produced can't cope with the data we keep producing. So can data be stored in DNA ? Lets discuss : )

editor-img

Sailesh Verma

Flutter BLoC Concepts :-

BLoC Provider: In today's post we will looking at some concept of bloc, now after we write our first Bloc, then how do we access it in our UI? Some of you might think that by creating a BLoC object wherever it is required by a widget. But this is the wrong way to use our BLoc !

editor-img

Sailesh Verma

Agile CRM vs. Pipedrive: Which is a better choice in 2023?

Are you ready to supercharge your sales and customer relationship management in 2023? In a world driven by customer-centricity, the choice between Agile CRM and Pipedrive could be the game-changer you've been seeking. Agile CRM offers robust marketing automation and customer service, while Pipedrive excels in sales pipeline management. In this blog, we'll dive deep into the strengths and features of both tools. By the end, you'll have a crystal-clear understanding of which CRM solution aligns best with your needs. It will help you make an informed choice for your business success. So, without any further ado, let us get started.

editor-img

Rob Den

Strengthening Your B2B Brand Identity with SaaS

Ever wondered about the true power of strong brand identity in the world of B2B? It's that unmistakable mark that can make your business stand out in a sea of options. This can foster trust and make you memorable. But hey, what happens when that identity isn't as robust as it could be? Join me on an insightful journey as we zoom in on the challenges that a weak brand identity can bring to your B2B game. We're going to explore how it can shake things up in your business relationships.

editor-img

Rob Den

Event Modifiers-

We can modify the events in svelte using these modifiers. Following are the modifier that we can use once: remove the handler after the first time it runs. In the EventComponent.svelte, modify the button with the below code. <button on:click|once={eventClickMe}> Click Me </button>

editor-img

Shalini Chauhan

Exclusive for the Global Maker community & D2C experts.

Bring change to the world by sharing your perspective. Share your insights, and inspire others to join your movement and become makers.

Learn more 
CoverImage3

Chat with FIFO to get answers for all your queries

FIFO is trained with the best insights and knowledge curated by experts.

Get Started 
bottom-cover-image-mobile
Join the Maker Network on FIFOStart reading for free 
© 2023 Glue Labs Private Limited