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
m-0 margin: 0px; | |
mx-0 margin-left: 0px; | |
margin-right: 0px; | |
my-0 margin-top: 0px; | |
margin-bottom: 0px; | |
mt-0 margin-top: 0px; | |
mr-0 margin-right: 0px; | |
mb-0 margin-bottom: 0px; | |
ml-0 margin-left: 0px; | |
m-px margin: 1px; |
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
{"lastUpload":"2019-11-06T02:38:06.525Z","extensionVersion":"v3.4.3"} |
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
// Input must be sorted in asc order | |
const input = [3, 8, 20, 25]; | |
let output = []; | |
const minmax = [10, 30]; | |
let distances = []; | |
for (let i = 0; i < input.length; i++) { | |
if ((i + 1) < input.length) { | |
if (input[i] > input[i + 1]) { |
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
steps: | |
- name: 'gcr.io/cloud-builders/yarn' | |
args: ['install'] | |
- name: 'gcr.io/cloud-builders/npm' | |
args: ['run', 'lint'] | |
- name: 'gcr.io/cloud-builders/npm' | |
args: ['run', 'test'] | |
env: | |
- 'CI=true' | |
- name: 'gcr.io/cloud-builders/npm' |
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> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<title>Example webpage</title> |
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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "PublicReadGetObject", | |
"Effect": "Allow", | |
"Principal": "*", | |
"Action": "s3:GetObject", | |
"Resource": "arn:aws:s3:::simplelandingpage.com/*" | |
} |
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 from 'react'; | |
import PropTypes from 'prop-types'; | |
import { connect } from 'react-redux'; | |
export default function (ComposedComponent) { | |
class Authenticate extends React.Component { | |
static propTypes = { | |
isAuthenticated: PropTypes.bool.isRequired, | |
} |
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.sakana; | |
import com.facebook.react.ReactNativeHost; | |
import com.facebook.react.ReactPackage; | |
import com.facebook.react.shell.MainReactPackage; | |
import com.facebook.soloader.SoLoader; | |
import com.imagepicker.ImagePickerPackage; | |
import com.oblador.vectoricons.VectorIconsPackage; | |
import com.reactnativenavigation.NavigationApplication; |
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
# ReactJS, AWS, CircleCI 2.0 configuration file. | |
version: 2 | |
jobs: | |
build-job: | |
docker: | |
# specify the version you desire here | |
- image: circleci/node:7.10 | |
working_directory: ~/repo |
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
# http://EditorConfig.org | |
root = true | |
# Unix-style newlines with a newline ending every file | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
indent_style = space | |
indent_size = 2 |