1. Select Challan 280 Go to the tax information network of the Income Tax Department and select Challan 280. Click here to go to the government website and pay your tax 2.Enter Personal Info For individuals paying tax, select . Please choose the Assessment Year correctly . Choose if you are paying taxes after the Financial Year has ended. View mandatory fields to be filled in Note: Choose "(100) ADVANCE TAX" if you are paying taxes during the financial year. Choose "(400) TAX ON REGULAR ASSESSMENT" if you get a demand notice from the Tax Department. 3.Double check info You will be redirected to the net banking page. Double check the information entered here and enter the income tax amount to be paid in the income tax field. Tip: You can leave surcharge, education cess, interest and penalty blank. 4. Check Receipt (Challan 280) This is your Challan 280. You will be able to see details about your payment on...
Problem Name : Producer-Consumer Problem (Also Known as Bounded Buffer Problem ) Goal : It's explain you "multi-process resource synchronization problem". Problem Statement : there are many producers and many consumers, the work of producer is to generate/produce things/jobs/items any things and the work of consumer is to consume things/jobs/items/any things produced/generated by producer. What is the NodeJs ? Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices. Code : var express = require('express'); var app = express(); var queue = []; //Default Handler app.get('/',function(req,res){ res.send('Producer/Consumer Server');...
Cassandra, it's not new now, mostly all developer should know it somehow or might read some where. if you are not part of this big data column base database development usage then grab it and learn it for your next scaling problem at data level, what you are or you would face in project work :) this help you !!! Today, let's me give you detail about cassandra materialised view (new feature in 3.0 cassandra) and how it's work. Also, how it's defer than apply index on column in your single data model table. Real life issue with cassandra : Data model best practice suggest you to make read faster, use query base data model, do not worry about write or duplicate of data at the cassandra level, it can be handle by your application But, it's not easy to handle this at application level when we simple change one or few row and it's effect to update many data model even if it's part of one entities or one record object. What was solution pre cassa...
Comments