Latest Blog

I have a tensorflow model (.h5) file, I like to serve it in the browser, maybe using tensorflow.js, can I do that?
December 17, 2023 | No Comments

Yes, you can serve a TensorFlow model in the browser using TensorFlow.js. TensorFlow.js is a JavaScript library that allows you to define, train, and run machine learning models directly in the browser or on Node.js. Here are the general steps to achieve this: Convert the TensorFlow Model to TensorFlow.js format: Use the TensorFlow.js Converter tool […]

Read More

how can I install tensorflowjs_converter?
December 17, 2023 | No Comments
Read More

What is the relationship between argoCD, circleCI, github, are they all from the same company?
December 17, 2023 | No Comments

No, ArgoCD, CircleCI, and GitHub are not from the same company. They are separate tools and services provided by different organizations, each serving distinct purposes in the software development and deployment lifecycle. While these tools can be used together in a toolchain to support the entire software development lifecycle (from code development and collaboration to […]

Read More

What is service principal, in the context of azure AKS?
December 17, 2023 | No Comments

In the context of Azure AKS (Azure Kubernetes Service), a service principal is an identity created for use with applications, services, and automation tools to access resources within an Azure AD (Active Directory) or Azure subscription. Service principals are typically used to enable secure and programmatic access to Azure resources. When you deploy an AKS […]

Read More

Use az command to provision an AKS cluster
December 14, 2023 | No Comments

To provision an Azure Kubernetes Service (AKS) cluster using the Azure Command-Line Interface (az), you can use the following steps. Make sure you have the Azure CLI installed and authenticated before you proceed. That’s it! You’ve successfully provisioned an AKS cluster using the Azure CLI. Make sure to replace the placeholder values with your specific […]

Read More

What is GAINLIQ159LD?
June 30, 2023 | No Comments

It is a laundry detergent sold by Costco. Link Its item number is 3160644. The price is 19.99 (-4.00) in Jun 2023.

Read More

Simplifying Node.js Script Configuration with Command-Line Arguments
June 28, 2023 | No Comments

Introduction Configuring Node.js scripts can be made more flexible and user-friendly by utilizing command-line arguments. With the help of the yargs package, handling command-line parameters becomes a breeze. In this tutorial, we’ll explore how to enhance your Node.js scripts by adding command-line arguments for dynamic configuration. Example In your app.js file, you can easily implement […]

Read More

How to write a shopify app that can pull a merchant’s catalog data
June 23, 2023 | No Comments

To write a Shopify app that can pull a merchant’s catalog data, you can follow these general steps: Remember to refer to Shopify’s API documentation (https://shopify.dev/docs/admin-api) for detailed information on the available endpoints, data structures, and authentication processes.

Read More

How to interact with GCS using Python
June 17, 2023 | No Comments

To write data to a file in a Google Cloud Storage bucket using the Google Cloud Storage Python client library, you can use the following code: What does blob mean? In the context of Google Cloud Storage, a blob represents a data object stored in a bucket. It is the fundamental unit of data in […]

Read More