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

Monitoring CloudSQL using Dynatrace

Monitor Microsoft SQL Server instances remotely using the ActiveGate extension for comprehensive insight into cloud SQL instances and databases, whether they are hosted on-premises or in a public cloud provider. The extension covers many metrics that DBAs are interested in and can be easily configur.. read more  

Monitoring CloudSQL using Dynatrace
Link
@faun shared a link, 2 years, 10 months ago
FAUN.dev()

Dependency Injection for Serverless Applications

Dependency injection is a software design pattern that addresses the component's dependency. It allows for the easy management and swapping of dependencies, making the code more modular and maintainable... read more  

Dependency Injection for Serverless Applications
Link
@faun shared a link, 2 years, 10 months ago
FAUN.dev()

A Better Way to Use Google Cloud from Colab

Colab allows users to avoid logging in separately and provides a straightforward way to use a Google Cloud project within a notebook. It simplifies the authentication process and reduces potential security concerns associated with using a service account... read more  

A Better Way to Use Google Cloud from Colab
Link
@faun shared a link, 2 years, 10 months ago
FAUN.dev()

The rise of GenEng: How AI changes the developer role

Widespread availability of generative AI chatbot technology and the power of large language models (LLMs) have the potential to revolutionize customer experience and employee productivity in enterprises. This generative AI technology can democratize access to AI for developers and enable them to int.. read more  

The rise of GenEng: How AI changes the developer role
Link
@faun shared a link, 2 years, 10 months ago
FAUN.dev()

Python Software Foundation: Announcing Our New Security Developer in Residence!

Seth Michael Larson is set to join the Python Software Foundation (PSF) as the first-ever security developer-in-residence in January, following a thorough search process. Larson, a well-known figure in the Python community, was previously named a PSF Fellow and has written extensively about Python s.. read more  

Link
@faun shared a link, 2 years, 10 months ago
FAUN.dev()

Automating Python code quality

The article discusses the concept and importance of code quality in software development. It mentions that code quality can benefit developers by reducing bugs, improving readability, and making them happier and more productive. It also suggests using tools like linters and type checkers to automate.. read more  

Automating Python code quality
Link
@faun shared a link, 2 years, 10 months ago
FAUN.dev()

Caching in Django with Redis

Cache is a mechanism that stores frequently accessed data temporarily for quick access and Redis is a popular cache backend in Django that allows for fast read and write operations... read more  

Caching in Django with Redis
Link
@faun shared a link, 2 years, 10 months ago
FAUN.dev()

When NumPy is too slow

Numpy-based code can be slow due to the lack of automatic parallelism and optimization. To optimize numpy code, it is important to choose a scalable algorithm, consider SIMD instructions, and utilize libraries like JAX or Numba for efficient execution... read more  

When NumPy is too slow
Link
@faun shared a link, 2 years, 10 months ago
FAUN.dev()

CLI tools hidden in the Python standard library

The Python gzip module can be used as a CLI tool by running "python -m gzip --decompress pypi.db.gz". This feature is particularly useful for Windows users who don't have the gzip utility installed. Other similar tools are available!.. read more  

CLI tools hidden in the Python standard library
Link
@faun shared a link, 2 years, 10 months ago
FAUN.dev()

Using Contextual Bandit models in large action spaces at Instacart

Instacart strives to provide personalized customer experiences by combining multiple considerations in product searches, such as personal relevance, popularity, price, and item availability. They have implemented a contextual bandit (CB) model to train and recommend actions that enhance the shopping.. read more  

Using Contextual Bandit models in large action spaces at Instacart