Skip to content

Instantly share code, notes, and snippets.

View wolz-CODElife's full-sized avatar
:octocat:
Always coding

wolz-CODElife wolz-CODElife

:octocat:
Always coding
View GitHub Profile
View Machine_learning_services_table.csv
Platform Service Pre-built Algorithms Deployment Frameworks Pricing
GCP Cloud AI Platform High High TensorFlow, PyTorch, Scikit-learn, XGBoost, Keras, OpenCV Affordable
AWS Amazon SageMaker High High TensorFlow, Apache MXNet, PyTorch, Scikit-learn, XGBoost Expensive
Azure Azure Machine Learning Medium to Low Medium to High TensorFlow, PyTorch, Scikit-learn, Keras, ONNX Runtime Normal
View Database_services_table.csv
Platform Service Scalability Capacity Database Engines Pricing
GCP Cloud SQL Medium to High High MySQL, PostgreSQL, SQL Server Affordable
AWS Amazon Relational Database Service (RDS) High High Aurora, MySQL, MariaDB, PostgreSQL, Oracle Normal
Azure Azure SQL Database Medium to High High SQL Server Normal
View Storage_services_table.csv
Platform Service Scalability Storage Service Encryption Pricing
GCP Cloud Storage High High High Affordable
AWS Simple Storage Service (S3) High High High Normal
Azure Blob Storage High High High Normal
View Computing_services_table.csv
Platform Service Scalability Flexibility OS support Pricing
GCP Compute Engine High High Multiple (Linux, Windows) Normal
AWS Elastic Compute Cloud (EC2) High High Multiple (Mac, Linux, Windows) Expensive
Azure Virtual Machines High High Multiple (Linux, Windows) Normal
View cost_price_table.csv
Machine Type GCP AWS Azure
Smallest Instance 2 vCPUs, 8 GB RAM for US$52/month 2 vCPUs, 8 GB RAM for US$69/month 2 vCPUs, 8 GB RAM for US$70/month
Largest Instance 160 vCPUs, 3.75 TB RAM for US$5.32/hour 128 vCPUs, 3.84 TB RAM for US$3.97/hour 128 vCPUs, 3.89 TB RAM for US$6.79/hour
View App.tsx
import { Refine } from "@pankod/refine-core";
import routerProvider from "@pankod/refine-react-router-v6";
import {
CssBaseline,
GlobalStyles,
ThemeProvider,
LightTheme,
} from "@pankod/refine-mui";
import Dashboard from "pages/Dashboard";
function App() {
View Dashboard.tsx
import React from "react";
// Import Swiper React components
import { Swiper, SwiperSlide } from "swiper/react";
import { Navigation, Autoplay } from "swiper";
// Import Swiper styles
import "swiper/css";
import "swiper/css/effect-cards";
import "swiper/css/pagination";
@wolz-CODElife
wolz-CODElife / styles.css
Last active October 22, 2022 21:47
Stylesheet for Custom Dashboard built with Refine
View styles.css
.main {
margin: 20px 80px;
}
.main .center-main {
width: 40%;
margin: 50px auto;
}
.main .center-main img {
width: 100%;
object-fit: contain;
View google_analytics_graphql_mutation
"""Hello Analytics Reporting API V4."""
import pandas as pd
import matplotlib.pyplot as plt
from apiclient.discovery import build
from oauth2client.service_account import ServiceAccountCredentials
import requests, json
import dataframe_image as dfi
import cloudinary
import cloudinary.uploader
import cloudinary.api
@wolz-CODElife
wolz-CODElife / index.html
Created July 1, 2022 10:38
Meta tags/SEO config HTML snippets
View index.html
<head>
<meta charset="utf-8" />
<link rel="icon" href="{{IMAGE_URL/IMAGE_PATH}}" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no">
<meta name="theme-color" content="{{SITE_THEME_COLOR}}" />
<meta name="description" content="{{SITE_DESCRIPTION}}" />
<meta property="og:description" content="{{SITE_DESCRIPTION}}" />
<meta data-react-helmet="true" property="og:title" content="{{SITE_TITLE}}">
<meta data-react-helmet="true" property="og:type" content="Website">
<meta data-react-helmet="true" property="og:url" content="{{SITE_URL}}">