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) |
| TQVhXkzZ541YEWbC4xPPA4SPHZGTvsYhAG | |
| TRC20 /USDT | |
| 0x9F560e0DEBb113d82d0eBBFBED3AA8427e8FbfE1 | |
| BEP20 / USDT | |
| 0x9F560e0DEBb113d82d0eBBFBED3AA8427e8FbfE1 | |
| ERC20 / USDT | |
| Be sure address and network to match, and confirm transaction with scans. |
| src/ | |
| |-- features/ | |
| | |-- featureA/ | |
| | | |-- components/ | |
| | | |-- store/ | |
| | | |-- services/ | |
| | | |-- routes.js | |
| | |-- featureB/ | |
| | |-- components/ | |
| | |-- store/ |
| <script setup> | |
| import { computed, watch, ref, reactive, defineAsyncComponent, onBeforeUnmount } from 'vue' | |
| import { useDashboardStore } from '@/stores/dashboard' | |
| import { useTrends } from '@/use/useTrends' | |
| import event from '@/plugins/event' | |
| import { useDisplay } from 'vuetify' | |
| import VueApexCharts from 'vue3-apexcharts' | |
| const Correlations = defineAsyncComponent(() => import('@/components/Trends/Correlations.vue')) | |
| const RotateScreenPrompt = defineAsyncComponent(() => import('@/components/RotateScreenPrompt.vue')) |
| function twoSum(nums, target) { | |
| // Create a map to store each number and its index | |
| const numMap = new Map(); | |
| // Iterate through the array | |
| for (let i = 0; i < nums.length; i++) { | |
| const complement = target - nums[i]; | |
| // Check if the complement exists in the map | |
| if (numMap.has(complement)) { |
| // https://gist.github.com/Esgrima/c0d4bff4b0d3909daf8994410cd659ce | |
| // https://dartpad.dev/c0d4bff4b0d3909daf8994410cd659ce | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_test/flutter_test.dart'; | |
| import 'package:boolean_selector/boolean_selector.dart'; | |
| // (TODO: Tip # 1) Consider making frequently used variables/values constants | |
| const _fooConst1 = ''; | |
| const _fooConst2 = ''; |
| import { useLocation } from "react-router-dom"; | |
| export function useQueryParams() { | |
| const query = new URLSearchParams(useLocation().search); | |
| return query; | |
| } |
| // | |
| // RemoteImage.swift | |
| // List | |
| // | |
| // Created by noda on 12/13/20. | |
| // | |
| import SwiftUI | |
| struct RemoteImage: View { |
| import React from "react"; | |
| import PropTypes from "prop-types"; | |
| import DimensionConsumer from "./DimensionContext"; | |
| import { getScreenWidth, getScreenHeight } from "./selectors"; | |
| const ScreenConsumer = ({ children }) => { | |
| return ( | |
| <DimensionConsumer> | |
| {dimensions => | |
| children(getScreenWidth(dimensions), getScreenHeight(dimensions)) |