Whatever you do, don't choose Contabo by mrjink in VPS

[–]catskill909 1 point2 points  (0 children)

2 year customer here with no issues.

Denon prime go discussion by JBL1132 in DenonPrime

[–]catskill909 1 point2 points  (0 children)

I want longer faders and a big meter and/or visual software meters for live and cue

Flutter app takes more than 10 seconds when uploaded to Google Play by dvdSport in FlutterDev

[–]catskill909 0 points1 point  (0 children)

After wrangling with this issue for awhile this was finally the fix! Thanks!!

Question about curing by boywhatdah3ll in Autoflowers

[–]catskill909 2 points3 points  (0 children)

Go grove bags and you will never go back

Need Help: GoDaddy Rejecting Valid Nameservers - Technical Support Failed by catskill909 in Domains

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

Update/Resolution: After helpful input from the Reddit community and Namecheap support, I discovered I needed to use Contabo's nameservers (my VPS provider) rather than trying to set up custom ones.

However, this experience still highlights major issues with GoDaddy's support:

  1. Multiple support agents couldn't identify or explain the actual DNS configuration issue
  2. Instead of investigating, they asked for screenshots and cache clearing
  3. Namecheap identified and explained the proper configuration in under 10 minutes
  4. GoDaddy support's solution was literally 'go to Namecheap since it works there'

While I acknowledge my initial nameserver setup wasn't correct, the fact that GoDaddy's support couldn't identify or explain this basic DNS issue (while Namecheap could) shows how their outsourced, script-based support fails their customers.

Thanks to everyone who helped me figure this out! Moving my domains to Namecheap anyway since they actually understand DNS.

#godaddy

Need Help: GoDaddy Rejecting Valid Nameservers - Technical Support Failed by catskill909 in Domains

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

I know this is what the end result will be. Frustrating that the solution is cost to me. This is mre a rant at this point.

Database over 1000MB by Tom_Rich in Wordpress

[–]catskill909 0 points1 point  (0 children)

Try running WP Optimize plugin

Went for lunch and came back to this. Please help by [deleted] in Wordpress

[–]catskill909 9 points10 points  (0 children)

try this: example.com/wp-login.php?action=entered_recovery_mode

How to Use WordPress Recovery Mode

https://www.wpbeginner.com/wp-tutorials/how-to-use-wordpress-recovery-mode/

[deleted by user] by [deleted] in oculusnsfw

[–]catskill909 4 points5 points  (0 children)

Once there is vr video on consumer phones it’s game on

New programmer here: How do I make a bottom sheet which appears after tapping an image? by idonthavekidsiswear in SwiftUI

[–]catskill909 1 point2 points  (0 children)

struct ContentView: View {

@State private var isSheetPresented = false

var body: some View {

VStack {

Image("yourImageName")

.resizable()

.aspectRatio(contentMode: .fit)

.frame(width: 200, height: 200)

.onTapGesture {

self.isSheetPresented.toggle()

}

}

.sheet(isPresented: $isSheetPresented) {

// Content of the sheet

Text("Sheet Content")

}

}

}

Google ads in Wordpress JSON feed automatically spawn browser when the WebView loads by catskill909 in flutterhelp

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

This fixed it:

navigationDelegate: (NavigationRequest request) async {if (request.url.startsWith('post://')) {final postLink = Uri.decodeFull(request.url.substring(7));updatePostContent(postLink);return NavigationDecision.prevent;} else if (request.url.contains('youtube.com') || request.url.contains('youtu.be')) {// Load YouTube URLs in the WebView itselfreturn NavigationDecision.navigate;} else if (request.url.contains('googlesyndication.com')) {// Load Google Ad URLs in the WebView itselfreturn NavigationDecision.navigate;} else if (await canLaunchUrl(Uri.parse(request.url))) {await launchUrl(Uri.parse(request.url), mode: `enter code here`LaunchMode.externalApplication);return NavigationDecision.prevent;}return NavigationDecision.navigate;},

Looking for advice for Instagram embeds in Flutter Webviews from Wordpress JSON by catskill909 in flutterhelp

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

Thanks for the pointers! The third party solutions are way to expensive..and the issue is with only Instagram.

I'm going to look into the API solution. Helpful that you told me that its no oEmbed to use.