Tuesday, December 31, 2019

Amazon Sagemaker


Amazon Sagemaker



References:
https://aws.amazon.com/sagemaker/

GCP vs AWS : Service Types



At a high level, cloud platforms begin by providing a set of baseline services: compute, storage, networking, and database services. AWS's baseline services include:

    Compute: Amazon Elastic Compute Cloud (EC2)
    Storage: Amazon Simple Storage Service (S3) and Amazon Elastic Block Store (EBS)
    Networking: Amazon Virtual Private Cloud (VPC)
    Databases: Amazon Relational Database Service (RDS) and Amazon DynamoDB

GCP's baseline services include:

    Compute: Google Compute Engine and Google App Engine
    Storage: Google Cloud Storage
    Networking: Google Virtual Private Cloud
    Databases: Google Cloud SQL, Google Cloud Datastore, and Google Cloud Bigtable

Each platform then builds other higher-level services on top of these services. Typically, these higher-level services can be categorized as one of four types:

    Application services: Services designed to help optimize applications in the cloud. Examples include Amazon SNS and Google Cloud Pub/Sub.
    Big data and analytics services: Services designed to help process large amounts of data, such as Amazon Kinesis and Google Cloud Dataflow.
    Management services: Services designed to help you track the performance of an application. Examples include Amazon CloudWatch and Google Stackdriver Monitoring.
    Machine learning services: Services designed to help you incorporate perceptual AI such as image or speech recognition, or to train and deploy your own machine learning models. Examples include Amazon SageMaker and Google Cloud Machine Learning Engine.

References:
https://cloud.google.com/docs/compare/aws/

Developer notes on Instruments

Developer notes on Instruments


References:
https://medium.com/@kazmiekr/what-every-ios-developer-should-be-doing-with-instruments-d1661eeaf64f

HTML, CSS : PhotoBook template

HTML, CSS : PhotoBook template

This template is having header at the top

h3 class="w3-hide-medium w3-hide-small">PHOTOGRAPHER!h3
This indicates that certain elements can be hidden or shown based on the available width. The above tells the text Photographer should be hidden in the medium and small resolutions.



References:
https://www.w3schools.com/w3css/tryit.asp?filename=tryw3css_templates_photo3&stacked=h

React Native: Running the apps

React Native: Running the apps

With the below steps. We can run a sample React Native application on the simulator.

Create the app using the below steps

$ npm i -g create-react-native-app
$ create-react-native-app my-project
$ cd my-project
$ npm start

Below given the console message those are printed when app is running on the simulator.

Opening on Android device
Downloading latest version of Expo
Installing Expo on device
Opening on Android device
Building JavaScript bundle: finished in 32761ms.

This launches the app on the Simulator.

One main thing to note is, if VPN is connected, I found this to be not working.

Its pretty good that when try to change the text, it reloads automatically. Nice!

References:

HTML : Sticky Footer



Its simple as below





Javascript: Draggable components

Javascript: Draggable components



References:
https://www.w3schools.com/code/tryit.asp?filename=FZ2K2TK505QE