Reading view

Ep. 2 Story 03: Why Drupal’s Complexity May Be an Advantage in the AI Era

Ep. 2 Story 03: Why Drupal’s Complexity May Be an Advantage in the AI Era

Y'all made Ep. 2 so much more than Ep. 1 and I appreciate this community so much! Feedback was heard and incase you didn't want to hear the whole podcast... here is the story about Drupal's AI readiness à la carte!

Thank you again

submitted by /u/Aggressive_Trip_4872 to r/drupal
[link] [comments]
  •  

Global Heating Will Hit At Least 1.8C, UN Warns, and There Are 'No Good Outcomes'

An anonymous reader quotes a report from The Guardian: Global heating will reach at least 1.8C under even the most optimistic future, well beyond the Paris agreement goal of 1.5C, according to a UN report that warns every fraction of temperature rise intensifies destructive extreme weather, glacier melt, ecosystem loss, and island and coastal city submersion. The report by the Nairobi-based UN Environment Program confirmed overshooting the 1.5C goal inscribed in the landmark Paris agreement of 2015 was now "unavoidable" and, despite some progress in addressing the human-caused climate crisis driven by burning fossil fuels, likely in the next few years. It said: "There are no good outcomes above 1.5C." Heating of up to 3C above preindustrial levels could lead to glaciers losing more than a quarter of their mass by 2100, raising sea levels by up to 13cm. Global food production could decline by up to 14% by 2050 if there are not effective strategies to adapt. Human health, water supplies, nature, cities, infrastructure and economies could all be severely damaged. Some losses would be irreversible. Many communities may have to relocate or change their livelihoods. The report said the best hope for humanity to limit damage was to adopt an "overshoot, peak and decline" pathway that required immediate and sustained greenhouse gas emissions cuts combined with steps to remove carbon dioxide from the atmosphere. It described the goal of net zero emissions -- increasingly politically contentious in some countries -- as "an essential milestone that cannot be skipped" and stressed carbon dioxide removal through steps such as establishing vast new forests must occur alongside, not as an alternative to, deep cuts in fossil pollution. Crucially, the authors of the report, titled Limiting Overshoot, said the average global temperature could be returned to 1.5C this century only if heating stayed below about 1.8C. They warned nature's capacity to store carbon was uncertain and would shrink the more the planet heats. [...] The report's authors cited earlier work that found limiting heating to about 1.8C required global emissions to be halved by 2035. They said existing national policies were projected to lead to at least 2.3C heating, but it would still be possible to limit stay below 2C if countries delivered on net zero emissions commitments by mid-century.

Read more of this story at Slashdot.

  •  

What do you guys use for updates when managing 30+ WP sites?

I use WP Umbrella right now for plugin and core updates, but I’m still hesitant about just letting everything auto-update.

My main concern is a core or plugin update breaking something and not catching it right away.

For those managing 30+ sites, what are you using that’s been reliable? Do you leave auto-updates on, wait a few days on bigger releases, or have some kind of testing/rollback process?

submitted by /u/Playful_School6693 to r/Wordpress
[link] [comments]
  •  

It took me a few months of late nights to build Cashvelope. Here’s what I learned about self-hosting, privacy, and building a finance app completely alone.

Building Cashvelope was a massive personal challenge. I wanted a true envelope budgeting app that put data control back in the user's hands.

Working on this late at night after my main work hours meant dealing with severe burnout, redesigning local data structures three times, and fighting through backend edge cases solo. Building a app end-to-end alone is a completely different beast than writing code for a client.

To fellow devs who built and released your own side projects:

How do you balance feature scope creep with actually getting the app across the finish line?

submitted by /u/henrynguyen9698 to r/Frontend
[link] [comments]
  •  

My WordPress site was compromised — suspicious MU-plugin and obfuscated JavaScript

My WordPress site was compromised — suspicious MU-plugins and heavily obfuscated JavaScript

I'm investigating a WordPress site that was compromised. My coding/security knowledge is limited, so I used AI to help me analyze the files and understand what was happening.

I found a suspicious MU-plugin called:

focal-extension-evo

The file is currently 0 bytes, but its filesystem timestamps are interesting. It appears to have been created around August 14, 2026, and there is also a serialized reference to it in wp_options.

With the help of AI, I was able to reconstruct part of the heavily obfuscated JavaScript associated with the infection.

The JavaScript makes a POST request to:

https://fashion-chicken.com/x9i32md/w1/

It also contains an eval() mechanism that appears capable of executing the response received from the remote server.

I did not execute the code or contact the remote server.

Threat-intelligence checks also show that fashion-chicken.com is associated with malicious infrastructure/C2 activity.

Plugins currently installed

These are the plugins actually reported by WordPress on this installation:

Active:

  • Classic Editor 1.7.0
  • Elementor 4.2.4
  • Elementor Pro 3.35.0
  • JetEngine 3.8.14.3
  • WPvivid Backup Pro 2.2.30

Inactive:

  • BDThemes Element Pack Lite 8.8.2
  • JetFormBuilder 3.6.5.2
  • WP Lorem Ipsum Generator 0.3
  • Rank Math 1.0.277.2
  • Rank Math Pro 3.0.106
  • WooCommerce 11.0.1
  • WP Cafe 3.0.19
  • WP Cafe Pro 3.0.5
  • WP Mail SMTP 4.9.0

Suspicious MU-plugins found

WordPress is also reporting these as must-use plugins:

  • focal-extension-evo
  • ionic-dashboard-ultra
  • jolt-librarian-vox
  • lumen-logger-io
  • max-exporter-tag
  • page-compiler-jet
  • web-extension-evo

There are also these drop-ins:

  • advanced-cache.php
  • db.php
  • maintenance.php

I'm now working on cleaning the installation and determining how the malicious files were introduced.

The AI assistance has been extremely useful because my knowledge of malware analysis and heavily obfuscated JavaScript is limited. It helped me decode the JavaScript and identify the suspicious external communication without executing the malware.

Is anyone else dealing with something similar? Are you using any of the plugins listed above? Has anyone seen focal-extension-evo, web-extension-evo, or the other MU-plugins mentioned here before?

submitted by /u/zombiemakermx to r/Wordpress
[link] [comments]
  •  

You don't need initial-scale=1.0 in your <head> any more

A feature common to a great very many HTML boilerplates is this line:

html <meta name="viewport" content="width=device-width, initial-scale=1.0">

The initial-scale=1.0 bit was present to fix an ancient issue on iPhones. When rotating the screen into a landscape orientation, the page would keep the same width as when it was in portrait, making everything appear very zoomed in.

This isn't an issue any more. I've tested it across very many devices, and it appears it was fixed in iOS 9, which released back in 2015. In addition to testing, I've consulted a great number of other professionals, and nobody has been able to find evidence of it being needed any longer.

You can safely simplify the meta viewport declaration down to:

html <meta name="viewport" content="width=device-width">

It isn't hurting you to leave it there, but it is vestigial and unnecessary.

Further details: - https://vale.rocks/micros/20260902-1350 - https://quirksmode.org/quirksblog/2026/0902-initial.html

submitted by /u/ValenceTheHuman to r/webdev
[link] [comments]
  •  

I'm selling my 37+ ElePHPant Collection

I'm parting with my ElePHPant collection after 13 years of collecting them. I'm raising money for my startup and also will need open heart surgery in the next 5 years. As the UG leader of PHP Vegas for over 10 years, its been a hell of a run. I still love PHP and my startup is built in it, but I also need funds as I'm quitting my full time to do all this. If we crossed paths before, thank you for all the fish. You can find my collection for sell here: https://www.ebay.com/sch/i.html?_dkr=1&iconV2Request=true&_blrs=recall_filtering&_ssn=pokemastercenter&store_cat=0&_nkw=elephpant&store_name=pokemastercenter&_oac=1

submitted by /u/ogprogrammer to r/PHP
[link] [comments]
  •  

CRM with capabilities for both development and program data

Hello,

When I do any search for non-profit CRMs, I reliably only see feedback about how it works for development staff. I never see anyone review how they handle tracking program participant data of any kind (ie, tracking someone's progress through program phases, intaking program applications, etc.). You'd think more people would report on how their CRM does at, say, reporting how many people stayed in stable housing or the % growth in student test results or whatever other relevant topic a non-profit might have. I wonder if I'm biasing my search in some way that programs-focused reviews never seem to come up? I am curious if anyone has any experience using one tool for dual purposes:

1) Donor/Volunteer management

2) Programmatic documentation and reporting

If it helps to tailor the response, we have ~20k records on the development side and annually have about ~1k records on the program side.

submitted by /u/No_Giraffe_1551
[link] [comments]
  •  

Built an offline-first mobile CRM for independent creators and studios. Need honest feedback on the idea.

I just published the landing page for a mobile CRM called Stuvo. It’s designed for independent, solo operators and micro-businesses who still manage bookings, clients, and batches using paper notebooks or messy WhatsApp threads.

The app is explicitly built for these categories:

Private tutors and coaching centers

Wedding photographers and video studios

Dance academies and dance instructors

Music studios and music teachers

Yoga studios and yoga instructors

Makeup artists

Art studios and art teachers

Fitness studios, gyms, and personal trainers

Most business software defaults to heavy cloud sync, but I went with a 100% offline-first approach using React Native and a local on-device SQLite database. The goal is to make it open instantly with zero network lag on spotty mobile data, while keeping their client list entirely private on their phone.

I want to know if the core idea lands properly. Does a purely offline utility focus feel like a realistic trade-off over a standard cloud web app for these types of local businesses?

Web- stuvo.in

Any feedback on the concept or the positioning would be highly appreciated.

submitted by /u/Abhra_smp
[link] [comments]
  •  

UK-based alternative to Apollo/Instantly with leads, email, calling + CRM?

I’m based in the UK and looking for a modern sales/outbound tool or CRM that can help me:

  • Find local leads
  • Enrich contacts
  • Send cold emails/sequences
  • Call from a UK number
  • Log calls/emails/notes properly in a CRM

I’ve looked at Apollo, but it seems you can only call from a US/Canada number unless you pay around £150/month for the Advanced Dialer add-on, which feels steep when I’m UK-based and need a UK caller ID.

Are there any good alternatives that combine lead finding, email outreach, UK calling, and CRM logging in one place? Or is the better setup something like Apollo/Instantly for data/email plus Close, Aircall, Ringover, etc. for UK calling?

Would appreciate any recommendations from UK-based sales teams or founders.

submitted by /u/PablohFelix
[link] [comments]
  •  

Missing a service that can monitor my customers and their activity

Heyyy

Does anyone have a recommendation for a tool that monitors customer activity across channels (product usage, emails, support tickets, etc.) and flags accounts that are going quiet?

Want to get ahead of churn instead of reacting after the fact. Ideally looking for something with automated alerts or playbooks.

Would love to hear what's working for you!


[link] [comments]
  •  

Workaround for UTM Tagging in Pipedrive? (Forms don't capture UTMs)

Hey everyone,

I’m currently using Pipedrive Forms (via LeadBooster) to capture leads directly from my website. The issue I’m running into is that Pipedrive forms don't natively capture UTM parameters (source, medium, campaign) from the URL, which makes tracking marketing ROI super difficult.

I know this is a common Pipedrive limitation. What are you using as a workaround to get this data into Pipedrive?

So far, I've seen a few options mentioned:

  • Using a third-party form tool (like Jotform or Gravity Forms) that feeds into Pipedrive via Zapier.
  • Using Attributer to capture the data and map it to hidden fields.
  • Custom JavaScript on the site to parse URL parameters and push them to Pipedrive fields via API.

What is the most stable/cost-effective method you've found?

Thanks!

submitted by /u/King_george270
[link] [comments]
  •  

Running a B2B AI Automation Agency

I'm surprised by the number of people who are still in need of a custom CRM. I'm pretty picky with customers and always question requirements before I go ahead with them but most have such a niched out requirement that its hard to say no. Now, with AI especially I'm noticing alot of them want automations built in and integrated with various other tools which the current products aren't great at.

ANyone noticing the same?

submitted by /u/Savings-Amphibian723
[link] [comments]
  •  

I built a Simple Sales Recorder Lite CRM for Small Businesses

I recently launched an app called Simple Sales Recorder – Lite CRM on ios devices.

The idea was simple:
A lightweight CRM for small business owners who are tired of bloated software, subscriptions, and unnecessary complexity. Most CRMs today feel built for sales teams with 20 employees, endless pipelines, automations, AI features, onboarding calls, and monthly fees.

I wanted something simpler.

So I built a Lite CRM that helps:
Track sales
Save customer data
Manage products
Record suppliers
Generate invoices
Track financial performance
Export/import data
Work offline
Store everything locally on-device
No subscription.
No complicated setup.
No CRM training needed.

I thought this would be useful for:
Small shop owners
Freelancers
Dropshippers
Retailers
Solo entrepreneurs

But after releasing it, I honestly feel like there’s very little demand for “simple” business software anymore.

Most people either:
Use spreadsheets/WhatsApp forever or jump directly into big all-in-one SaaS tools

Now I’m wondering:
Is the market too small?Is “simple CRM” not a painful enough problem? Or am I positioning it incorrectly?

Would genuinely appreciate feedback from small business owners, founders, or anyone who has tried building SaaS/tools for SMEs. Also would love to know if you want any features added to the app, I do regular updates.
Search for Simple Sales Recorder on ios Appstore.

submitted by /u/TraditionPopular2294
[link] [comments]
  •  

How does AI lead scoring actually work compared to manual scoring methods?

This has become a popular topic of conversation amongst our team because we’ve noticed a pattern. The teams that use AI to score leads in their CRMs seem to be closing more deals than the teams that score leads manually or score based on a basic points system.

The main difference here is that AI scores leads based on data, while manual lead scoring is done using a more static scoring method.

An example of a static method is that one might score specific job titles (like VPs) by adding 10 points and email opens by adding 5 points. This, paired with human intuition, forms the basis of manual scoring.

When it comes to predictive lead scoring using AI, it scores hundreds of thousands of deals and leads and compares the winning deals and engagement with the losing deals and related engagement.

So, the main difference is that AI lead scoring requires a larger dataset of previously scored leads and closed deals to be effective. While manual lead scoring requires little to no data and is typically based on a guess of the points that scoring leads will provide.

If a company is new to scoring leads and has plenty of closing/closed deals for the AI to parse, it can learn to score and predict winning deals. If the company has fewer than 20 closed deals, the AI will struggle to score leads. As a result, you’ll end up with deals that either don’t have any score or have an inaccurate score assigned.

This is what we know about making it work:

  • AI uses clean historical data: The “garbage in, garbage out” applies here.
  • AI picks up your patterns, not industry benchmarks.
  • AI improves as you close more deals.
  • AI lacks context, and human judgment covers that.

AI scoring can establish and back biases in your data. If your sales team dismisses leads from a particular source, the AI will learn to view them as low priority. This is true even if they are high-value leads.

AI lead scoring should be used to prioritize leads, but reps should still justify the decision and be able to prioritize based on that.
What has been your lead scoring experience? Are you doing it manually, or is your lead scoring process AI-powered?

submitted by /u/nutshell_crm
[link] [comments]
  •  
❌