Skip to main content

PC Builds for Coders - Budget PCs You Can Build

 


PC Builds for Coders - Budget PCs You Can Build


Hello everyone, in this blog, we will build three pc under the budget of 30k rupees. 

We are going for custom build this time just because prebuilds are not good and there you don’t have the option to choose the components and sometimes the performance of those components are poor. Also, prebuild components don’t offer you many upgradability options. In terms of custom builds, we have the independence to choose components and we also have better upgradability options. And we can build the pc at an affordable price. 

Here I’ve mentioned different builds:

 

20000 INR BUILD

For the 20k build, we are going with this configuration

Processor - AMD Athlon 3000G

Motherboard - Gigabyte AMD A320

RAM - Corsair Vengeance 8 GB DDR4

Storage - Seagate 1TB 

Cabinet - Frontech Semi-Premium Full ATX

Total Price: 19038

 

25000 INR BUILD

For the 25k build, we are going with this configuration.

Processor - Core i3 10100

Motherboard - MSI H510M-A PRO

RAM - Corsair Vengeance 8 GB DDR4

Storage - Seagate 1TB 

Cabinet - Frontech Semi-Premium Full ATX

Total Price: 27750

 

30000 INR BUILD

For the 30k build, we are going with this configuration.

Processor - Ryzen 3 3200G

Motherboard - ASRock A320M

RAM - Corsair Vengeance 8 GB DDR4

Storage - Seagate 1TB 

Cabinet - Frontech Semi-Premium Full ATX

Total Price: 26750

 

Due to the high prices of PC components at this time, these are the best I could gather. Maybe the prices will get low in the future, and these builds will become cheaper than they are right now. I have chosen iGPU for the intel build, and APU’s for AMD builds as dedicated graphics card prices are much higher. If you plan on gaming somewhere near the future, you can add a graphic card to the build. 

I have prepared a google sheet with links, you can access it by using the links given below.

https://docs.google.com/spreadsheets/d/1bXR7h7TqeqTOxT2cDsyRdVHqNTd8RjDl9jNvSuaEB8c/edit

https://docs.google.com/spreadsheets/d/1TrrUcy8K-ndE2mh_FjED3tMZVNnu3cjZunWLgkrcmf8/edit#gid=0

https://docs.google.com/spreadsheets/d/1bXR7h7TqeqTOxT2cDsyRdVHqNTd8RjDl9jNvSuaEB8c/edit#gid=0

Comments

Popular posts from this blog

Advanced Java Solved manual 5th Sem (Information Technology)

By Harsh Tambade Contributor : Vishal Chavare  Advanced Java Programming Solved Manual 22517                    Advanced Java Programming Solved Manual 22517 Download Now👇👇 Practical No. 1  Practical No. 2  Practical No. 3  Practical No. 4  Practical No. 5  Practical No. 6  Practical No. 7  Practical No. 8  Practical No. 9  Practical No.9 Practical No. 12 Practical No. 16 Practical No. 18 Practical No.18 Practical No. 19 Practical No .19 Practical No. 20 Practical No. 21 Practical No. 22 Practical No. 23 Practical No. 24   Advanced Java Programming Solved Manual 22517 here's also a full solved manual but the clarity is not too good so please refer the below links: download full manual

Advanced computer network (ACN) solved manual

By Harsh Tambade Download link:   https://rmpalwe.files.wordpress.com/2019/09/acn-practical_manual-19-20-1.pdf

Flask cheatsheet

  Flask Cheatsheet Loading... Importing Flask from flask import Flask Copy Most used import functions These are some of the most used import functions from flask import Flask , render_template , redirect , url_for , request Copy Boilerplate This is the basic template or barebone structure of Flask. from flask import Flask app = Flask ( __name__ ) @app . route ( "/" ) def hello_world ( ) : return "<p>Hello, World!</p>" app . run ( ) Copy route(endpoint) This is to make different endpoints in our flask app. @app . route ( "/" ) Copy Route method Allowing get and post requests on an endpoint. methods = [ 'GET' , 'POST' ] Copy Re-run while coding This is used to automatically rerun the program when the file is saved. app . run ( debug = True ) Copy Change host This is used to change the host. app . run ( host = '0.0.0.0' ) Copy Change port This is used to change the port. app . run ( port = 80 ) Copy SQ