Skip to content

Instantly share code, notes, and snippets.

View jalotra's full-sized avatar

ShivamJalotra jalotra

View GitHub Profile
{
"2741835855": {
"labels": {
"spinal_canal_stenosis_l1_l2": "Normal/Mild",
"spinal_canal_stenosis_l2_l3": "Normal/Mild",
"spinal_canal_stenosis_l3_l4": "Normal/Mild",
"spinal_canal_stenosis_l4_l5": "Normal/Mild",
"spinal_canal_stenosis_l5_s1": "Normal/Mild",
"left_neural_foraminal_narrowing_l1_l2": "Normal/Mild",
"left_neural_foraminal_narrowing_l2_l3": "Normal/Mild",
import requests
import json
addresses = [{
"street_name": "Sarjapur Road",
"address_detail": "Silver Spring",
"postal_code": "560035",
"city": "Bengaluru",
"region": "KA",
from typing import List
from pathlib import Path
import pathlib
import os
import random
DATA_FOLDER = "../data"
def strip_line(line: List[str]):
This file has been truncated, but you can view the full file.
{"2690161683": {"labels": {"spinal_canal_stenosis_l1_l2": "Normal/Mild", "spinal_canal_stenosis_l2_l3": "Normal/Mild", "spinal_canal_stenosis_l3_l4": "Normal/Mild", "spinal_canal_stenosis_l4_l5": "Normal/Mild", "spinal_canal_stenosis_l5_s1": "Normal/Mild", "left_neural_foraminal_narrowing_l1_l2": "Normal/Mild", "left_neural_foraminal_narrowing_l2_l3": "Normal/Mild", "left_neural_foraminal_narrowing_l3_l4": "Normal/Mild", "left_neural_foraminal_narrowing_l4_l5": "Normal/Mild", "left_neural_foraminal_narrowing_l5_s1": "Normal/Mild", "right_neural_foraminal_narrowing_l1_l2": "Normal/Mild", "right_neural_foraminal_narrowing_l2_l3": "Normal/Mild", "right_neural_foraminal_narrowing_l3_l4": "Normal/Mild", "right_neural_foraminal_narrowing_l4_l5": "Normal/Mild", "right_neural_foraminal_narrowing_l5_s1": "Normal/Mild", "left_subarticular_stenosis_l1_l2": "Normal/Mild", "left_subarticular_stenosis_l2_l3": "Moderate", "left_subarticular_stenosis_l3_l4": "Severe", "left_subarticular_stenosis_l4_l5": "Severe", "left_subar
{
"status": "success",
"data": {
"conversation": {
"uuid": "CONV-b0e2bcf4-f909-4bfa-a361-d1ffeac2a604",
"workspaceId": 13262382,
"createdAt": "2024-05-22T13:13:43.379Z",
"projectId": 38877338,
"context": {}
},
{
"company_data": {
"company": {
"business_challenges": "Here are the top three business challenges discussed in the OKTA earnings call:\n\n1. **Security Incident and Its Aftermath**:\n - The company experienced a security incident in October, which required significant effort to manage and mitigate. Although the incident is now behind them, it had some unquantifiable impact on Q4 results. The company is using the learnings from this incident to reassess and strengthen its security infrastructure and customer policies through initiatives like the Okta Secure Identity Commitment and Project Bedrock.\n\n2. **Reigniting Growth**:\n - OKTA is focused on reigniting growth, which has decelerated. This involves improving go-to-market operational excellence, increasing competitiveness in core markets, and enhancing growth vectors in key industries and newly introduced products. Specific strategies include shifting the direct sales team to a hunter-farmer model to drive new customer acquisition and ups
@jalotra
jalotra / sample_code.py
Last active May 10, 2024 07:48
Example Code to generate Tree out of RAPTOR
from .tree_structures import Tree, Node
from igraph import Graph, EdgeSeq
import plotly.graph_objects as go
import pickle
from ..routes.DocumentRoutes import read_redis_document
from ..routes.DocumentRoutes import get_redis_db
# Formats data so that plotly can plot it better,
# each line should have less than 80 characters and
@jalotra
jalotra / CVP SQL gist
Last active September 26, 2023 03:45
CREATE TABLE Org
(
id INT NOT NULL AUTO_INCREMENT,
marketplace VARCHAR NOT NULL,
created_at DATE NOT NULL,
updated_at DATE NOT NULL,
PRIMARY KEY (id)
);
CREATE TABLE Surveyor
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
min-height: 100vh;
display: flex;
align-items: center;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IEne=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Regisration Form </title>