Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
need
- Page 1
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
1 Week Ago
by usmanmalik57
… Required Libraries The script below installs the Python libraries you
need
to run codes in this article. ``` !pip install openai !pip… call the OpenAI API. To access the API, you will
need
the [OpenAI API key](https://platform.openai.com/api-keys…
Re: Does Tools give 100% correct answers?
Digital Media
Digital Marketing
Search Engine Strategies
3 Weeks Ago
by ashleydent4u
…, but they’re definitely not 100% accurate or all you
need
. They give you estimations based on their own data sets…
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by lennyli
…, not for opening windows. > > On the client: You
need
a download link, or a desktop app they install. Thank… include any security measures. In a real application, you would
need
to implement authentication, encryption, and possibly a secure connection (e…
Re: Page Speed Issue
Digital Media
Digital Marketing
3 Weeks Ago
by ashleydent4u
… manual effort. Java-based websites, on the other hand, usually
need
more hands-on optimization since they’re often custom-built…
Re: Optimizing working with big data
Programming
Software Development
3 Weeks Ago
by Salem
My first thoughts would be 1. What is large? Are we in the TB range or mere handfuls of GB? 2. How often do you
need
to do this? Is it once a day, once a month, or just once.
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).
Re: Optimizing working with big data
Programming
Software Development
3 Weeks Ago
by Dani
… gigs and millions of rows. > How often do you
need
to do this? Is it once a day, once a…
Re: which language do i start leaning in 2025
Programming
Software Development
3 Weeks Ago
by Dani
… JavaScript. Want to create more complex dynamic websites? You will
need
a backend language such as PHP and a database such…
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by rproffitt
I see pritaeas has answered so I'll move to the next stage of the discussion which is to ask what you
need
in your web site. For example there is an "online notepad" which does some basic notepad work. And there are many screensavers that run from a webpage with an example at whitescreen.online . You can get there.
Re: Cannot run exe from asp.net
Programming
Web Development
2 Weeks Ago
by lennyli
… stage of the discussion which is to ask what you
need
in your web site. > > For example there is…
Re: Any jQuery 4 users?
Programming
Web Development
2 Weeks Ago
by Neil_brown001
… in the build system and custom builds if you only
need
parts of jQuery. Overall, it’s been a pretty painless…
Re: Metaverse Marketing Services
Digital Media
Digital Marketing
1 Week Ago
by rproffitt
I thought that idea was dead. The new thing appears to be the Zuck's AI In Everything which I don't
need
in my toaster.
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by Neil_brown001
… background tasks, not for opening windows. On the client: You
need
a download link, or a desktop app they install.
Re: I'm Tired! How to Increase Social Media Followers
Digital Media
Digital Marketing
3 Weeks Ago
by Shady33
Here are some tips that first came to my mind: * Collaborate with influencers or complementary brands * Use paid ads to promote your best content or lead magnets * Cross-promote across channels (e.g. promote IG on LinkedIn, or vice versa) * Add social links in your email signature, website, and newsletters * Join relevant groups or …
Re: I'm Tired! How to Increase Social Media Followers
Digital Media
Digital Marketing
2 Weeks Ago
by Sơn_15
Hi, I think I can help you with this problem.
Re: How to open an Excel Document in VB.NET
Programming
Software Development
2 Weeks Ago
by JamesMichaelm
I see it's been a while since you posted, but I'm curious if anyone here has tried using the Open XML SDK instead of Interop or OleDb for reading Excel files. I found it faster and doesn't require Excel to be installed, though it can be more complex for writing. Wondering how others handle big Excel files or ones with tricky formatting?
Re: How to open an Excel Document in VB.NET
Programming
Software Development
2 Weeks Ago
by PitSterw
I've worked on something similar and found that using Microsoft.Office.Interop.Excel lets you open the file and loop through cells easily.
Re: How to open an Excel Document in VB.NET
Programming
Software Development
2 Weeks Ago
by Pelorus_1
A Microsoft Excel document can be opened in VB.NET using the Microsoft.Office.Interop.Excel library. Using Workbooks.Open(), open the workbook, and then display the Excel window. Reference the Excel COM object in your project.
Re: I'm Tired! How to Increase Social Media Followers
Digital Media
Digital Marketing
2 Weeks Ago
by MajithaDotcom
To grow your followers on Instagram and Facebook, focus on consistency, engaging content, and timing. Use Insights to find when your audience is most active (usually evenings or lunch hours). Mix up content—reels, carousels, memes—and always add value (tips, relatable posts, etc.). Engage with your audience through comments, DMs, and stories, and …
Re: What Happened When We Applied Psychology-Backed Tweaks to a Funnel?
Digital Media
Digital Marketing
1 Week Ago
by graceweb
It’s amazing how just a few strategic changes can turn a struggling funnel into a success story. The emphasis on trust signals and emotional storytelling really resonates—those elements create a connection that can be the deciding factor for prospects. Thanks for highlighting those key takeaways! It’s a good reminder that sometimes it’s not …
Re: Data storage and retrieval - cache or database
Programming
Mobile Development
1 Week Ago
by jonathannweyer
If the "status" doesn't change frequently, caching is a solid option. You could fetch it from the database the first time it's needed, then store it in a cache (like in-memory or Redis, depending on your setup), and use that for subsequent loads.
Need currency pound symbol before amount calculation
Programming
Web Development
1 Month Ago
by ianhaneybs
I
need
to display a pound currency symbol before the amount that …
Re: Need currency pound symbol before amount calculation
Programming
Web Development
1 Month Ago
by Biiim
… to use £ to display in html, but you
need
£ to display in basic text elements like <input>…
Re: Need currency pound symbol before amount calculation
Programming
Web Development
1 Month Ago
by Salem
https://stackoverflow.com/questions/44969852/javascript-number-tolocalestring-currency-without-currency-sign Maybe use style 'currency' rather than style 'decimal' ?
Re: Need currency pound symbol before amount calculation
Programming
Web Development
1 Month Ago
by Dani
Yes, but you might want to also add `currency: 'GBP'`, as so: $('table#list tfoot .grand-total').text(parseFloat(grand_total).toLocaleString('en-gb', { style:'currency', currency: 'GBP', maximumFractionDigit:2 }))
Re: Need currency pound symbol before amount calculation
Programming
Web Development
1 Month Ago
by gediminas.bukauskas.7
JS has a function for the formatting currencies. Read the 'https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat' article. You will find code samples there.
Re: Need currency pound symbol before amount calculation
Programming
Web Development
1 Month Ago
by gottaloveit
[Currency.js](https://currency.js.org/) also works very well for this
McCharts - ArkTS
Programming
Software Development
1 Month Ago
by 杨_659
… of the entire painting content, globally, to avoid the
need
to pass the font size for each small function. 4…as a whole are related to each other, and even
need
to calculate the four properties of internal spacing, dividing …depending on your needs). In order to maintain alignment, we
need
to calculate the maximum width of the text. The text…
Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by usmanmalik57
….com/). To run scripts in this article, you will
need
the [Groq API Key](https://console.groq.com/keys). … the Python Groq library and other Python modules you will
need
to run scripts for in this article. ``` !pip … the system instructions and the user prompt. Finally, you
need
to call the `chat.completions.create()` function of the …
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.
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