See also:
Service | Type | Storage | Limitations |
---|---|---|---|
Amazon DynamoDB | 25 GB | ||
Amazon RDS | |||
Azure SQL Database | MS SQL Server | ||
👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
See also:
Service | Type | Storage | Limitations |
---|---|---|---|
Amazon DynamoDB | 25 GB | ||
Amazon RDS | |||
Azure SQL Database | MS SQL Server | ||
👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
import androidx.appcompat.app.AppCompatActivity | |
import android.os.Bundle | |
import android.util.Log | |
import android.view.View | |
import android.widget.Button | |
import android.widget.Toast | |
import androidx.appcompat.app.AlertDialog | |
import androidx.appcompat.widget.AppCompatButton | |
import androidx.lifecycle.Observer |
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.jetpackcompose"> | |
<uses-permission | |
android:name="android.permission.INTERNET" | |
/> | |
<application | |
android:allowBackup="true" |
package com.jetpackcompose | |
import android.os.Bundle | |
import android.webkit.WebView | |
import android.webkit.WebViewClient | |
import androidx.activity.ComponentActivity | |
import androidx.activity.compose.setContent | |
import androidx.compose.runtime.Composable | |
import androidx.compose.ui.viewinterop.AndroidView |
package com.jetpackcompseapp | |
import android.os.Bundle | |
import androidx.activity.ComponentActivity | |
import androidx.activity.compose.setContent | |
import androidx.compose.foundation.Image | |
import androidx.compose.foundation.layout.* | |
import androidx.compose.foundation.shape.CircleShape | |
import androidx.compose.runtime.Composable | |
import androidx.compose.ui.Alignment |
<?php | |
// example code | |
$string = "test1, test2"; | |
$string2 = "test1, test"; | |
$str_arr = explode (",", $string); | |
$str_arr2 = explode (",", $string2); |
<?php | |
// encrypt | |
$password = ""; // your password here | |
$options = [ | |
'cost' => 12, | |
]; | |
<?php | |
// API access key from Google API's Console | |
define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' ); | |
$registrationIds = array( $_GET['id'] ); | |
// prep the bundle | |
$msg = array |
A Pen by Captain Anonymous on CodePen.