Skip to content

Instantly share code, notes, and snippets.

View ImAbhishekTomar's full-sized avatar
👨‍💻
Architect & Full Stack Developer

Abhishek Tomar ImAbhishekTomar

👨‍💻
Architect & Full Stack Developer
View GitHub Profile
@ImAbhishekTomar
ImAbhishekTomar / gist:baf71f6ba95152c247b2645a784556f8
Created May 18, 2020 21:07
StarAdmin-Bootstrap-LayoutPage-DotNet-Core.cshtml
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>@ViewData["Title"] - CUBICS</title>
<!-- plugins:css -->
<link rel="stylesheet" href="~/assets/vendors/mdi/css/materialdesignicons.min.css" />
<link rel="stylesheet" href="~/assets/vendors/flag-icon-css/css/flag-icon.min.css">
@ImAbhishekTomar
ImAbhishekTomar / ScriptComponent_OdbcConnectionSource_Connection
Created December 13, 2019 13:52
Script Component - OdbcConnection Source Connection
#region Help: Introduction to the Script Component
/* The Script Component allows you to perform virtually any operation that can be accomplished in
* a .Net application within the context of an Integration Services data flow.
*
* Expand the other regions which have "Help" prefixes for examples of specific ways to use
* Integration Services features within this script component. */
#endregion
#region Namespaces
using System;
@ImAbhishekTomar
ImAbhishekTomar / gist:b9f48a3e59dc32d96f891efbcbe457ac
Created October 8, 2019 07:45
react native grid using flat list
import React, { useState, useEffect } from 'react';
import { Text, View, FlatList, ActivityIndicator, Image } from 'react-native';
import { StyleType, ThemedComponentProps, ThemeType, withStyles } from '@kitten/theme';
import SvgUri from 'react-native-svg-uri';
import InterestsMockup from '../../../DataAccess/mockups/InterestsMockup';
import Interest from '../../../DataAccess/Interest/Interest';
import { TouchableOpacity } from 'react-native-gesture-handler';
import { CheckBox } from 'react-native-ui-kitten';
import { boolean } from 'yup';
import { handler } from 'firebase-functions';