Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
total
- Page 1
Re: Java Coin Flip Program
Programming
Software Development
5 Days Ago
by jassonadder
… += 1 print("\nResults:") print("
Total
Heads:", self.heads) print("
Total
Tails:", self.tails) # Main program try…
Re: Justice Department Offers Grants Against Internet Predators
Digital Media
Digital Marketing
2 Days Ago
by JackRyan248
… abuse or neglect, and arrested 5,450 individuals. Of the
total
arrests, 2,073 resulted in the defendant accepting a plea…
Re: Java Coin Flip Program
Programming
Software Development
3 Days Ago
by Dani
Better late than never! Thanks for your post. It looks like it's really helped a few people already.
Re: Java Coin Flip Program
Programming
Software Development
3 Days Ago
by Salem
> It looks like it's really helped a few people already. Yeah, 4 new members with consecutive user ID's, smelling like sock-puppet accounts.
Re: Java Coin Flip Program
Programming
Software Development
3 Days Ago
by Dani
> Yeah, 4 new members with consecutive user ID's, smelling like sock-puppet accounts. I realized that after I posted. I’m on my phone on the sofa so it wasn’t as easy to tell. Although I still can’t see the motivation. Edit: Nevermind. Perhaps they were trying to improve their member reputation/quality score?? (Won’t work because you need…
Evaluating OpenAI GPT 4.1 for Text Summarization and Classification Tasks
Programming
Computer Science
2 Weeks Ago
by usmanmalik57
…print("Exception occurred:", e) exceptions += 1 print("
Total
exception count:", exceptions) accuracy = accuracy_score(all_sentiments, dataset["…= "gpt-4.1" find_sentiment(client, model) ``` **Output:** ```
Total
exception count: 0 Accuracy: 0.82 ``` The output shows that…
Re: Differential Directory, indexing method
Programming
Software Development
3 Weeks Ago
by xrjf
…) → max 3 comparisons (3, 4) + (6, 8) → max 3 comparisons →
Total
so far: 10 comparisons Merge into a single group of…, 2, 5, 7) + (3, 4, 6, 8) → max 7 comparisons →
Total
: 17 comparisons Extending this to 16 elements would require at…
Need currency pound symbol before amount calculation
Programming
Web Development
2 Months Ago
by ianhaneybs
…grand_total = 0; $('table#list tbody input[name="
total
[]"]').each(function(){ grand_total += parseFloat($(this).val()) …}) $('table#list tfoot .grand-
total
').text(parseFloat(grand_total).toLocaleString('en-gb', {style:'decimal…
DeepSeek R1 vs Llama 3.1-405b for Text Classification and Summarization
Programming
Computer Science
2 Months Ago
by usmanmalik57
…;| Error:", e) exceptions += 1 time.sleep(sleep_time) print("
Total
exception count:", exceptions) return all_sentiments ``` Let's first call…)]) print(f"Accuracy for {model[0]}: {accuracy}") ``` **Output:** ```
Total
exception count: 0 Accuracy for deepseek-r1: 0.75 ``` The…
Re: Need currency pound symbol before amount calculation
Programming
Web Development
2 Months 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 Biiim
… will do the botch-job answer: $('table#list tfoot .grand-
total
').text('£'+parseFloat(grand_total).toLocaleString('en-gb', {style:'decimal',maximumFractionDigit:2…
Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by usmanmalik57
…:", i, "| Error:", e) exceptions += 1 print("
Total
exception count:", exceptions) ``` **Output:** ``` Overall Accuracy: 0.69 ``` The…
Re: Top industries that use automation
Programming
Software Development
2 Months Ago
by Dani
… that the voice of the Johnny-Cab in the original
Total
Recall movie was provided by the actor (Robert Picardo)…I didn't notice, despite getting into Voyager, and watching
Total
Recall, both in my early college days, so roughly around…[Dan](https://www.daniweb.com/members/12/samaru), both recommended
Total
Recall to me, as well as told me I should…
Re: Top industries that use automation
Programming
Software Development
2 Months Ago
by Reverend Jim
… that the voice of the Johnny-Cab in the original
Total
Recall movie was provided by the actor (Robert Picardo) who…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by Dani
… of 1.1s, so certainly a huge difference there. FCP,
total
blocking time, CLS (0), and speed index (0.2s) scores…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by jkon
… content to stabilize (busy main thread) or even affect the
total
"Speed Index." We often tend to think that…
Re: Will AI take jobs?
Digital Media
Digital Marketing
1 Month Ago
by ashleydent4u
…, but it’s more of a powerful tool than a
total
job killer. While AI can automate tasks like content creation…
Re: Need currency pound symbol before amount calculation
Programming
Web Development
2 Months 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 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
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by rproffitt
"Wiz Research Uncovers Exposed DeepSeek Database Leaking Sensitive Information" "Security researchers tested 50 well-known jailbreaks against DeepSeek’s popular new AI chatbot. It didn’t stop a single one." It only seems to get worse the more you look at DeepSeek. And I must note how it is known to not want to talk about …
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by policenbicleara
Llama-70B struggles with sentiment analysis (69% accuracy) vs. Qwen-32B (87%). Summarization performance is weaker, with lower ROUGE scores. Qwen-32B is the better choice—smaller, faster, and more accurate.
Re: Text Classification and Summarization with DeepSeek R1 Distill Llama 70B
Programming
Computer Science
2 Months Ago
by Pelorus_1
Great breakdown of DeepSeek R1 Distill LLaMA 70B! The explanation of text classification and summarization is clear and insightful. Appreciate the practical examples—makes implementation much easier. Thanks for sharing!
Re: I built a kafka GUI client for operating kafka, welcome to use
Programming
Software Development
1 Month Ago
by elary
It is a nice project.Is there any notification function?
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
1 Month 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: Total amount of price and deposit... Please help.
Programming
Web Development
12 Years Ago
by AARTI SHRIVAS
$
total
+= $
total
+ $deposit['deposit'] * $pamount['price_status']; change these to $
total
= $
total
+ $deposit['deposit'] * $pamount['price_status']; that and then chek the calculation
total
Programming
Software Development
14 Years Ago
by maichy
…previously,i am having a problem displaying the grand
total
.this is the scenario: i have several buttons… i compute using D1 i get the
total
displayed,if i press d2 i also get …the
total
displayed and so on.this is the …code i used in the
total
command button [code] Private Sub cmdtotal_Click() If readout…
Re: total amount
Programming
Web Development
17 Years Ago
by ptaylor965
… person then you can use a span to show the
total
In ASPX[CODE]<span id="lblTotal" runat…="server">
Total
</span>[/CODE] In Code[CODE]Dim Row as… DataRow Dim
Total
as Decimal = 0 For Each Row in SQLTable.Rows…
Re: total
Programming
Software Development
14 Years Ago
by jhai_salvador
… didn't see where do you want to show the
Total
for it. Will it be showed in Textbox? in Label…
total amount
Programming
Web Development
17 Years Ago
by ritika_khanna
… 6 persons when button is clicked.and how to display
total
amount on next page please send me this code urgently…
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