This proposal is not longer active. Context: https://twitter.com/siddharthkp/status/909818777314902016
| package com.example.ekene.cloudinarsample; | |
| import android.util.Log; | |
| import com.cloudinary.android.signed.Signature; | |
| import com.cloudinary.android.signed.SignatureProvider; | |
| import org.json.JSONException; | |
| import org.json.JSONObject; |
This proposal is not longer active. Context: https://twitter.com/siddharthkp/status/909818777314902016
| - create s3 bucket, for example: react. | |
| - create cloudfront distributions with these settings: | |
| - Default Root Object: index.html | |
| - Origin Domain Name: s3 bucket url, for example: react.s3.amazonaws.com | |
| - add custom error page with these settings: | |
| - HTTP Error Code: 403: Forbidden | |
| - Customize Error Response: Yes | |
| - Response Page Path: /index.html | |
| - HTTP Response Code: 200: OK | |
| import { Component } from "React"; | |
| export var Enhance = ComposedComponent => class extends Component { | |
| constructor() { | |
| this.state = { data: null }; | |
| } | |
| componentDidMount() { | |
| this.setState({ data: 'Hello' }); | |
| } | |
| render() { |
| package com.google.devrel.samples.gmstest.app; | |
| import android.app.Activity; | |
| import android.content.Intent; | |
| import android.os.AsyncTask; | |
| import android.os.Bundle; | |
| import android.util.Log; | |
| import android.view.Menu; | |
| import android.view.MenuItem; | |
| import android.view.View; |
| <ul> | |
| {% for project in pagination %} | |
| <li>{{ project.name }} has {{ project.?? }} tasks</li> | |
| {% endfor %} | |
| </ul> |
| <!doctype html> | |
| <title>Site Maintenance</title> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } | |
| body { font: 20px Helvetica, sans-serif; color: #333; } | |
| article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
| a { color: #dc8100; text-decoration: none; } | |
| a:hover { color: #333; text-decoration: none; } | |
| </style> |