Skip to main content

NoSQL Databases

Online Bug Tracking System

TRELLO

While I was doing my SLIIT SA Assignment I found a cool online application for Bug Tracking.
This keeps track of the Bugs which were identified, you can assign the task to a developer, whether it was solved, by whom etc.

It even enables you to attach documents, labels, comment and these things are getting updated instantly. Its a User Friendly application which is totally free.

The link is -

  • https://trello.com/


Also if you want a guide please check the below link -


  • https://www.youtube.com/watch?v=xky48zyL9iA


 



Comments

Popular posts from this blog

SSD_OAuth 2.0

This blog post will give a brief description about OAuth 2.0 What is OAuth 2.0?    OAuth 2.0 is a (Open Authorization) is a framework that give users the ability to grant access to their information stored in one place, from another place. To understand what is OAuth first we need to understand the main roles, grant types and the types of tokens. Roles    Roles are used to define and separate entities which are involved in a request. Mainly there are four roles. The Client - The client is the third party application which tries t access the user account. This can be either a website or a application. The Resource Server - Resource server is the place which stores the user's information The Authorization Server - This is the server which approves or denies the request. The authorization server produces the access token to the client. The Resource Owner - Resource owner grants access to the requested data. Grant Types     Grant...

NoSQL Databases

NoSQL Databases: Breaking Free from Traditional Tables Hey there, fellow developers! If you've been working with traditional SQL databases and wondering if there's another way to handle data, you're in the right place. Today, we're diving into the world of NoSQL databases – what they are, why they exist, and how to get started with MongoDB. What Exactly is NoSQL? Let's clear up a common misconception first: NoSQL doesn't mean "No SQL" – it actually stands for "Not Only SQL." Think of it as an umbrella term for databases that don't follow the traditional relational database model. Remember those rigid tables with rows and columns you've been working with? NoSQL databases take a different approach. They're designed to handle unstructured or semi-structured data, scale horizontally across multiple servers, and adapt to changing requirements without major schema overhauls. Why Would You Choose NoSQL Over SQL? Great quest...

SSD

Cross Site Request Forgery             Cross-Site Request Forgery (CSRF) is an assault that powers an end client to execute undesirable activities on a web application in which they're at present verified. CSRF assaults particularly target state-evolving demands, not robbery of information, since the assailant has no real way to see the reaction to the produced demand. With a little help of social designing, (for example, sending a connection through email or talk), an attacker may trap the clients of a web application into executing activities of the assailant's picking. On the off chance that the injured individual is a typical client, a fruitful CSRF assault can compel the client to perform state changing solicitations like exchanging reserves, changing their email address, ect. On the off chance that the unfortunate casualty is a managerial record,CSRF can compromise the entire web application. What is CSRF and how it works ?     A...