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
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.
<!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>
@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();
};
<html>
<head>
<title>Hello, world!</title>
<link rel="stylesheet" type="text/css" href="/css/style.css">
</head>
@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.