Vectors vs. 1-forms: Two Different Spaces

On a smooth manifold, vector lives in the tangent vector space, while 1-form lives in the cotangent space. Note lot of confusion comes from the understanding of the basis vector and basis covetor. Vectors transform with Jacobian, 1-forms transform with the inverse transpose Jacobian. On a non-flat surface (a manifold), basis vectors are no longer … Continue reading Vectors vs. 1-forms: Two Different Spaces

Making the Most from Snowflake Snowpark

Snowpark is a powerful, developer-centric framework that lets you execute code written in popular languages like Python, Scala, or Java directly within Snowflake's data cloud. It moves computation closer to the data, drastically reducing data movement and leveraging Snowflake’s highly scalable, optimized engine. The single most important principle of Snowpark is client-side coding, server-side execution … Continue reading Making the Most from Snowflake Snowpark

Hilbert Spaces and Banach Spaces: What’s the Difference?

A Banach space is a complete normed vector space. Here, the norm is a function that measures the “length” of a vector vvv, and it must satisfy certain properties like the triangle inequality. The distance between two vectors uuu and vvv is defined simply by the norm of their difference, ∥u−v∥\|u - v\|∥u−v∥. Importantly, Banach … Continue reading Hilbert Spaces and Banach Spaces: What’s the Difference?

Security Matters in Building Safer Software

The OWASP Top 10 1. Broken Access Control This is the “users touching things they shouldn’t” category.Example: A simple missing WHERE user_id = ? lets User A view or modify User B’s data.Access control is not UI logic—it is backend logic. 2. Cryptographic Failures Encryption done wrong is effectively no encryption.Example: Sending passwords over HTTP … Continue reading Security Matters in Building Safer Software