Ravi Singh (@ravi1491) | Tags

ravi1491's cover image
Powered by FIFO
ravi1491's image

Ravi Singh

SDE Intern at Glue Labs

Followers29
Following28
Spaces10

Spaces

SQL Commands-

SQL commands are instructions. It is used to communicate with the database. It is also used to perform specific tasks,

functions, and queries of data.

SQL can perform various tasks like create a table, add data to tables, drop the table, modify the table, set permission for users.

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.

Evolution of the Japanese Anime

In recent years, Japanese animation has become popular around the world. Industry veteran Yamaguchi Yasuo, who has been involved in anime production for half a century, traces the history of Japanese animation, from its birth to today.

media

So, in this post, I will introduce you to Dolt, an SQL-based database that allows you to fork, pull, push, and clone, similar to a Git repository. I'm sure you'll be excited since it will give you significant flexibility in database management.

What is Dolt?

How to store events?

While building a product storing events is very necessary. We should always store events for each and every action a user performs.

Storing events can help us in generating Notifications, Analytics, identifying issues/bugs, etc.

In this post, I am going to explain how we should store events.

How to write a doc for a feature/product?

The 3 Ws (and 1 H) that should be asked of every project:

  1. Who
  2. Why
  3. What
  4. How