Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
write
- Page 1
Re: Crosshair has a vertical and horizontal line to view the value of the axis.
Programming
Software Development
3 Days Ago
by Dani
… very short bits of code to
write
at a time. If you ask it to
write
an entire mini-program that does… wrong, left out, etc. But if you ask it to
write
pseudocode first, and then for each individual method/function call…
Re: Important web design and development techniques?
Digital Media
6 Days Ago
by Eckert
… CSS. For development, follow SEO best practices, optimize images, and
write
clean, maintainable code. Also, using version control (like Git) is…
Re: How to Find Best Keywords to increase the Website traffic?
Digital Media
Digital Marketing
Search Engine Strategies
4 Days Ago
by mundirtest123
…. Avoid stuffing keywords just for SEO. It’s better to
write
helpful content for real people. When your content matches their…
What is your latest SEO strategy?
Digital Media
Digital Marketing
3 Weeks Ago
by devout-growth
… someone asks, “How do I fix a flat bike tire?”
write
answers that sound like you’re explaining it to a… Google things like, “Where’s the closest bakery shop?” So
write
the way people speak, and use natural phrases instead of…
Re: Error LNK1104 when debugging
Programming
Software Development
3 Weeks Ago
by rproffitt
Since the file is not generated, try a full compile. Be sure you change to Debug for this build. You usually can't debug what you didn't compile. Example: There were compile or build errors which stopped the creation of the .exe file. But no mention of compile errors so I wouldn't
write
about that here.
Re: Embedding Wellbeing Programs at Work The Missing Link to Long-Term Growth
Community Center
1 Week Ago
by rproffitt
Hmm, as I review Jeff Bezos and the work performed in their warehouses I can
write
that such concepts seem to be quite foreign to that company. And then we have the direction the US Government agencies are taking. To those that think such talk is political, it's more than that. It's exploitation. Let's call it out for what it is.
Re: What is your latest SEO strategy?
Digital Media
Digital Marketing
3 Weeks Ago
by Dani
Thanks for posting your tips. I think that some of the things you mention, such as giving website visitors instant gratification, unfortunately often get overlooked. That being said, I get that you say how important it is to sound like a human, but are your tips AI generated? (According to some AI detectors, they are!)
Re: Need Coding Help With A Project
Programming
Software Development
3 Weeks Ago
by Enzo_3
I was working on a similar assignment where I had to compute the average of numbers from a text file using higher-order functions like map() and reduce(). I was really stuck on how to incorporate them meaningfully, but I finally figured it out. Here's how I approached it using Python: from functools import reduce with open('…
Re: Need Coding Help With A Project
Programming
Software Development
3 Weeks Ago
by Reverend Jim
I don't know why you would use `reduce` and `lambda` when you could just do sum(numbers) And the directive >You should make use of two higher-order functions (i.e., map and reduce, or something else) to simplify the design. is self-contradictory as using `map` and `reduce` instead of `sum` does not simplify the design. It …
Re: Need Coding Help With A Project
Programming
Software Development
3 Weeks Ago
by Reverend Jim
>Why put them down? Please explain to me how anything I said was a put down. If someone told me their methof of counting cows was "count the number of legs and divide by four", I would point out that it would be simpler just to count the number of cows. If I said "That's stupid, just count the cows", then that would be a …
Re: Need Coding Help With A Project
Programming
Software Development
3 Weeks Ago
by Dani
First of all, let me be blunt. I believe that Enzo only resurrected a 12 year old thread with the intent of spamming. You and I know that because, as moderators, we see in his profile his spamming attempts and his infractions. However, no one else coming across this thread sees that or knows that, so the other 2000 people reading this thread may …
Why doesn’t my website appear on Google when I search for its domain name?
Digital Media
Digital Marketing
Search Engine Strategies
1 Month Ago
by diyasharma02
Write
Answer about that?
Re: Help needed Related Website
Digital Media
Digital Marketing
1 Month Ago
by ashishkumar56
… to rank my Website in USA for different services. I
write
article on digital marketing, SEO, SMM but i Cant get…
What are the best Local Seo practices in 2025?
Digital Media
Digital Marketing
Search Engine Strategies
1 Month Ago
by asadalig
…. Voice search is getting bigger too, so it helps to
write
content that sounds like how people talk.
Re: Buggy career talk :-P
Programming
2 Months Ago
by Salem
… memory operations. So very rarely, a
write
-read in the algorithm turned into a read-
write
on the bus. Fine if it…
Re: Optimizing working with big data
Programming
Software Development
2 Months Ago
by Dani
…. For me, the most important is real-time read and
write
performance to tables with millions of rows that have high…
Re: Why SEO is Important for the Website?
Digital Media
Digital Marketing
Search Engine Strategies
2 Months Ago
by heerii
… or sales. To improve your website’s SEO, you can
write
helpful content using the right keywords, make sure your site…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months Ago
by lennyli
…(command) ' Clean up Set objShell = Nothing ' Output the result Response.
Write
("Executable executed with result: " & result) %> <…
Re: How Can I Increase More Traffic of My Website?
Digital Media
Digital Marketing
2 Months Ago
by Kidskastle
Share your website on social media,
write
helpful and interesting content, use the right keywords so people can find you on Google, and ensure your website loads fast and works well on mobile devices. Ads can also be placed on your site or other websites can link to it.
Re: Digital Marketing Strategy for My Website
Digital Media
1 Month Ago
by MasoodDidThat
…-Page) 7. Produce quality content on social media platforms and
write
SEO friendly blogs 8. Start your ads with a low…
Re: how can I build or make new programming language
Programming
1 Month Ago
by trcooke
This may seem like a flippant response, but I promise you it isn't. Why do you feel the need to
write
a new programming language? (I assume that's what you mean by 'machine language'). What is it you need that all other existing programming languages do not provide?
Re: Why doesn’t my website appear on Google when I search for its domain name?
Digital Media
Digital Marketing
Search Engine Strategies
1 Month Ago
by Dani
Because Google doesn’t think your website has enough to offer, has a strong enough brand name, is not spammy, etc. Create high quality, non-AI generated content, and build backlinks pointing to your site. Also, if you have not already done so, create a Google Search Console account.
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
2 Months Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Re: Coin Flip (Python Newbie)
Programming
Software Development
1 Month Ago
by jassonadder
Hey! Great job getting started with Python—your logic is almost there, just a couple of small fixes needed. The main issue is that you're using the variable timesflipped in your while loop, but it was never initialized. Because of that, the loop never runs properly, and your counters don't change. Here's a corrected version of your code:…
Re: Coin Flip (Python Newbie)
Programming
Software Development
1 Month Ago
by Dani
> Presumably bumping every "coinflip" post to spam their URL Nothing wrong with that!! I'll take a trillion helpful posts if all someone wants in exchange is a free signature link back to their website (that only shows up for logged in members, so no SEO incentive).
Re: What are the best Local Seo practices in 2025?
Digital Media
Digital Marketing
Search Engine Strategies
1 Month Ago
by Dani
While that's all true, I can't help but wonder if this is AI-generated content? Whether or not it is, you pretty much nailed it, so I'm not quite sure if you have a question or not that you're asking, or just trying to get a discussion started.
Re: Coin Flip (Python Newbie)
Programming
Software Development
1 Month Ago
by woooee
while timesflipped < 100: timesflipped += 1 Use a for loop instead. if coin_flips == 0: And no need to add the == 0. Just *if coin_flips* (i.e. not zero) is enough
Re: Coin Flip (Python Newbie)
Programming
Software Development
1 Month Ago
by Reverend Jim
When you want to do a loop a given number of times (e.g. 100) but the loop counter is not used you can do for _ in range(100): # rest of code here
Write Your First Application in Win32 Using Assembly
Programming
Software Development
17 Years Ago
by sanzilla
…expalin the code ======================================================= Oky you are going to
write
an application program in win32 Therefore , there …exe is there . Then your are going to
write
your first assembly language source file . The … notepad HelloWin.asm The you are going to
write
the first assembly language program in the notepad …
Write a Function
Programming
Software Development
16 Years Ago
by yaee
Write
a function to overload subtraction operator for Class Order, which … following attributes/ data members i) OrderID ii) Items iii) PricesOfItems
Write
the main () to call the - operator and print the result… and a structure? Question No. 4 Marks : 2 When we
write
a class template the first line must be: 1 template…
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
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC