Top

Tags: Linux InstallGuide Django Web-frontend Python Storage HPC Docker k8s Bootstrap

Bash script coding

Jun 15, 2021 | 1037 views

#Bash


Comments: 0

Google Cloud Knowledge Notes

Apr 01, 2021 | 1330 views

New Blog Series - BigQuery Explained: An Overview

https://medium.com/google-cloud/bigquery-explained-overview-357055ecfda3 


How I prepared for Google Cloud Certified - Associate Cloud Engineer Exam? [Simple and easy structure] https://rakeshvardan.hashnode.dev/how-i-prepared-for-google-cloud-certified-associate-cloud-engineer-exam   

How I Passed the Google Cloud Associate Engineer Certification?  https://medium.com/@charles_j/how-i-passed-the-google-cloud-associate-engineer-certification-63a0fd932057 


Take the Associate Cloud Engineer practice exam ( https://cloud.google.com/certification/practice-exam/cloud-engineer  ) one week before the Certification exam. So, you can analyze your knowledge and check where you stand.


--- BigQuery Use Cases ## Summarize cost statistic for some logs


select sum(size_in_MiB) as total_MiB, sum(cost) as total_cost_USD from
 (select table_id, 
         sum(size_bytes)/pow(10,6) as size_in_MiB, 
         sum(size_bytes)/(pow(10,9)*2) as cost 
     from `.__TABLES__` 
     where REGEXP_CONTAINS(table_id, r"_202103.*") 
group by table_id 
order by size_in_MiB desc)

BigQuery:


Comments: 0

JavaScript Programming Usage

Mar 01, 2021 | 2062 views

#Web-frontend


Get timestamp from datetime format string:

## JavaScript code example
time = "2020-02-27T16:00:00.000Z"
"2020-02-27T16:00:00.000Z"
timestamp = Date.parse(time) / 1000
1582819200

## verify above timestamp
date -d "1970-01-01 UTC 1582819200 seconds"
Thu Feb 27 16:00:00 UTC 2020

Refer to:

Comments: 0

JSON Usage in Python and Pandas

Feb 19, 2021 | 1381 views

#Python #Web-frontend


Python dict to json or vice  versus

Panda DataFrame and Series to JSON:

JSON to javascript in Django framework


Create JSON object dynamically via JavaScript (Without concate strings) 

xy_kline_data = []
for (var key in kline_data) {
    xy = { 
          x: new Date(key),
          y: [ kline_data[key]["open"], 
              kline_data[key]["high"], 
              kline_data[key]["low"], 
              kline_data[key]["close"]
          ]
    }
    xy_kline_data.push(xy)
}


Comments: 0

Redis Administration

Feb 19, 2021 | 1249 views

#Django


Secure Redis:

Django Redis UnpicklingError:

Using Redis in Python:

Comments: 0