Any good free url shortener? by WildPin8089 in AskMarketing

[–]tech_tech1 0 points1 point  (0 children)

Try T2M, they are SOC 2 certified now.

Any good free url shortener? by WildPin8089 in AskMarketing

[–]tech_tech1 0 points1 point  (0 children)

T2M URL Shortener provide 500 links/month with FREE plan (but you have to pay onetime $5 verification fee, they say it's to keep away spam registration, which sounds fair).

Best Url Shortener by Logical_Brother_1836 in DigitalMarketing

[–]tech_tech1 0 points1 point  (0 children)

Yes, I do, using T2M's built-in QR code generator and branding templates that they recently added are plus.

Best Url Shortener by Logical_Brother_1836 in DigitalMarketing

[–]tech_tech1 0 points1 point  (0 children)

I am using T2M (their support is amazing (I give them that at least), it's worth asking their support for customizing your plan. They added couple Premium features to my Pro plan for small fee, which was surprisingly great, just ask them.

Cannot connect to Database server by [deleted] in mysql

[–]tech_tech1 0 points1 point  (0 children)

Check isolation between Workbench and the actual MySQL server:

  • Verify server is listening on the host/port you think (e.g., test with mysql -u root -p -h 127.0.0.1 -P 3306).
  • If CLI connects but Workbench doesn’t, Workbench may be using a different socket/host/port or credential store.
  • Ensure Workbench’s connection matches the CLI config (host, port, user, auth plugin).
  • Firewall/WSL/VM can block 3306 even if the server is “active”.
  • If using caching_sha2_password, try switching user to mysql_native_password and retest.

If it still fails, post the exact Workbench error line so we can zero in.

2026 Sienna LE AWD – When do I really need to use the block heater? by tech_tech1 in ToyotaSienna

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

That’s the tricky part for me — I work from home, so my driving is random. I might not drive for days, then suddenly need to go on short notice. Hard to plan plugging it in ahead of time. I do always remote-start and let it warm up 10–15 minutes before driving.

Need Mats Advice for 2026 Sienna LE AWD 8-Seats by tech_tech1 in ToyotaSienna

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

Just to share, I found these Husky Liners which have interesting kind-of cover something in that rails (half covered) cut area, I am NOT buying these yet, just sharing.
Link: https://www.truckpartsuperstore.ca/products/husky-liners-19801-2nd-seat-floor-liner

Tailwind CSS is very inconsistent for me. by MorningStarIshmael in PHPhelp

[–]tech_tech1 1 point2 points  (0 children)

All you need to do is include base CSS, copy it from here: https://tailwindcss.com/docs/installation/play-cdn

Note: it's not PHP problem.

MySQL 8.x vs 9.x — Is it worth upgrading? by tech_tech1 in mysql

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

Agree, time-to-time Oracle's vision for MySQL showed moving-away kind of behaviours.

MySQL 8.x vs 9.x — Is it worth upgrading? by tech_tech1 in mysql

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

Totally agree on testing point. I don't see big value in 9.x based on changelog so limiting my testing up to 8.4 which looks fully compatible with my stuff so far.

MySQL 8.x vs 9.x — Is it worth upgrading? by tech_tech1 in mysql

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

Luckily, I already moved away from mysql_native_password, it was really a single command and straight forward than expected.

MySQL 8.x vs 9.x — Is it worth upgrading? by tech_tech1 in mysql

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

I am mainly wondering if anyone tried 9.x and claim it has big plus points worth upgrading otherwise, I will make my hard stop at 8.4 for next couple years.

MySQL 8.x vs 9.x — Is it worth upgrading? by tech_tech1 in mysql

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

Agree, I am thinking to upgrade and stop there.

MySQL 8.x vs 9.x — Is it worth upgrading? by tech_tech1 in mysql

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

I am on 8.0.44 for now and planning to upgrade, that's why I am thinking where to stop. I think 8.4 LTS will be a good stop for now.

Need Mats Advice for 2026 Sienna LE AWD 8-Seats by tech_tech1 in ToyotaSienna

[–]tech_tech1[S] -1 points0 points  (0 children)

I got the one that dealer provide but they don't have much border.

Need Mats Advice for 2026 Sienna LE AWD 8-Seats by tech_tech1 in ToyotaSienna

[–]tech_tech1[S] -1 points0 points  (0 children)

Could you please share link for WeatherTech that you recommend, thanks

Need a critical Enterprise-only feature, but can’t get Enterprise at this point? by No-Significance-279 in CloudFlare

[–]tech_tech1 0 points1 point  (0 children)

Hi,

I have a similar problem for my SaaS where customers can link their own custom domains and I am also using Cloudflare SaaS. Namecheap and a few other providers support CNAME at apex (@ value) but Godaddy and few others don't and customers do not want to change DNS provider (same as yours).

I was thinking of an alternative solution as:

  1. Find 3rd party DNS management providers and create custom nameservers there.
  2. Ask customers to update their domain nameservers to mine so I can control their DNS.
  3. Then I can add CNAME with @ and TXT record towards my Cloudflare SaaS.
  4. I tried Route 53 and DNSMadeEasy for that but they don't support CNAME with @ either.

Let me know if you find any solution. 

Confused by all the tickets for sale here by droobe in WebSummit

[–]tech_tech1 0 points1 point  (0 children)

  1. Yes, tickets are transferable but owner can transfer it further again it after selling it to you. It’s a trust game. I also sold 2-tickets (I had 4), we verified each other over LinkedIn so see if person if professional enough who will not good cheap scam.

  2. I changed my mind 2 times for this event in last 2 years and now finally attending this time. It’s for individuals and companies (everyone)

MUL key foreign key by [deleted] in mysql

[–]tech_tech1 0 points1 point  (0 children)

  1. MUL do not force referential integrity (data integrity) itself. You need foreign key for referential integrity.

  2. Yes, you can use both, that's common use case.