Skip to content

Instantly share code, notes, and snippets.

View sahilkashyap64's full-sized avatar
🎯
Focusing

Sahil Kashyap sahilkashyap64

🎯
Focusing
View GitHub Profile
@sahilkashyap64
sahilkashyap64 / asignment.ipynb
Created October 1, 2024 19:16
Asignment.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sahilkashyap64
sahilkashyap64 / form_builder.sql
Last active August 9, 2024 22:12
form builder db design
-- Organizations Table
CREATE TABLE organizations (
id SERIAL PRIMARY KEY,
organization_name VARCHAR(80) NOT NULL
);
-- Creating an index on the organization_name as suggested by the ER diagram.
CREATE INDEX idx_organizations_name ON organizations(organization_name);
-- Create ENUM type for survey status
@sahilkashyap64
sahilkashyap64 / UserStateHandler.js
Last active June 14, 2024 13:39
Deeplinking with authentication react native recoil
// UserStateHandler.js
import React, { createRef, useImperativeHandle } from 'react';
import { useRecoilState } from 'recoil';
import { userState } from '../store/atoms';
// Create the ref
export const userGlobalRef = createRef();
const UserStateHandler = React.forwardRef((props, ref) => {
const [user, setUser] = useRecoilState(userState);
@sahilkashyap64
sahilkashyap64 / AddressPicker.js
Created April 30, 2024 07:55
survey react native
import React,{useRef,useEffect} from 'react';
import {View,Text,SafeAreaView,ScrollView} from 'react-native'
import { GooglePlacesAutocomplete } from 'react-native-google-places-autocomplete';
import {GOOGLE_MAPS_AUTOCOMPLETE_API_KEY} from '../../constants'
const apiKey=GOOGLE_MAPS_AUTOCOMPLETE_API_KEY;
import { getReverseCodeLocation } from '../../api/locations';
navigator.geolocation = require('react-native-geolocation-service');
const AddressPicker = ({onSelect,latitude,longitude}) => {
console.log("AddressPicker",{latitude,longitude});
@sahilkashyap64
sahilkashyap64 / pg.sh
Created March 7, 2024 21:38
pg_dump mac command not found
export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/latest/bin
pg_dump
@sahilkashyap64
sahilkashyap64 / insertData.sql
Last active February 29, 2024 21:59
survey to support multiple question type
BEGIN; -- Start of the transaction
-- insert data
-- Dummy Organization
INSERT INTO organizations (id,organization_name) VALUES (1,'Tennis Survey Organization');
-- Dummy Survey Header, assuming organization_id = 1
INSERT INTO survey_headers (id,organization_id, survey_name, instructions) VALUES (1,1, 'Tennis Partner Survey', 'Please complete this survey to find your ideal tennis partner.');
-- Input Types
@sahilkashyap64
sahilkashyap64 / surveyDB.sql
Created February 28, 2024 17:05
survey db based on the thesis
-- https://wwwiti.cs.uni-magdeburg.de/iti_db/publikationen/ps/auto/thesisJohn22.pdf
BEGIN;
-- Drop tables if they already exist to avoid errors
DROP TABLE IF EXISTS Footnote CASCADE;
DROP TABLE IF EXISTS Additional_Answer_Part_Choice CASCADE;
DROP TABLE IF EXISTS Choice_Text CASCADE;
DROP TABLE IF EXISTS Choice_Group CASCADE;
DROP TABLE IF EXISTS Additional_Answer_Part CASCADE;
@sahilkashyap64
sahilkashyap64 / CollectionOptions.js
Last active July 14, 2023 21:02
React native shopify
import React from 'react';
import { normalize, SCREEN_WIDTH } from '../../../../theme/metrics';
import { View, Text, TextInput, ScrollView, Image, SafeAreaView, StyleSheet, TouchableOpacity, Dimensions } from 'react-native';
const pageWidth = Dimensions.get('window').width;
const logo = {
uri: 'https://reactnative.dev/img/tiny_logo.png',
width: 64,
height: 64,
};
@sahilkashyap64
sahilkashyap64 / products.js
Created June 17, 2023 10:33
chaninging middleware nodejs
function prepareForMiddleware(req,res,next,data){
res.return=data;
next();
}
function productDetails(){
// return res.json({ message: 'Product Details', product, similar, variants });
let data = { message: 'Product Details', product, similar, variants };
prepareForMiddleware(req,res,next,data);
@sahilkashyap64
sahilkashyap64 / shopifyOrder.js
Created April 22, 2023 11:10
array of object, nested array of object merged into parent obj
const data = [
{
"id": 5363606323483,
"created_at": "2023-04-19T06:10:09-04:00",
"currency": "USD",
"name": "#1049",
"note_attributes": [
{
"name": "user_email",