Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
guess
- Page 1
Re: What’s Best Way to Clear File Contents Without Deleting the File in Linux
Hardware and Software
Linux and Unix
3 Weeks Ago
by Salem
I
guess
most people just use https://linuxconfig.org/logrotate Set it and forget it. There's no need to resort to random per file hackery (or quackery).
Editor crashes browser
Community Center
Meta DaniWeb
1 Month Ago
by Dani
… on Chrome browser on my Android phone. > > I
guess
the issue is only picked up by Chrome. I know…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by jkon
…-value pair was introduced in 2019–2020, so I would
guess
it will be safe to use after 2030–2035, except…. Handle JSON-LD data. I would write more, but I
guess
this is out of scope. 3. Load the app's…
Re: Page Crawling Issue
Digital Media
Digital Marketing
2 Months Ago
by Dani
As Harry points out, my first
guess
would be to check robots.txt and ensure you aren't blocking any pages from SEMRush. Also make sure you aren't using a CDN or proxy like Cloudflare that is blocking it from their side.
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Dani
> I
guess
AI is replacing traditional search engine queries? ChatGPT traffic still doesn't surpass Google, but it's definitely way up there. I believe it's heading in that direction, yes.
Re: How did you learn about DaniWeb?
Community Center
Meta DaniWeb
2 Months Ago
by Salem
Apparently, I joined December 2005. Probably followed someone's link to some post I
guess
, then decided to pull up a chair.
Re: Will Nvidia stock rebound?
Community Center
2 Months Ago
by Reverend Jim
My completely uninformed
guess
is no. Their bubble has burst.
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by Dani
…-value pair was introduced in 2019–2020, so I would
guess
it will be safe to use after 2030–2035, except…
Re: Meta shop setup problem
Digital Media
Digital Marketing
2 Months Ago
by Dani
I would
guess
it just has to do with taxes and/or laws …
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by Dani
I
guess
I don't understand why implementing `loading="lazy"` will hurt the CLS if you're only doing it for images below the fold, and always specifying image dimensions (which would ensure to never affect CLS at all)?
Re: Upgrade to Fiber internet
Hardware and Software
Networking
1 Month Ago
by Dani
… is enough, I also don't know, although my first
guess
would be that it previously wouldn't have been, but…
Re: Show computer name on a label
Programming
Software Development
1 Month Ago
by Mr.M
… crashing happens on Chrome browser on my Android phone. I
guess
the issue is only picked up by Chrome. I know…
Re: Theory on the VPN
Programming
Mobile Development
1 Month Ago
by Mr.M
I
guess
a more research on this has to be made, problem is that it is hard to get the exact people who knows this and has done it before to give straight answers.
Re: Editor crashes browser
Community Center
Meta DaniWeb
1 Month Ago
by Mr.M
Hi Dani, I'm trying to reply with Chrome to test what I've noticed regarding the crash. I've attached relevant screenshots for 3 questions. I'm not using any plug-in  ![Screenshot_20250313_051213_com.…
Re: Editor crashes browser
Community Center
Meta DaniWeb
1 Month Ago
by Mr.M
What I've noticed is that it seems to be clutching with keyboard auto-correct/auto-complete. If I type a full word without pressing it from my keyboard suggestion options that shows while typing it doesn't seem to crash, but once I choose or select one auto-complete and proceed typing it freezes and crash.
Re: Editor crashes browser
Community Center
Meta DaniWeb
1 Month Ago
by Mr.M
NB: I've typed all these reply messages successfully using the same Chrome browser that is crashing.
Re: Editor crashes browser
Community Center
Meta DaniWeb
1 Month Ago
by pritaeas
Since Android was mentioned, I tested on my Samsung Galaxy S20 and could nog get it to crash.
Re: Editor crashes browser
Community Center
Meta DaniWeb
1 Month Ago
by Salem
Your chrome is 9+ months out of date. https://chromereleases.googleblog.com/2024/07/
Re: Editor crashes browser
Community Center
Meta DaniWeb
1 Month Ago
by Dani
Well don’t upgrade chrome just yet! If the problem goes away, we won’t have any way of testing if the bug is fixed.
Re: Editor crashes browser
Community Center
Meta DaniWeb
1 Month Ago
by Dani
It would be very helpful if you could not upgrade Chrome for now, while we debug this, since you're currently the only known person who is experiencing the bug.
Re: Editor crashes browser
Community Center
Meta DaniWeb
1 Month Ago
by Salem
@Mr.M, @Dani - you might want to delete/censor the IMEI shown in the screenshots at some point.
Re: How Can I Hookup My Mobile Phones To My PC Monitor ?
Hardware and Software
Hardware
Mobile and Wearables
1 Month Ago
by Deborah_5
How Can I Hookup My Mobile Phones To My PC Monitor ?
Re: Editor crashes browser
Community Center
Meta DaniWeb
1 Month Ago
by Dani
Can you try upgrading Chrome now and see if the problem goes away? Much thanks!
Re: How Can I Hookup My Mobile Phones To My PC Monitor ?
Hardware and Software
Hardware
Mobile and Wearables
1 Month Ago
by Fitmovers
If you want to connect your Samsung Galaxy A9 to your Dell E1916HV monitor, you'll need a USB-C to HDMI adapter (if your phone supports HDMI output). Since your phone has only USB ports, check if it supports Samsung DeX or screen mirroring via an MHL adapter. If your monitor only has VGA input, you might also need an HDMI to VGA converter.
Guess the number
Programming
Software Development
11 Years Ago
by marium.aslam.18
… range while the second player attempts to
guess
the number. After each
guess
, the first player answers either “Higher”,…py). Suggested development strategy for the basic version of “
Guess
the number” is: 1. Decide on a set…immediately starts. Since the strategy above for playing “
Guess
the number” approximately halves the range of possible secret…
Re: Guess the number
Programming
Software Development
11 Years Ago
by BearofNH
I
guess
53.
guess the nunmber!
Programming
Software Development
14 Years Ago
by xiansen
…; using namespace std; void secretNum(int&); void guessResponse(int
guess
, int answer); void countResponse(int count); int main() { int number…"; //Guessing Loop do { cout << "Enter a
guess
:"; cin >> spec; ++tries; guessResponse( spec, tries); } while…
Guess my number computer version
Programming
Software Development
13 Years Ago
by pawel1
… "You chose",
guess
, "but my number is lower..."
guess
= random.randint(1,
guess
+1) elif
guess
< the_number: print &…quot;You chose",
guess
, "but my number…
Re: guess the nunmber!
Programming
Software Development
14 Years Ago
by xiansen
… namespace std; void secretNum(int &num); void guessResponse(int
guess
, int answer); void countResponse(int count); int main() { int number…"; //Guessing Loop do { cout << "Enter a
guess
:"; cin >> spec; ++tries; guessResponse( spec, number); } while…
Guess Computers number program that i need help with
Programming
Software Development
13 Years Ago
by strongguy12345
….println("Please enter in your first
guess
:"); int guess1 = sc.nextInt(); System…randomNumber) { System.out.println("Good job! Your first
guess
:" + guess1 + " was exact to my…randomNumber) { System.out.println("Good job! Your first
guess
:" + guess2 + " was exact to my…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC