View gist:baf71f6ba95152c247b2645a784556f8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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"> |
View ScriptComponent_OdbcConnectionSource_Connection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; |
View gist:b9f48a3e59dc32d96f891efbcbe457ac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; |