Rapid Consulting

We are AI-enabled technologists

Every step—from whiteboard to deployment—is handled with rigor, precision, and expertise.

We design and deliver systems that are technically excellent, robust, future-proof and practical to operate.

We translate complex opportunities into elegant, production-grade solutions.

We build with precision, scalability, and a clear understanding of the business context.

car
Built for impact

Confidence through thoughtful engineering, continuous innovation, and uncompromising craftsmanship.

cube
Beyond Code

Strategy, maintainbility & cost-effectiveness. Accurate analysis and balanced decisions.

glasses
Measurable advantage

Our work is defined by outcomes: faster operations, smarter decisions, and capabilities that compound over time.

Application Layer Expert Developers

Transforming Ideas into Intelligent Solutions

Software consultants specializing in ruby, javascript, php and python. 

Empowering our clients with AI/ML integration, custom model development, and intelligent automation for forward-thinking businesses.

hand of god

"We use AI but we are Human."

Real thinking.

Real people.

Crafted, not generated.

Invented, not imitated.

The future needs 
more humanity.

Not less.

AI can replicate patterns.

Humans create meaning.

.

Latest Articles

All Articles

ffmpeg cheatsheet

Reduce a video to 720p:

export inn=<input.file>
ffmpeg -i $inn -vf "scale=-2:720" -c:v libx264 -crf 23 -preset medium -c:a aac -b:a 128k output.mp4

Save the first frame of a video for a thumbnail:

ffmpeg -i $inn -frames:v 1 first-frame.jpg

.

drush cheatsheet

Uninstall, install a theme: 

export theme_name='THEME_NAME'
drush theme:uninstall $theme_name

drush config:set system.theme default $theme_name -y

Run some code with drush:

How I set up the docker image with systemd and sshd

For testing ansible roles, I need a docker container that runs systemd or init - a container in which services can be enabled. I also need this container to be accessible via ssh. This way, I don't have to spin up cloud resources (which are not free) in order to test doing something on a remote.

Vscode cheatsheet

Vscode is a text editor. No extensions should run, nothing should take up my CPU or memory.

code --list-extensions
code --disable-extension DotJoshJohnson.xml

.