View connnection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
# Create a socket object | |
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
# Get the local machine name | |
host = socket.gethostname() | |
# Set the port number | |
port = 12345 |
View recomendation.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
from sklearn.model_selection import train_test_split | |
from sklearn.neighbors import KNeighborsClassifier | |
# Load the data for the recommendation system | |
data = pd.read_csv("posts.csv") | |
# Select the relevant columns for the ML model | |
X = data[["hashtags", "time_spent"]] |
View recomendation.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View lab_6.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Question 1 | |
list1 = [] | |
for i in range(20): | |
if i % 2 == 0 or i % 4 == 0: | |
list1.append(i) | |
# Question 2 | |
def square(x): | |
return x ** 2 |
View Linkedlistttt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Linked list operations in C | |
#include <stdio.h> | |
#include <stdlib.h> | |
// Create a node | |
struct Node { | |
int data; | |
struct Node* next; | |
}; |
View first.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
struct cricket | |
{ | |
char player_name[11]; | |
char team[2]; | |
float bating_avg; | |
} | |
a[50]; |
View nashiha assignment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() | |
{ | |
int i,num,rem,count; | |
int ar[50]; | |
printf("Enter the number:\n"); | |
scanf("%d",&num); | |
count = 0; | |
i = 0; |
View srotoswinee assignment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
void main() | |
{ | |
int i,j,temp,p,n; | |
int ar[50]; | |
printf("Enter the size of an array"); | |
scanf("%d",&n); | |
printf("Enter the array elements: "); | |
for(i=0;i<n;++i) | |
{ |
View string_concatination.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() { | |
char s1[100]; | |
scanf("%[^\n]%*c", s1); | |
char s2[100]; | |
scanf("%[^\n]%*c", s2); | |
int length, j; | |
length = 0; |
View dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:20.04 | |
ENV DEBIAN_FRONTEND=noninteractive | |
EXPOSE 6200 | |
EXPOSE 5009 | |
LABEL ranchimall="ranchimallfze@gmail.com" | |
# CMD { "echo", "Ranchi Mall" } | |
# for apt to be noninteractive |
NewerOlder