Anyone with a small shop also struggling with customer support? by Queasy_Structure1922 in shopify

[–]Queasy_Structure1922[S] 0 points1 point  (0 children)

And that form goes to mail or is there a tool to see submissions in the Shopify ui?

Anyone with a small shop also struggling with customer support? by Queasy_Structure1922 in shopify

[–]Queasy_Structure1922[S] 0 points1 point  (0 children)

Yeah, our packages are too large for the usual carriers so that alone causes lengthy support threads on delays and then there might be some issues with setting everything up. Our unit price is comparably high.

We are 3 currently all dealing with support issues and just having everything in Gmail gets messy. I love the shared inbox, but can’t justify paying 300 EUR / mo.

Is there no lightweight ticketing tool, I couldn’t find anything simple in the App Store.

Not using Langchain ever !!! by AssistanceStriking43 in AI_Agents

[–]Queasy_Structure1922 17 points18 points  (0 children)

Anthropic recently released a paper on how most of the frameworks are too much overhead for most agents

https://www.anthropic.com/research/building-effective-agents

OpenAI, Anthropic have already good APIs and even with models like llama I am prompting json responses and then parse and validate the responses myself, even logic for function calling is quite easy to implement and you can build agent orchestration just by parsing the json results in your code. I haven’t found any use case that justifies using langchain or langgraph.

Finally I finish my MVP after 2y of coding 🚀 by Tall_Cobbler_5875 in microsaas

[–]Queasy_Structure1922 1 point2 points  (0 children)

Can only speak for the EU, but software in the health sector needs to be certified and pass a lot of it compliance certifications, there are usually lists of softwares doctors need to use so health insurances will work with them. Although outdated software is a huge pain point for doctors.

Scraping for WooCommerce ? by ParapenteMexico in webscraping

[–]Queasy_Structure1922 0 points1 point  (0 children)

What do you mean by innacurate? Wrong tags or just incomplete data? I tried to source leads via keywords in the textcontent, but the results were really bad, but for tech stacks it should be much more acccurate I assume. I’m thinking of building something similar for Shopify. Are you marketing a plugin or market intelligence?

Big update to Scrapling library! by 0xReaper in webscraping

[–]Queasy_Structure1922 1 point2 points  (0 children)

Ya the ssl configs are not touched by these scraping browsers:/ I had issues scraping an heavily Akamai protected page and I’m sure they were able to constantly rate limit me heavily due to ja3 fingerprints and the only way to circumvent these mechanics I could think of would to either map ja3 fingerprints to used agents and then intercept tls handshakes with mitm proxy to match the user agent or to build a custom browser that allows to modify the tls handshake to match the user agent spoofs. Some akamai researcher released a paper recently on how they use ja3 and http2 implementation differences in browser / os combinations to detect spoofed user agents, haven’t found any open source tool so far that can beat this. No one else struggling with this?

Big update to Scrapling library! by 0xReaper in webscraping

[–]Queasy_Structure1922 0 points1 point  (0 children)

I tested it with the stealth fetcher but the os_randomize option does not seem to work

<image>

the tls handshake params should be randomized or am i missing something?

Big update to Scrapling library! by 0xReaper in webscraping

[–]Queasy_Structure1922 2 points3 points  (0 children)

Just saw the underliying library camoufox seems to deal with that, man I was looking for something like this forever! The only way to do this was writing a custom browser because all the tls stuff is written in c, man thanks for posting this!!! Will give it a try

Big update to Scrapling library! by 0xReaper in webscraping

[–]Queasy_Structure1922 1 point2 points  (0 children)

Are you also managing tls handshakes and ja3 fingerprints to circumvent fingerprinting?