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
package com.dansmy.walkbase_start | |
import android.content.Intent | |
import android.content.pm.PackageManager | |
import android.net.Uri | |
import android.os.Build | |
import android.os.Bundle | |
import android.provider.Settings | |
import android.support.annotation.RequiresApi | |
import android.support.design.widget.Snackbar |
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, { PureComponent } from 'react'; | |
import { is, List } from 'immutable'; | |
import onClickOutside from 'react-onclickoutside'; | |
import TetherComponent from 'react-tether'; | |
import PropTypes from 'prop-types'; | |
import classnames from 'classnames'; | |
import SelectionDropdown from '../SelectionDropdown'; | |
/* | |
* The selected option needs to be displayed first, |
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 { Component, OnDestroy, OnInit } from '@angular/core'; | |
import { EntryService } from '../entry.service'; | |
import { EntrySelectorService } from '../../entry-selector/entry-selector.service'; | |
import { Entry } from '../../../../core/models/entry.model'; | |
import { Subscription } from 'rxjs/Subscription'; | |
import { FormBuilder, FormGroup } from '@angular/forms'; | |
import { FuseUtils } from '../../../../core/fuseUtils'; | |
import { fuseAnimations } from '../../../../core/animations'; | |
import 'rxjs/add/operator/debounceTime'; | |
import 'rxjs/add/operator/distinctUntilChanged'; |
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
const request = require("request"); | |
const fs = require('fs'); | |
const stream = require('stream'); | |
const pdf = require('html-pdf'); | |
const ConstructionNote = require('../models/constructionNote.model'); | |
const cloudinary = require('cloudinary').v2; | |
cloudinary.config({ | |
cloud_name: "your cloud name", | |
api_key: "your api key", |
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
<?php | |
namespace App\Http\Controllers\Admin; | |
use Illuminate\Http\Request; | |
use App\ManualPollPage; | |
use App\ManualFuture; | |
use App\ManualFutureAnswer; | |
use App\ManualCandidate; | |
use App\Facades\Calculation; |
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, { Component } from 'react'; | |
import { Formik } from 'formik'; | |
import * as Yup from 'yup'; | |
import { | |
Card, | |
Form, | |
FormLayout, | |
InlineError, | |
TextStyle, | |
TextField, |
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
<template> | |
<div v-if="startDate" class="piechart"> | |
<div class="chart-filter in-toolbar"> | |
<custom-date-range-picker | |
rangeType="all" | |
:initialRange="dateRange" | |
:pickHandler="pickHandler" | |
:style="{display: showPicker ? 'inline-flex' : 'none'}" | |
:startDate="startDate" | |
/> |
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
<template> | |
<el-date-picker | |
v-model="dateRange" | |
:type="pickerType" | |
align="right" | |
unlink-panels | |
:range-separator="$t('general.date_range.range_separator')" | |
:start-placeholder="$t('general.date_range.start_date')" | |
:end-placeholder="$t('general.date_range.end_date')" | |
:format="viewFormat" |
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 'package:cashjar_common/model/message.dart'; | |
import 'package:cashjar_common/api/message_service_api.dart'; | |
import 'package:firebase/firebase.dart' as firebase; | |
import 'package:firebase/firestore.dart'; | |
import 'package:firebase/firestore.dart' as fs; | |
class MessageServiceApiImple extends MessageServiceApi { | |
@override | |
Stream<List<Message>> getMessageList(String offerId) { | |
fs.Firestore firestore = firebase.firestore(); |
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
:host { | |
background-color: #eae0da; | |
width: 100%; | |
display: -ms-flexbox; | |
display: -webkit-flex; | |
display: flex; | |
-ms-flex-direction: row; | |
-webkit-flex-direction: row; | |
flex-direction: row; | |
-ms-flex-align: center; |
OlderNewer