Monthly Archives: June 2023

Teradata: Common Queries

Get all tables in a database Get all Views in a database Get # of rows in a table Get Column Info (information about columns) in a table Get Table Size (size of table)

Posted in Computers, programming, Software | Leave a comment

How to build a rate-limiter in JavaScript or Node.js

In this post we show how to build a rate-limiter in JavaScript or Node.js. A rate-limiter as its name suggests is used to limit the amount of traffic being sent to a server. Think of it as a dam that … Continue reading

Posted in Computers, programming, Software | Tagged , | Leave a comment

Get BigQuery Table Schema

This post describes how to get the schema of a table in BigQuery. Its actually quite straightforward (I mean you can use standard JDBC methods to get it) if one uses the BigQuery JBDC connector like below: BigQueryJdbcConnection is a … Continue reading

Posted in Computers, programming, Software | Tagged , | Leave a comment

React Sucks. Redux sucks even more.

Today I just want to vent out my frustration with React (and Redux) and say it loud that it sucks big time! Years ago I used a library called Knockout to build UI and never had any problem with it. … Continue reading

Posted in Computers, programming, Software | Leave a comment