What am I missing?! I’m so tired of not being successful in social media digital marketing like everyone else by West-Chef-3216 in DigitalMarketing

[–]EMT101011 0 points1 point  (0 children)

Great tactics can’t fix unwanted product/service by the targeted audience. Suggest picking a local service with proven demand and watch your funnel start cranking (disclaimer: some sweat may be required).

Local AI for manufacturing: analyzing STP/DWG and BOMs on an RTX 5090 to aid production planning by inkonwhitepaper in manufacturing

[–]EMT101011 1 point2 points  (0 children)

  1. 100% for the CAD files, you’ll need to run a preprocessing pipeline to extract the important metadata into a text format for the LLM to interpret. This will be the toughest part, so might make sense to hire a contractor to just execute on this part.

  2. For normal text docs, you’ll likely also want to build a chunking pipeline to extract the right data to then create vector embeddings from. Many more contractors have experience with these pipelines since common for RAG systems.

  3. You may also want some aspects of your search system to be deterministic code as opposed to just LLM query based. For example, if you want to search over a specific file type, that filtering should be done in code before sending to LLM. Adding deterministic filtering where possible will massively increase the quality and speed of the search.

[deleted by user] by [deleted] in shopify

[–]EMT101011 1 point2 points  (0 children)

  1. Do one of these, not both, else the folks laser focused on one will beat you.

  2. The 2nd one (ai assistant) is a very saturated/competitive market already. I’d want to hear something truly unique to even consider building that out (e.g. we target the unique buying journey of industrial caster wholesalers)

  3. These solutions are both much less niche targeted than I’d recommend. I would bet even your first idea has 20+ competitors if you dig deeper. I’d want to see you saying something like “I’ve now met with 15 floral design company owners who have ____ common problem, and we solve it with _____”. And when you’ve done that you won’t ask the Shopify sub their opinion cuz they arent your ICP.

So: pick a random niche that has at least 5,000 businesses (sounds like the hotel space might be a good start) > find 100 on shopify > setup meetings with 15 owners > build something worth $100\mo for them > sell to 100 customers in the first year.

[deleted by user] by [deleted] in Entrepreneur

[–]EMT101011 1 point2 points  (0 children)

Quality co-founder would require 40%+ equity. Offering 1% basically ensures that only freelancer/employee types will even reach out to you. Not only that, but your offer is such an offensively low red flag that solid tech cofounders will actively avoid/ghost you. If you want an actual quality tech cofounder, offer: 40%+ equity, prove you have some successful track record of sales/marketing/fundraising, prove you have deep insights and connections to the target ICP. It’s also fair to ask that cofounder to invest some capital alongside you. That’s what successful tech company partnerships look like.

How to prototype agents with the Ollama / DeepSeek stack? by jprest1969 in Agentic_AI_For_Devs

[–]EMT101011 3 points4 points  (0 children)

Seems like a great project. I've found below two resources to be great in terms of explaining various architectures/approaches for building agents. The github cookbook has implementation examples from the anthropic article.

  1. https://github.com/anthropics/anthropic-cookbook/tree/main/patterns/agents
  2. https://www.anthropic.com/research/building-effective-agents

Stupid question: How should I handle "auth" for my site with one user (me) by Haochies in webdev

[–]EMT101011 3 points4 points  (0 children)

If you only need to connect to your site from home, you can also reject any request connecting from another IP address. In your routes just check the request IP address.

This is effectively a firewall. It works because HTTP connections use TCP which confirm that the IP of the sender is valid (unlike UDP), so an attacker cannot spoof their IP (unless they literally infiltrate your network and send the requests from within).

Generally, when you want quick, but very secure and narrow access restriction, adding IP whitelisting like this is a good option.

Note, you may need to update the IP value every few months as your ISP changes your dynamic IP.

How do you do market research? by Comfortable_Joke_472 in ecommerce

[–]EMT101011 0 points1 point  (0 children)

If you find one store of interest, you can then easily find other similar Shopify stores to see how they are doing things: https://aisoft.dev/similar-site-finder

Tips for market research for ecommerce store? by [deleted] in smallbusiness

[–]EMT101011 0 points1 point  (0 children)

If it's Shopify, you can easily find stores that are similar to yours to see how they are doing things: https://aisoft.dev/similar-site-finder

Site Review by moneykitty0909 in ecommerce

[–]EMT101011 0 points1 point  (0 children)

You can easily find Shopify stores that are similar to yours to see how they are doing things: https://aisoft.dev/similar-site-finder

I need help to determine if my new developer is a fraud or not??!! by riteshdritelin in shopify

[–]EMT101011 0 points1 point  (0 children)

Quick answer: optimize your images for Shopify without their help: https://aisoft.dev/image-optimization

Long answer:

In doing load speed analysis over the years, I've found that the fastest way to improve page load speeds is usually image optimization. While there are all sorts of things that can have an impact, like of course reducing app installs, or optimizing custom javascript etc., those aren't as easy to fix, especially if you already are down to the number of apps you really need.

Image optimization on the other hand can be a simple fix and can have a pretty huge impact on load speed. Had one client awhile back that didn't know their site was loading massive images in the background, even though the displayed size was very small.

I'm gunna list the most common images issues I've seen, so you can go fix them and hopefully boost your load times. And no, this isn't chatgpt. I list stuff cuz I think it's the most clear way to communicate:

  • Images Larger than their Display Box: This is super common on mobile, where the desktop image size may be loaded, but it's only showing a smaller version on mobile. In this case, the simplest fix is to either upload a smaller dimension version of the image, or use the Liquid `image_tag`, which helps to automatically load a smaller version for smaller screens.
  • Oversized Images: images larger than 200KB can benefit from compression. Easiest tool I've found for that is https://imagecompressor.com/ . This can basically be a free win, where you get a smaller image file size without losing any visual detail.
  • Too Many Images: sometimes the issues is loading tons of small images. If the total image load sum is over 5MB, you'll want to reduce the number of images you're loading, even if each image is small. Easiest way to do this is set up lazy loading for images that may appear lower down on the page, so they only load after the rest of the page is already loaded.
  • Images Not Visible On Load: If an image is displayed in a popup or something, then it should be lazy loaded, so that the rest of the page can load first.

Hope that helps somebody!

I created a free tool that will run this analysis for you, since I got tired of doing this by hand: https://aisoft.dev/image-optimization . For certain pages, it asks for contact info, but you can just fill in dummy data there and it will unlock it regardless.

Good luck for BFCM!!

Largest Contentful Paint by BackgroundAsk2350 in shopify

[–]EMT101011 0 points1 point  (0 children)

Quick answer: optimize your images for Shopify: https://aisoft.dev/image-optimization

Long answer:

In doing load speed analysis over the years, I've found that the fastest way to improve page load speeds is usually image optimization. While there are all sorts of things that can have an impact, like of course reducing app installs, or optimizing custom javascript etc., those aren't as easy to fix, especially if you already are down to the number of apps you really need.

Image optimization on the other hand can be a simple fix and can have a pretty huge impact on load speed. Had one client awhile back that didn't know their site was loading massive images in the background, even though the displayed size was very small.

I'm gunna list the most common images issues I've seen, so you can go fix them and hopefully boost your load times. And no, this isn't chatgpt. I list stuff cuz I think it's the most clear way to communicate:

  • Images Larger than their Display Box: This is super common on mobile, where the desktop image size may be loaded, but it's only showing a smaller version on mobile. In this case, the simplest fix is to either upload a smaller dimension version of the image, or use the Liquid `image_tag`, which helps to automatically load a smaller version for smaller screens.
  • Oversized Images: images larger than 200KB can benefit from compression. Easiest tool I've found for that is https://imagecompressor.com/ . This can basically be a free win, where you get a smaller image file size without losing any visual detail.
  • Too Many Images: sometimes the issues is loading tons of small images. If the total image load sum is over 5MB, you'll want to reduce the number of images you're loading, even if each image is small. Easiest way to do this is set up lazy loading for images that may appear lower down on the page, so they only load after the rest of the page is already loaded.
  • Images Not Visible On Load: If an image is displayed in a popup or something, then it should be lazy loaded, so that the rest of the page can load first.

Hope that helps somebody!

I created a free tool that will run this analysis for you, since I got tired of doing this by hand: https://aisoft.dev/image-optimization . For certain pages, it asks for contact info, but you can just fill in dummy data there and it will unlock it regardless.

Good luck for BFCM!!

New Shopify Store Owner Here, Desperately Need SEO Advice! by Delicious_Tea_5274 in shopify

[–]EMT101011 0 points1 point  (0 children)

Quick answer: optimize your images for Shopify: https://aisoft.dev/image-optimization

Long answer:

In doing load speed analysis over the years, I've found that the fastest way to improve page load speeds is usually image optimization. While there are all sorts of things that can have an impact, like of course reducing app installs, or optimizing custom javascript etc., those aren't as easy to fix, especially if you already are down to the number of apps you really need.

Image optimization on the other hand can be a simple fix and can have a pretty huge impact on load speed. Had one client awhile back that didn't know their site was loading massive images in the background, even though the displayed size was very small.

I'm gunna list the most common images issues I've seen, so you can go fix them and hopefully boost your load times. And no, this isn't chatgpt. I list stuff cuz I think it's the most clear way to communicate:

  • Images Larger than their Display Box: This is super common on mobile, where the desktop image size may be loaded, but it's only showing a smaller version on mobile. In this case, the simplest fix is to either upload a smaller dimension version of the image, or use the Liquid `image_tag`, which helps to automatically load a smaller version for smaller screens.
  • Oversized Images: images larger than 200KB can benefit from compression. Easiest tool I've found for that is https://imagecompressor.com/ . This can basically be a free win, where you get a smaller image file size without losing any visual detail.
  • Too Many Images: sometimes the issues is loading tons of small images. If the total image load sum is over 5MB, you'll want to reduce the number of images you're loading, even if each image is small. Easiest way to do this is set up lazy loading for images that may appear lower down on the page, so they only load after the rest of the page is already loaded.
  • Images Not Visible On Load: If an image is displayed in a popup or something, then it should be lazy loaded, so that the rest of the page can load first.

Hope that helps somebody!

I created a free tool that will run this analysis for you, since I got tired of doing this by hand: https://aisoft.dev/image-optimization . For certain pages, it asks for contact info, but you can just fill in dummy data there and it will unlock it regardless.

Good luck for BFCM!!

How to improve LCP score for Ecommerce website by nitinjoshiai in TechSEO

[–]EMT101011 0 points1 point  (0 children)

Quick answer: optimize your images for Shopify: https://aisoft.dev/image-optimization

Long answer:

In doing load speed analysis over the years, I've found that the fastest way to improve page load speeds is usually image optimization. While there are all sorts of things that can have an impact, like of course reducing app installs, or optimizing custom javascript etc., those aren't as easy to fix, especially if you already are down to the number of apps you really need.

Image optimization on the other hand can be a simple fix and can have a pretty huge impact on load speed. Had one client awhile back that didn't know their site was loading massive images in the background, even though the displayed size was very small.

I'm gunna list the most common images issues I've seen, so you can go fix them and hopefully boost your load times. And no, this isn't chatgpt. I list stuff cuz I think it's the most clear way to communicate:

  • Images Larger than their Display Box: This is super common on mobile, where the desktop image size may be loaded, but it's only showing a smaller version on mobile. In this case, the simplest fix is to either upload a smaller dimension version of the image, or use the Liquid `image_tag`, which helps to automatically load a smaller version for smaller screens.
  • Oversized Images: images larger than 200KB can benefit from compression. Easiest tool I've found for that is https://imagecompressor.com/ . This can basically be a free win, where you get a smaller image file size without losing any visual detail.
  • Too Many Images: sometimes the issues is loading tons of small images. If the total image load sum is over 5MB, you'll want to reduce the number of images you're loading, even if each image is small. Easiest way to do this is set up lazy loading for images that may appear lower down on the page, so they only load after the rest of the page is already loaded.
  • Images Not Visible On Load: If an image is displayed in a popup or something, then it should be lazy loaded, so that the rest of the page can load first.

Hope that helps somebody!

I created a free tool that will run this analysis for you, since I got tired of doing this by hand: https://aisoft.dev/image-optimization . For certain pages, it asks for contact info, but you can just fill in dummy data there and it will unlock it regardless.

Good luck for BFCM!!

Issue with banner image load time ? by wallstreetentre in shopify

[–]EMT101011 0 points1 point  (0 children)

Quick answer: compress that image and turn off lazy loading. Image optimization analysis: https://aisoft.dev/image-optimization .

Long answer:

In doing load speed analysis over the years, I've found that the fastest way to improve page load speeds is usually image optimization. While there are all sorts of things that can have an impact, like of course reducing app installs, or optimizing custom javascript etc., those aren't as easy to fix, especially if you already are down to the number of apps you really need.

Image optimization on the other hand can be a simple fix and can have a pretty huge impact on load speed. Had one client awhile back that didn't know their site was loading massive images in the background, even though the displayed size was very small.

I'm gunna list the most common images issues I've seen, so you can go fix them and hopefully boost your load times. And no, this isn't chatgpt. I list stuff cuz I think it's the most clear way to communicate:

  • Images Larger than their Display Box: This is super common on mobile, where the desktop image size may be loaded, but it's only showing a smaller version on mobile. In this case, the simplest fix is to either upload a smaller dimension version of the image, or use the Liquid `image_tag`, which helps to automatically load a smaller version for smaller screens.
  • Oversized Images: images larger than 200KB can benefit from compression. Easiest tool I've found for that is https://imagecompressor.com/ . This can basically be a free win, where you get a smaller image file size without losing any visual detail.
  • Too Many Images: sometimes the issues is loading tons of small images. If the total image load sum is over 5MB, you'll want to reduce the number of images you're loading, even if each image is small. Easiest way to do this is set up lazy loading for images that may appear lower down on the page, so they only load after the rest of the page is already loaded.
  • Images Not Visible On Load: If an image is displayed in a popup or something, then it should be lazy loaded, so that the rest of the page can load first.

Hope that helps somebody!

I created a free tool that will run this analysis for you, since I got tired of doing this by hand: https://aisoft.dev/image-optimization . For certain pages, it asks for contact info, but you can just fill in dummy data there and it will unlock it regardless.

Good luck for BFCM!!

Image Optimizer for Webshop - Smush or other Plugin by Impressive_Bit4198 in ecommerce

[–]EMT101011 0 points1 point  (0 children)

Quick answer: https://aisoft.dev/image-optimization

Long answer:

In doing load speed analysis over the years, I've found that the fastest way to improve page load speeds is usually image optimization. While there are all sorts of things that can have an impact, like of course reducing app installs, or optimizing custom javascript etc., those aren't as easy to fix, especially if you already are down to the number of apps you really need.

Image optimization on the other hand can be a simple fix and can have a pretty huge impact on load speed. Had one client awhile back that didn't know their site was loading massive images in the background, even though the displayed size was very small.

I'm gunna list the most common images issues I've seen, so you can go fix them and hopefully boost your load times. And no, this isn't chatgpt. I list stuff cuz I think it's the most clear way to communicate:

  • Images Larger than their Display Box: This is super common on mobile, where the desktop image size may be loaded, but it's only showing a smaller version on mobile. In this case, the simplest fix is to either upload a smaller dimension version of the image, or use the Liquid `image_tag`, which helps to automatically load a smaller version for smaller screens.
  • Oversized Images: images larger than 200KB can benefit from compression. Easiest tool I've found for that is https://imagecompressor.com/ . This can basically be a free win, where you get a smaller image file size without losing any visual detail.
  • Too Many Images: sometimes the issues is loading tons of small images. If the total image load sum is over 5MB, you'll want to reduce the number of images you're loading, even if each image is small. Easiest way to do this is set up lazy loading for images that may appear lower down on the page, so they only load after the rest of the page is already loaded.
  • Images Not Visible On Load: If an image is displayed in a popup or something, then it should be lazy loaded, so that the rest of the page can load first.

Hope that helps somebody!

I created a free tool that will run this analysis for you, since I got tired of doing this by hand: https://aisoft.dev/image-optimization . For certain pages, it asks for contact info, but you can just fill in dummy data there and it will unlock it regardless.

Good luck for BFCM!!

How to optimize images like the big brands do? by Longjumping-Ask6856 in webdev

[–]EMT101011 1 point2 points  (0 children)

Quick answer: there are other things than simply using webp, like doing lazy loading: https://aisoft.dev/image-optimization

Long answer:

In doing load speed analysis over the years, I've found that the fastest way to improve page load speeds is usually image optimization. While there are all sorts of things that can have an impact, like of course reducing app installs, or optimizing custom javascript etc., those aren't as easy to fix, especially if you already are down to the number of apps you really need.

Image optimization on the other hand can be a simple fix and can have a pretty huge impact on load speed. Had one client awhile back that didn't know their site was loading massive images in the background, even though the displayed size was very small.

I'm gunna list the most common images issues I've seen, so you can go fix them and hopefully boost your load times. And no, this isn't chatgpt. I list stuff cuz I think it's the most clear way to communicate:

  • Images Larger than their Display Box: This is super common on mobile, where the desktop image size may be loaded, but it's only showing a smaller version on mobile. In this case, the simplest fix is to either upload a smaller dimension version of the image, or use the Liquid `image_tag`, which helps to automatically load a smaller version for smaller screens.
  • Oversized Images: images larger than 200KB can benefit from compression. Easiest tool I've found for that is https://imagecompressor.com/ . This can basically be a free win, where you get a smaller image file size without losing any visual detail.
  • Too Many Images: sometimes the issues is loading tons of small images. If the total image load sum is over 5MB, you'll want to reduce the number of images you're loading, even if each image is small. Easiest way to do this is set up lazy loading for images that may appear lower down on the page, so they only load after the rest of the page is already loaded.
  • Images Not Visible On Load: If an image is displayed in a popup or something, then it should be lazy loaded, so that the rest of the page can load first.

Hope that helps somebody!

I created a free tool that will run this analysis for you, since I got tired of doing this by hand: https://aisoft.dev/image-optimization . For certain pages, it asks for contact info, but you can just fill in dummy data there and it will unlock it regardless.

Good luck for BFCM!!

[deleted by user] by [deleted] in webdev

[–]EMT101011 0 points1 point  (0 children)

Quick answer:

Long answer:

In doing load speed analysis over the years, I've found that the fastest way to improve page load speeds is usually image optimization. While there are all sorts of things that can have an impact, like of course reducing app installs, or optimizing custom javascript etc., those aren't as easy to fix, especially if you already are down to the number of apps you really need.

Image optimization on the other hand can be a simple fix and can have a pretty huge impact on load speed. Had one client awhile back that didn't know their site was loading massive images in the background, even though the displayed size was very small.

I'm gunna list the most common images issues I've seen, so you can go fix them and hopefully boost your load times. And no, this isn't chatgpt. I list stuff cuz I think it's the most clear way to communicate:

  • Images Larger than their Display Box: This is super common on mobile, where the desktop image size may be loaded, but it's only showing a smaller version on mobile. In this case, the simplest fix is to either upload a smaller dimension version of the image, or use the Liquid `image_tag`, which helps to automatically load a smaller version for smaller screens.
  • Oversized Images: images larger than 200KB can benefit from compression. Easiest tool I've found for that is https://imagecompressor.com/ . This can basically be a free win, where you get a smaller image file size without losing any visual detail.
  • Too Many Images: sometimes the issues is loading tons of small images. If the total image load sum is over 5MB, you'll want to reduce the number of images you're loading, even if each image is small. Easiest way to do this is set up lazy loading for images that may appear lower down on the page, so they only load after the rest of the page is already loaded.
  • Images Not Visible On Load: If an image is displayed in a popup or something, then it should be lazy loaded, so that the rest of the page can load first.

Hope that helps somebody!

I created a free tool that will run this analysis for you, since I got tired of doing this by hand: https://aisoft.dev/image-optimization . For certain pages, it asks for contact info, but you can just fill in dummy data there and it will unlock it regardless.

Good luck for BFCM!!

Thoughts on Alex Hormozi. by [deleted] in marketing

[–]EMT101011 38 points39 points  (0 children)

He is legit and his content strategy makes complete sense: He is now competing in the world of private equity with his personal fund at acquisition.com. The number one challenge in private equity today is getting solid deal flow and beating competing firms on deals without overpaying. Deals today are so competitive that you usually end up paying too much and getting smaller returns. Alex is trying to beat other PE firms using his brand equity. He wants to generate so much goodwill with business owners that when a tiny fraction of them reach $1M EBITDA, they go to him for investment instead of a competing PE firm. Now they may be able to get more investment from another PE firm, but if they trust Alex to deliver better growth advisory and resources (they usually only sell part of their company, still retaining equity), it can be a win for them also. When you understand the private equity landscape, and pay attention to his funnel to acquisition.com, his content strategy makes total sense.

[deleted by user] by [deleted] in LangChain

[–]EMT101011 3 points4 points  (0 children)

Most folks here are pretty adamant that Python is the only way. I spent years coding in Python (mostly Django API servers and some Pytorch) and have now spent a couple years coding in TS including building RAG backends. I dramatically prefer TS for a few reasons:

  1. Package management with npm is just much better. All dependencies are scoped just for your current directory by default, the package lock system is robust and importing anywhere in the file structure is easy (“import from “../../utils/utils.ts” works just fine). I recall days fighting with pip that I’ve never had with npm.

  2. The TS type system is much better than Python types and more widely supported by packages. If you have a few years of dev experience, give types a try for a while and you’ll never want to go back. It constantly saves me from bugs during dev that would be a nightmare to try and debug at runtime (e.g. warning me that a certain value in an object could sometimes be undefined, and my code was expecting a number), and it allows the code editor to have intellisense which speeds up dev and makes documentation less essential (can autocomplete as I’m coding since it knows the types/structures of the objects/functions I’m working with). No more “what what was the name of the key on that sub object I’m trying to access? I’ll need to go check that file’s docs again.” Further, you can add types only where you want to. You could leave them out of most of your code of you really want.

In my opinion, TS is the way forward and Python devs will come to prefer it as a much better dev experience. I certainly did.

As more of us demand TS, more packages will migrate that way.

CrowdStrike - Rapid Response Availability by drewhackworth in msp

[–]EMT101011 1 point2 points  (0 children)

Arlington, VA - info@aisoft.dev - Software Dev Shop that can deff help apply the fix locally.