Skip to content
View adhendo's full-sized avatar
🎯
Focusing
🎯
Focusing

Highlights

  • Pro
Block or Report

Block or report adhendo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Podfile for working with @homee/reac... Podfile for working with @homee/react-native-mapbox-navigation
    1
    plugin 'cocoapods-user-defined-build-types'
    2
    enable_user_defined_build_types!
    3
    install! 'cocoapods', :disable_input_output_paths => true
    4
    
                  
    5
    #use_frameworks!
  2. apollo-client-setup apollo-client-setup
    1
    import { ApolloClient, HttpLink, InMemoryCache } from "@apollo/client";
    2
    import { offsetLimitPagination } from "@apollo/client/utilities";
    3
    import { setContext } from "@apollo/link-context";
    4
    import { GRAPHQL_API_URL } from "react-native-dotenv";
    5
    import Firebase from "./firebase";
  3. React Native Search Screen Example React Native Search Screen Example
    1
    import { EvilIcons, Feather } from "@expo/vector-icons";
    2
    import AppLoading from "expo-app-loading";
    3
    import * as Expo from "expo-asset";
    4
    import PropTypes from "prop-types";
    5
    import React from "react";
  4. Command line script for bulk json fi... Command line script for bulk json file indexing to Elastic Search
    1
    cat example.json | jq -c -r '.[] | {"index": {"_index": "index_name", "_type": "_doc", "_id": .id}}, .' | curl -XPOST -H "Content-Type: application/json" https://elastic_search_url/index_name/_bulk --data-binary @-