Home
Vivek Sharma
Cancel

Set up ChatGPT locally using Ollama and open webui

Set up ChatGPT Locally Using Ollama and Open Webui Introduction In this guide, we will set up ChatGPT locally using Ollama and open webui. Install WSL2 and Ubuntu 20.04 Use this command to in...

Assignment - 2 BPOPS103

Assignment-2 BPOPS103 1. Write a C program to read N integers into an array A and to * Find the sum of odd numbers * Find the sum of even numbers * Find the average of all numbers #include &lt...

Assignment - 1 BPOPS103

Assignment-1 BPOPS103 1 Write a C Program for the following 1.1 Sum of 2 numbers #include <stdio.h> int main() { int num1, num2; printf("Enter two numbers: "); scanf("%d %d", ...

Solving BPOPS103 .

Solving BPOPS103 Q1. Simple Calculator #include <stdio.h> int main() { int num1, num2; char operator; printf("Enter the first number: "); scanf("%d", &num1); pri...

Real-Time Light Sensor Data Plotting using Python and Matplotlib

Monitoring Light Intensity with a Light Sensor and Python In this blog, we’ll explore how to use Python to monitor light intensity using a light sensor and visualize the data with matplotlib. We’l...

Solving PSP Question.

Solving PSP Question Hello Guys, today i will be showing the problems and solution of my psp class. 1: Familiarization with computer hardware and programming environment, the concept of naming th...

My C++ codes.

Hello everyone this is my second post, hoping y’all read the first post So here this is my first c++ code I wrote #include <iostream> using namespace std; int main() { int a, b, c; ...

My java codes.

My java codes Hello everyone, this is my first post showing off my java skills. this is my first java code i ever wrote //java program for to print the pattern of stars import java.util.Scanner;...