Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Search - "data driven design"
-
Not one feature.
All analytics systems in general.
Whether it's implementing some tracking script, or building a custom backend for it.
So called "growth hackers" will hate me for this, but I find the results from analytics tools absolutely useless.
I don't subscribe to this whole "data driven" way of doing things, because when you dig down, the data is almost always wrong.
We removed a table view in favor of a tile overview because the majority seemed to use it. Small detail: The tiles were default (bias!), and the table didn't render well on mobile, but when speaking to users they told us they actually liked the table better — we just had to fix it.
Nokia almost went under because of this. Their analytics tools showed them that people loved solid dependable feature phones and hated the slow as fuck smartphones with bad touchscreens — the reality was that people hated details about smartphones, but loved the concept.
Analytics are biased.
They tell dangerous lies.
Did you really have zero Android/Firefox users, or do those users use blocking extensions?
Did people really like page B, or was A's design better except for the incessant crashing?
If a feature increased signups, did you also look at churn? Did you just create a bait marketing campaign with a sudden peak which scares away loyal customers?
The opinions and feelings of users are not objective and easily classifiable, they're fuzzy and detailed with lots of asterisks.
Invite 10 random people to use your product in exchange for a gift coupon, and film them interacting & commenting on usability.
I promise you, those ten people will provide better data than your JS snippet can drag out of a million users.
This talk is pretty great, go watch it:
https://go.ted.com/CyNo6 -
Want to make someone's life a misery? Here's how.
Don't base your tech stack on any prior knowledge or what's relevant to the problem.
Instead design it around all the latest trends and badges you want to put on your resume because they're frequent key words on job postings.
Once your data goes in, you'll never get it out again. At best you'll be teased with little crumbs of data but never the whole.
I know, here's a genius idea, instead of putting data into a normal data base then using a cache, lets put it all into the cache and by the way it's a volatile cache.
Here's an idea. For something as simple as a single log lets make it use a queue that goes into a queue that goes into another queue that goes into another queue all of which are black boxes. No rhyme of reason, queues are all the rage.
Have you tried: Lets use a new fangled tangle, trust me it's safe, INSERT BIG NAME HERE uses it.
Finally it all gets flushed down into this subterranean cunt of a sewerage system and good luck getting it all out again. It's like hell except it's all shitty instead of all fiery.
All I want is to export one table, a simple log table with a few GB to CSV or heck whatever generic format it supports, that's it.
So I run the export table to file command and off it goes only less than a minute later for timeout commands to start piling up until it aborts. WTF. So then I set the most obvious timeout setting in the client, no change, then another timeout setting on the client, no change, then i try to put it in the client configuration file, no change, then I set the timeout on the export query, no change, then finally I bump the timeouts in the server config, no change, then I find someone has downloaded it from both tucows and apt, but they're using the tucows version so its real config is in /dev/database.xml (don't even ask). I increase that from seconds to a minute, it's still timing out after a minute.
In the end I have to make my own and this involves working out how to parse non-standard binary formatted data structures. It's the umpteenth time I have had to do this.
These aren't some no name solutions and it really terrifies me. All this is doing is taking some access logs, store them in one place then index by timestamp. These things are all meant to be blazing fast but grep is often faster. How the hell is such a trivial thing turned into a series of one nightmare after another? Things that should take a few minutes take days of screwing around. I don't have access logs any more because I can't access them anymore.
The terror of this isn't that it's so awful, it's that all the little kiddies doing all this jazz for the first time and using all these shit wipe buzzword driven approaches have no fucking clue it's not meant to be this difficult. I'm replacing entire tens of thousands to million line enterprise systems with a few hundred lines of code that's faster, more reliable and better in virtually every measurable way time and time again.
This is constant. It's not one offender, it's not one project, it's not one company, it's not one developer, it's the industry standard. It's all over open source software and all over dev shops. Everything is exponentially becoming more bloated and difficult than it needs to be. I'm seeing people pull up a hundred cloud instances for things that'll be happy at home with a few minutes to a week's optimisation efforts. Queries that are N*N and only take a few minutes to turn to LOG(N) but instead people renting out a fucking off huge ass SQL cluster instead that not only costs gobs of money but takes a ton of time maintaining and configuring which isn't going to be done right either.
I think most people are bullshitting when they say they have impostor syndrome but when the trend in technology is to make every fucking little trivial thing a thousand times more complex than it has to be I can see how they'd feel that way. There's so bloody much you need to do that you don't need to do these days that you either can't get anything done right or the smallest thing takes an age.
I have no idea why some people put up with some of these appliances. If you bought a dish washer that made washing dishes even harder than it was before you'd return it to the store.
Every time I see the terms enterprise, fast, big data, scalable, cloud or anything of the like I bang my head on the table. One of these days I'm going to lose my fucking tits.10 -
There are days I like to pull my hair out and create a dynamic 4D map that holds a list of records. 🤯
Yes there's a valid reason to build this map, generally I'm against this kind of depth 2 or 3 is usually where I draw the line, but I need something searchable against multiple indexes that doesn't entail querying the database over and over again as it will be used against large dynamic datasets, and the only thing I could come up with was a tree to filter down on as required.6 -
I wrote my first proper promise today
I'm building a State-driven, ajax fed Order/Invoice creation UI which Sales Reps use to place purchases for customers over the phone. The backend is a mutated PHP OSCommerce catalog which I've been making strides in refactoring towards OOP/eliminating spahgetti code and the need for a massive bootstrapper file which includes a ton of nonsense (I started by isolating the session and several crucial classes dealing with currency, language and the cart)
I'm using raw JS and jquery with copious reorganization.
I like state driven design, so I write all my data objects as classes using a base class with a simple attribute setter, and then extend the class and define it's attributes as an array which is passed to the parent setter in the construct.
I have also populateFromJson method in the parent class which allows me to match the attribute names to database fields in the backend which returns via ajax.
I achieve the state tracking by placing these objects into an array which underscore.js Observe watches, and that triggers methods to update the DOM or other objects.
Sure, I could do this in react but
1) It's in an admin area where the sales reps using it have to use edge/chrome/Firefox
2) I'm still climbing the react learning curve, so I can rapid prototype in jquery faster instead of getting hung up on something I don't understand
3) said admin area already uses jquery anyway
4) I like a challenge
Implementing promises is quickly turning messy jquery ajax calls into neat organized promise based operations that fit into my state tracking paradigm, so all jquery is responsible for is user interaction events.
The big flaw I want to address is that I'm still making html elements as JS strings to generate inputs/fields into the pseudo-forms.
Can anyone point me in the direction of a library or practice that allows me to generate Dom elements in a template-style manner.4 -
So the project I have been working on for the past 5 months was finally released yesterday with only very minor problems, this stemmed from both programming side, and users entering data incorrectly.
It has been a rather hectic 5 months. I've had to deal with crap like:
- clients not knowing their own products
- a project manager that didn't document anything (or at least everything into a Google Slides document)
- me writing both requirements AND specifications (I'm a dev, not a PM)
- developers not following said specifications (then having to rewrite all their work)
But the worst thing I think would be the lack of vision from everyone. Everyone sees it as a "project" that should be get it over and done with rather a product that has great potential.
So with the project winding down, and only very few things left to fix/implement. Over these 5 months I learned a lot about domain driven design, Laravel's core, AWS, and just how terrible people are at their jobs. I imagine if I worked with people who gave a damn, or who actually had skills, I probably wouldn't have had such a difficult project.
Right now I'm less stressed but now feel rather exhausted from it all. What kind of things do you to help with the exhaustion and/or slow down of pace?1 -
Drive Engagement and Conversions with Expert New York Email Marketing
In today’s competitive digital landscape, email remains one of the most effective tools for nurturing leads, engaging customers, and driving consistent revenue. At Business Awareness, we specialize in New York email marketing services designed to help businesses communicate clearly, convert strategically, and grow efficiently.
Headquartered at 40 Wall St, New York, NY 10005, we work with companies of all sizes to create impactful email marketing campaigns tailored to the fast-paced, results-driven New York market.
Why Choose Business Awareness?
1. Local Expertise, National Reach
We understand what New York audiences respond to. With our finger on the pulse of the city’s evolving market, we design targeted campaigns that reflect local trends while delivering results that scale.
2. Full-Service Email Campaign Management
From strategy and design to segmentation, automation, and performance tracking—we manage the entire email marketing lifecycle. Our goal is simple: to help you send the right message to the right people at the right time.
3. Conversion-Focused Content
Effective email marketing goes beyond good design. We craft compelling subject lines, persuasive copy, and strong calls to action that encourage clicks, conversions, and customer loyalty.
4. Advanced Segmentation and Personalization
We use data-driven segmentation and behavior-based triggers to personalize every campaign. This means higher open rates, better engagement, and more meaningful interactions with your audience.
5. Transparent Reporting and ROI Tracking
You’ll never be left guessing about performance. We provide detailed reports that highlight key metrics like open rates, click-through rates, conversions, and ROI—so you can make informed decisions.
Contact Us
If you’re looking for professional New York email marketing services that deliver real business results, Business Awareness is your trusted partner.
Visit us: 40 Wall St, New York, NY 10005, United States
Call us: +1 888-352-2927
Let’s build smart email campaigns that keep your customers engaged and your business growing. Get in touch today to schedule a consultation.2 -
Boost Your Brand with Booster Marketing Hub: Performance & Inbound Marketing Experts
In today’s digital age, digital marketing is the backbone of any successful business strategy. Whether you're a startup or an established company, leveraging the right marketing techniques is crucial to stand out from the competition and drive results. At Booster Marketing Hub, we specialize in providing top-notch digital marketing services, with a focus on performance marketing and inbound marketing. Based in Cluj-Napoca, Romania, our team is ready to help you take your online presence to the next level.
What is Digital Marketing and Why Does Your Business Need It?
Digital marketing refers to the use of digital channels—such as search engines, social media, email, and websites—to promote products or services. In today’s world, every business needs a strong online presence to thrive. Traditional marketing methods are no longer enough to capture the attention of modern consumers, who spend most of their time online.
With digital marketing, you can engage with your target audience in a more personalized and cost-effective manner, while also measuring the success of your efforts in real-time. The beauty of digital marketing lies in its ability to reach a global audience while providing tools to track, optimize, and refine campaigns for maximum impact.
Performance Marketing: Results-Driven Strategies for Maximum ROI
One of the key pillars of Booster Marketing Hub is our focus on performance marketing. Unlike traditional marketing, which may rely on broad exposure, performance marketing is all about driving measurable results. This data-driven approach ensures that every marketing dollar you spend delivers value and contributes to your business goals.
What is Performance Marketing?
Performance marketing involves paying for marketing efforts based on the results they deliver. These results can include actions such as clicks, leads, or sales. Whether you're running Google Ads, Facebook Ads, or other pay-per-click campaigns, performance marketing ensures that you are only paying for what works.
Here’s how Booster Marketing Hub helps businesses achieve better performance through performance marketing:
Targeted Advertising: We use advanced targeting techniques to ensure that your ads reach the right people at the right time.
Cost-Effective Campaigns: With performance marketing, your budget is optimized based on real-time results, so you can maximize your return on investment (ROI).
Continuous Optimization: We constantly monitor and tweak your campaigns to ensure they perform at their best, adjusting ad creatives, bidding strategies, and audience targeting as needed.
Data-Driven Decisions: Every step of our performance marketing strategy is guided by data, so we can continuously refine campaigns to ensure optimal results.
Inbound Marketing: Attract, Engage, and Delight Your Audience
Another core area where Booster Marketing Hub excels is in inbound marketing. This approach focuses on attracting potential customers by providing valuable content, building trust, and nurturing relationships. Unlike traditional outbound marketing methods that interrupt your audience, inbound marketing focuses on delivering content that draws customers to you.
What is Inbound Marketing?
Inbound marketing is a strategy that focuses on attracting customers through relevant and helpful content. Instead of pushing your message to a wide audience, inbound marketing helps pull your target audience in by providing the information, products, or services they are looking for. This strategy is built on creating valuable content such as blog posts, social media updates, videos, eBooks, and more.
At Booster Marketing Hub, we design and execute inbound marketing strategies that speak directly to the needs and pain points of your potential customers. Here’s how we do it:
Content Creation: Our team creates high-quality, relevant content that addresses your audience’s needs, establishes your authority, and builds trust.
SEO Optimization: We ensure your content ranks high on search engines through proven SEO strategies, making it easier for your audience to find your content.
Lead Nurturing: With effective email marketing, automation, and personalized follow-ups, we nurture leads through their buyer’s journey until they’re ready to convert.
Building Relationships: Through consistent and valuable interactions, we help you build long-term relationships with your customers, turning them into loyal advocates for your brand.
Why Choose Booster Marketing Hub for Your Digital Marketing Needs?1 -
ToyStack Virtual OS - A secure, cloud-based virtual OS that works on any device—no installation required, fully customizable, and always accessible.
ToyStack Virtual OS redefines virtual desktop computing by offering a secure, scalable, and high-performance cloud-based operating system accessible directly through any web browser. Eliminating the need for traditional software installations, ToyStack’s agentless approach simplifies deployment and reduces hardware dependency—cutting costs while enabling seamless access to workspaces from anywhere in the world.
Designed with enterprise-grade security at its core, ToyStack Virtual OS integrates multi-factor authentication (MFA), end-to-end encryption, and AI-powered threat detection to safeguard sensitive data. It adheres to globally recognized compliance standards, including ISO 27001, 27017, 27018, and SOC 2 Type II, ensuring protection against evolving cyber threats and regulatory requirements.
Flexibility is at the heart of ToyStack’s design. It supports Windows, Linux, and custom operating systems, all managed through a centralized Control Tower. This intuitive management console enables IT administrators to enforce group policies, streamline user provisioning, and monitor performance—all in real-time. Whether managing hybrid teams, remote workforces, or distributed operations, ToyStack adapts effortlessly to dynamic business needs.
Performance is never compromised, thanks to AI-driven resource optimization that intelligently allocates computing power based on workload demands. This ensures zero-lag experiences and seamless scaling during peak usage, empowering teams to remain productive without interruptions.
Beyond performance, ToyStack Virtual OS drastically reduces IT overhead and operational complexity. Built-in automation handles provisioning, updates, and security enforcement, minimizing administrative burdens. With its pay-as-you-go pricing, businesses can avoid costly licensing fees and infrastructure investments, making it a cost-effective alternative to traditional Virtual Desktop Infrastructure (VDI).
Whether you’re scaling operations globally, enabling BYOD policies, or enhancing remote work security, ToyStack Virtual OS delivers an unmatched combination of simplicity, security, and performance—future-proofing your organization for the modern digital workspace.4 -
Best Digital Marketing Agency Ireland & High-Converting Landing Pages – Drive Your Business Growth with TheDigihub
In today’s competitive digital landscape, having a strong online presence is crucial to the success of your business. Whether you’re a small start-up or an established company, the right digital marketing strategy can make all the difference. At TheDigihub, we are proud to be recognized as one of the Best Digital Marketing Agencies in Ireland. Our goal is to help businesses across the country grow and thrive online by leveraging tailored marketing strategies, powerful High-Converting Landing Pages, and cutting-edge techniques.
Located in Ightermurragh, Ladysbridge, Co. Cork, TheDigihub is your trusted partner in digital marketing. We understand the unique challenges businesses face, and we offer comprehensive solutions that help you reach your target audience, generate leads, and convert visitors into loyal customers.
Why Choose TheDigihub – Best Digital Marketing Agency in Ireland?
Choosing the right digital marketing agency is vital to achieving your business goals. At TheDigihub, we are committed to delivering measurable results that help you grow your brand, increase online visibility, and drive conversions.
Here’s why we are considered one of the Best Digital Marketing Agencies in Ireland:
Proven Track Record: With years of experience working with businesses of all sizes across various industries, we have a proven track record of helping our clients succeed online. Our team is dedicated to developing customized digital marketing strategies that align with your business objectives.
Comprehensive Digital Marketing Services: We offer a full range of digital marketing services, including SEO (Search Engine Optimization), social media marketing, PPC (Pay-Per-Click) advertising, email marketing, content creation, and much more. We tailor each service to meet the specific needs of your business.
Expert Team: Our team of experienced digital marketers, designers, and developers work together to create high-performing campaigns that drive results. We stay ahead of industry trends and continuously optimize our strategies to ensure maximum performance.
Data-Driven Approach: At TheDigihub, we believe in making informed decisions based on data. We use advanced analytics tools to track and measure the success of your campaigns, making adjustments as needed to improve performance and achieve better results.
Local Knowledge & Global Reach: While we are based in Cork, our digital marketing strategies have a global reach. We understand the local market, and we help you connect with your target audience whether you’re looking to build a local following or expand your reach internationally.
By partnering with TheDigihub, you gain access to the expertise and resources of one of the best digital marketing teams in Ireland, focused on delivering solutions that drive results for your business.
High-Converting Landing Pages – The Key to Maximizing Conversions
When it comes to digital marketing, generating traffic to your website is only half the battle. The other half is ensuring that the visitors who land on your site actually take action—whether it’s making a purchase, signing up for a newsletter, or filling out a contact form. This is where High-Converting Landing Pages come into play.
At TheDigihub, we specialize in designing and developing High-Converting Landing Pages that help businesses achieve their marketing objectives. Here’s why Landing Pages are critical to your online success:
Focused User Experience: A well-designed landing page focuses the user’s attention on a single call-to-action (CTA). Whether you want your visitors to buy a product, subscribe to your newsletter, or schedule a consultation, a high-converting landing page eliminates distractions and guides users toward your desired goal.
Improved Conversion Rates: High-Converting Landing Pages are specifically designed to optimize conversions. With elements like clear and compelling copy, attention-grabbing headlines, strong CTAs, and trust signals (such as customer testimonials or security badges), we craft landing pages that turn visitors into customers.
A/B Testing & Optimization: We continuously test and optimize landing pages to improve performance. By analyzing user behavior and adjusting the design, content, and CTAs, we ensure that your landing pages are always converting at their best.
SEO-Optimized: A landing page that ranks well in search engines is even more valuable. We ensure that your landing pages are SEO-friendly, making it easier for potential customers to find your offerings online and increasing the chances of conversion.1
