All Articles
[FIXED] Drupal 9: No route found for the specified format hal_json. Supported formats: html.
In my case, it was because I installed the deprecated core plugin, instead of the separate newer plugin.
The fix for me was to uninstall the deprecated HAL plugin, and then run:
AI Company Acquires Rights to Reddit User Content in $60 Million Annual Deal
Title: Reddit User Content Acquired by AI Company in Multi-Million Dollar Deal
In a landmark deal that has caused ripples in the tech world, a leading AI company has acquired access to user-generated content from Reddit, the popular online discussion platform. The deal, reported to be worth $60 million per year, highlights the growing importance of user-generated data in training artificial intelligence algorithms.
Resizing and scaling images in python. And a filename-insensitive data loader.
Recently wrote this utility, to resize and scale a python image at the center. This way, I don't have to worry about how my images are being fed into an AI pipeline, if they all get scaled and cropped the same.
Additionally, while previously I used bash to rename files in a folder to sequential names such as 1.jpg , the current implementation ignores filenames, which saves me time when massaging the data.
A recommendation for using Slack
In this post I'm going to recommend Slack, although I'm conflicted about recommending it. It is a communications platform, and a very good one. As such, it would allow the manager to ping me (or anyone) more often and more consistently. This would result in me having less available time, because I will increase my availability to the manager. With that said, I am an expert and a professional, so in the spirit of Correctness and Doing a Good Job (TM) I am inclined to provide this recommendation.
Meet Aitana, a 25-year-old AI influencer earning up to $11k monthly from Instagram as a generative model.
Title: Aitana: The 25-Year-Old AI Model Earning up to $11,000 a Month on Instagram
"Automated Reverse Auctions on Amazon: A Clever Price Discovery Method for Expensive Items"
Title: The Rise of Reverse Auctions: A Smart Strategy for Amazon Vendors
Google DeepMind's AI: Solving geometry problems with Olympian-like skill
Title: Google DeepMind's AI System Solves Geometry Problems like a Math Olympian
Introduction:
In the world of artificial intelligence (AI), Google DeepMind has once again made headlines with its remarkable achievement in solving complex geometry problems. The tech giant's AI system has demonstrated a level of mathematical prowess that rivals even the brightest minds of the prestigious Math Olympiad. This groundbreaking development opens up new possibilities for AI-assisted problem-solving in mathematics, paving the way for improved education and innovation in this field.
/var/lib/mongodb/WiredTiger.turtle: handle-open: open: Permission denied"}}
The solution:
sudo chown -R mongodb:mongodb /var/lib/mongodb/*
[FIXED] upstream sent too big header while reading response header from upstream
The solution for nginx:
server {
...
proxy_buffer_size 128k;
proxy_buffers 4 256k;
}
Demystifying Semantic Versioning (SemVer): A Guide to Version Numbering
In the ever-evolving landscape of software development, maintaining compatibility and communicating changes effectively are paramount. One solution to this challenge is Semantic Versioning, commonly known as SemVer. This system, introduced by Tom Preston-Werner in 2010, has become a standard practice for version numbering in the software development community.
[FIXED] Stable diffusion connection timeout
If you're having problems with a local copy of stable diffusion experiencing a connection timeout.
I've solved it by allowing websockets in my nginx proxy, like so:
Mongodb, mongoid on ruby on rails: Could not load database configuration. No such file - ["config/database.yml"]
If you're looking to have a rails app without active record (an app that doesn't use SQL), you may be surprized to find out that excluding "active_record/railtie" still does not remove active_record from the stack. So how do you remove active_record? This question is relevant when you convert or create a new rails app, that uses mongoid (mongodb) for its storage.
Beyond Code: Wasya Co's Journey to Redefining Development Excellence
A successful software development consultancy offers a diverse range of products tailored to meet the dynamic needs of modern businesses.
Wasya Co: Elevating Software Development Excellence
Wasya Co is a leading software development consultancy with a commitment to excellence, and their impact extends beyond the realm of code and algorithms. What sets Wasya Co apart is not just their technical prowess but also their unwavering dedication to ethical practices and client satisfaction.
How to turn off Warning and deprecation errors in Drupal
I had some difficulty with this, because my Drupal installs are in-between php versions. I'm running PHP 8.1, but a lot of the modules that I use were written for PHP 7, and haven't been ported.
Anyway, adding the following line to your sites/default/settings.php in production has worked for me:
$config['system.logging']['error_level'] = 'none';





