Skip to content

Instantly share code, notes, and snippets.

View SiddheshKukade's full-sized avatar
💻
Coding Probably

Siddhesh Bhupendra Kuakde SiddheshKukade

💻
Coding Probably
View GitHub Profile
@SiddheshKukade
SiddheshKukade / 10thOctReport.md
Last active September 15, 2023 19:00
Palisadoes foundation Work Report - 10th Oct

Mobile App:

  • Worked on Subscriptions tabs
  • Problems Facing:
    • The subscription data in flutter is coming a form of stream and needs to directly rendered with a builder function in flutter.
    • I'm trying to find the most optimal way to do this.

Talawa-Admin:

  • Adding the socket listeners on the talawa Mobile web version which is deployed on the 'url::talawa-admin.com/user' path
  • It would be toggling the UI of the navbar based on the plugin status.
<html>
<head>
<title>Hello, world!</title>
<link rel="stylesheet" type="text/css" href="/css/style.css">
</head>
@SiddheshKukade
SiddheshKukade / ajax.js
Created June 1, 2023 03:28
get-post-ajax
let fetchData = () => {
let httprequest = new XMLHttpRequest();
httprequest.open("GET", "https://jsonplaceholder.typicode.com/users");
httprequest.send();
httprequest.onload = () => {
let res = JSON.parse(httprequest.responseText);
console.log(res);
localStorage.setItem("users", JSON.stringify(res));
displayData();
};
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Siddhesh</title>
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SiddheshKukade
SiddheshKukade / hadoop.md
Last active May 27, 2023 03:42
hadoop basic assignment for access log counter

Requirements

  • count.java
  • mapper.java
  • reducer.java

Steps

  1. Create a new eclipse project
  2. give name maximum_log
  3. It should be as follows:
@SiddheshKukade
SiddheshKukade / hive.md
Created May 25, 2023 08:56
For DSBDA Hive Assignment

Requirements :

  • Local hive start
cd /usr/local/hive/bin
./hive
to close : exit ./hive
  • flights_info.txt 200K flight records
  • info.text contains table description
@SiddheshKukade
SiddheshKukade / pyhadoop.md
Last active May 25, 2023 08:22
DSBDA Python hadoop practical

Required files

  • mapper.py
  • reducer.py

put the files on the hadoops file system

  1. run hdfs dfs -mkdir /sid
  2. Create a file data.txt with contents
WELCOME TO PVGCOET  WELCOME TO PVGCOET  WELCOME TO PVGCOET