ContentPosts from @dawnalvarez494..
Link
@faun shared a link, 3 years, 2 months ago
FAUN.dev()

Cloud Run for Google Sheets

The author uses Google Sheets to track various aspects of their life and prefers Google Sheets due to its free cost, great documentation, and cross-device accessibility. However, they find that Google Apps Script doesn't provide all the functionalities they want and choose to use Cloud Run to contro.. read more  

Cloud Run for Google Sheets
Link
@faun shared a link, 3 years, 2 months ago
FAUN.dev()

Building Highly Scalable Serverless WebSocket Infrastructure on AWS

This article outlines a solution for building ascalable WebSocket infrastructure using Serverless architecture on AWS. WebSocket requires a long-running process on the server, but serverless functions are short-lived. To overcome this, the article suggests usingAmazon API Gateway, Amazon Lambda Func.. read more  

Building Highly Scalable Serverless WebSocket Infrastructure on AWS
Link
@faun shared a link, 3 years, 2 months ago
FAUN.dev()

Trying to use AWS Lambda as an API? Here’s what you need to know

When using AWS Lambda as an API, there aresome hard limitsto keep in mind, including amax timeout of 15 minutesand amax response size of 6 MB. To use Lambda as an API endpoint, it can be coupled with an Application Load Balancer or API Gateway, but the most recent way is using Lambda function URLs,.. read more  

Trying to use AWS Lambda as an API? Here’s what you need to know
Link
@faun shared a link, 3 years, 2 months ago
FAUN.dev()

NPM repository flooded with 15,000 phishing packages

The battle against threat actors targeting the open-source ecosystem continues, with researchers observing a sudden surge of over 15,000 phishing packages flooding NPM, the world's largest free software registry... read more  

NPM repository flooded with 15,000 phishing packages
Link
@faun shared a link, 3 years, 2 months ago
FAUN.dev()

Django 4.2 beta 1 released

Django 4.2 beta 1 is now available. It represents the second stage in the 4.2 release cycle and is an opportunity for you to try out the changes coming in Django 4.2... read more  

Django 4.2 beta 1 released
Link
@faun shared a link, 3 years, 2 months ago
FAUN.dev()

What performs better, SQL FILTER or CASE?

The author of this article explores whether there is a performance impact ofusing FILTER in SQL, specifically PostgreSQL, or if it is just syntax sugar for aCASE expressionin an aggregate function. While the two types of aggregate function expressions can be proven to mean exactly the same thing, t.. read more  

What performs better, SQL FILTER or CASE?
Link
@faun shared a link, 3 years, 2 months ago
FAUN.dev()

GitHub CEO on why open source developers should be exempt from the EU's AI Act

GitHub CEO Thomas Dohmke says that open source developers should be made exempt from the EU's proposed new AI regulations... read more  

GitHub CEO on why open source developers should be exempt from the EU's AI Act
Link
@faun shared a link, 3 years, 2 months ago
FAUN.dev()

Socket now supports the Python programming language.

Socket has announced it supports the Python programming language. Socket is an app that protects your Python app from malicious dependencies lurking in your open source supply chain... read more  

Socket now supports the Python programming language.
Link
@faun shared a link, 3 years, 2 months ago
FAUN.dev()

Structural Pattern Matching in Python

Python 3.10 introducesstructural pattern-matching syntaxthat allows developers to compare objects based on their structure rather than just their type. This feature is already available in languages such as Scala, Rust, Java, and Python 3.10. There are nine different types of patterns in Python, in.. read more  

Structural Pattern Matching in Python
Link
@faun shared a link, 3 years, 2 months ago
FAUN.dev()

Caching a lot of methods in Python

This tutorial provides a useful overview of caching in Python usingfunctools.lru_cache()and how to apply it to various situations, including cases where you don't own the client code or don't want to write a wrapper class. The article also addresses potential issues with decorating methods and offe.. read more