Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
double
- Page 1
Why am I getting a 401 Unauthorized error when calling the Management API?
Programming
Web Development
1 Month Ago
by Marcus_8
… similar issue? Could you help me understand what I should
double
-check or fix?
Re: Google Search Console -> Page indexing
Digital Media
Digital Marketing
Search Engine Strategies
2 Months Ago
by ashleydent4u
… aren’t indexed—it’ll help narrow things down. Also,
double
-check your sitemap is submitting all intended URLs and that…
Re: Any jQuery 4 users?
Programming
Web Development
2 Months Ago
by Neil_brown001
… .bind(), so if you're upgrading, you’ll want to
double
-check your codebase for those. The codebase is now fully…
Re: How to make an Iphone App?
Programming
Mobile Development
1 Month Ago
by jonathannweyer
… building something that relies on hardware features like Bluetooth, definitely
double
-check what’s supported, since Apple can be more restrictive…
Re: How much anonymity does a VPN really provide?
Hardware and Software
Information Security
1 Month Ago
by TurisVPN
A VPN helps hide your IP and encrypt your internet, so others (like your ISP) can’t see what you do online. But it doesn’t make you totally anonymous. The VPN company can still see your traffic (if they keep logs). Websites can track you with cookies, and if you log in with your real info, they know who you are. So, a VPN is good for privacy …
Re: How much anonymity does a VPN really provide?
Hardware and Software
Information Security
1 Month Ago
by Liam91
A VPN is a tool that keeps your internet connection safe and private. It stops others from seeing what you do online. But a VPN doesn’t make you completely anonymous. To pick a good VPN, check: -How you pay (Bitcoin is more private than a credit card) -If they keep records of your activity (best if they don’t) -If they share IP addresses …
Re: Why am I getting a 401 Unauthorized error when calling the Management API?
Programming
Web Development
1 Month Ago
by Dani
What management API?
Re: Why am I getting a 401 Unauthorized error when calling the Management API?
Programming
Web Development
1 Month Ago
by Dani
Oh, it looks as if you're referring to auth0, as I see you've also posted [over there](https://community.auth0.com/t/why-am-i-getting-a-401-unauthorized-error-when-calling-the-management-api/185378). It says you've attached a diagram of the request flow but I'm not seeing it.
Re: Why am I getting a 401 Unauthorized error when calling the Management API?
Programming
Web Development
1 Month Ago
by Marcus_8
Yes, I did, but due to some Auth0 guideline, I can't share the link there.
Re: Why am I getting a 401 Unauthorized error when calling the Management API?
Programming
Web Development
1 Month Ago
by Dani
OK, I'm a little confused. You're an SEO guy who linked to a blog article about 401 errors on an SEO firm's website. The link to that article was snipped from your post for being self-promotional in nature. (I assumed you were just trying to get the backlink.) However, you're saying the 401 error is from using the Auth0 API. Can you post your code …
Re: Why am I getting a 401 Unauthorized error when calling the Management API?
Programming
Web Development
1 Month Ago
by Dani
> I feel like the solution might be in that blog It's not. The blog article whose link was snipped has nothing to do with API authorization errors.
Re: How to enable gpedit on Windows 10 & 11
Hardware and Software
Microsoft Windows
1 Month Ago
by AIO_803
Enabling **gpedit.msc** on Windows 10 or 11 (especially Home editions) is useful for gaining more control over system settings. While it’s not officially included in Home versions, there are workarounds—though users should proceed carefully to avoid system issues.
Double to string conversion with sprintf
Programming
Software Development
17 Years Ago
by sreehari.rk
double
b = 3.0000; char s[20]; sprintf(s,"%f&…
Re: Double type problem in C
Programming
Software Development
14 Years Ago
by IsharaComix
Double
variables just don't have that much precision. If you need numbers that are that fine-tuned, you need to look for an "arbitrary/multiple precision" library - something like GMP [url]http://gmplib.org/[/url] Hope this helps.
Re: Double to float on a large scale
Programming
Software Development
17 Years Ago
by scru
Double
precision is more precise than float, and performance really shouldn'…
Re: double????
Programming
Software Development
15 Years Ago
by masijade
… of them to a
double
[code]
double
a = (
double
) 2 / 3; // or
double
b = 2 / (
double
) 3; // or
double
c = (
double
) 2 / (
double
) 3; // or
double
d = 2.0… / 3; // or
double
e = 2 / 3…
double????
Programming
Software Development
15 Years Ago
by girl.java
… class Qustion2 { public static void main (String args[]){
double
x =2/3;
double
y = (3*x*x)-(8*x)+4; JOptionPane.showMessageDialog…
Re: double????
Programming
Software Development
15 Years Ago
by kvprajapati
Read [URL="http://java.sun.com/docs/books/jls/third_edition/html/lexical.html#3.10"]Literals[/URL] and [URL="http://java.sun.com/docs/books/jls/third_edition/html/conversions.html"]Conversions and Promotions.[/URL] [code] ..
double
x=(
double
)2/3; .. [/code]
double
Programming
Software Development
12 Years Ago
by nitin1
can anyone explain me the all precison and exponent, significant bits which
double
can handle ? i am not getting it. wiki says it has 53 bits significant bits and 11 exponent. am a little bit confused. can anyone explain me ? (in their own way) thanks alot. although i have used
double
alot but now , come up with some problem. thanks.
Re: double
Programming
Software Development
12 Years Ago
by nitin1
… ? i mean when i am printing the value of some
double
using compiler,executing code, i am getting only 17 digits… how can i infer from these things the max value
double
can hold? checked by 10/3 and it give me…
Re: double????
Programming
Software Development
15 Years Ago
by girl.java
… occurs. [COLOR="Red"] but when we talking about
double
, it has a higher precision. so 2/3 is valid…
Re: double????
Programming
Software Development
15 Years Ago
by masijade
… in Integer 0. And the Integer 0, automatically converted to
double
is 0.0. Edit: And what do you mean by…
Re: double????
Programming
Software Development
15 Years Ago
by girl.java
ok don't be angry :) i just want to know why thats all!!! i'm student in the first year coz that i'm asking so many questions :( and Unfortunately i didn't get it when i run this program with
double
=2/3 i get the result=4.0 instead of 0 i wanna know why ? :)
Re: double
Programming
Databases
13 Years Ago
by smantscheff
When I test your code, the line [CODE]insert into hh values(27.22); [/CODE]results in the mysql error[ICODE] 1264: Out of range error for column id[/ICODE] You have to define the
double
field with as much decimal places as needed. Change the table definition to [CODE]create table hh (id
double
(5,2)); [/CODE]and it will work.
double...
Community Center
Geeks' Lounge
20 Years Ago
by rex_b
sorry it froze and
double
posted
double
Programming
Databases
13 Years Ago
by bangla
Hi, 1. I create a table in mysql: [CODE]create table hh ( id
double
(3,2) );[/CODE] 2.[CODE][ insert into hh values(27.22) insert into hh values(7.49)[/CODE] 3. [CODE]select * from hh[/CODE] result 9.99 7.49 why i get 9.99 why not 27.22? Thanks.
Re: Double to string conversion with sprintf
Programming
Software Development
17 Years Ago
by Duoas
…; #include <sstream> int main() {
double
b = 3.0000; std::string s; // convert
double
b to string s { std::ostringstream ss…
double operation problem
Programming
Software Development
15 Years Ago
by hassedo
…,int n8,int n9,int n10,
double
**pX1,
double
**pX2,
double
**pX3,
double
**pX4,
double
**pX5,
double
**pX6,
double
**pX7,
double
**pX8,
double
**pX9,
double
**pX10, int ctrrow, int ctrcol…
Re: double operation problem
Programming
Software Development
15 Years Ago
by Dave Sinkula
… think about rewriting that ... thing ... using arrays. But here: [CODE]
double
computation([COLOR="Red"]matrix [/COLOR]k, int mA…,int n8,int n9,int n10,
double
**pX1,
double
**pX2,
double
**pX3,
double
**pX4,
double
**pX5,
double
**pX6,
double
**pX7,
double
**pX8,
double
**pX9,
double
**pX10, int ctrrow, int ctrcol…
double void error need help before turning it in
Programming
Software Development
12 Years Ago
by jason.angeles.75
… the selection"); } public static
double
showKilomters(
double
meters) {
double
kilometers = meters* 0.001; } public static
double
showInches(
double
meters) {
double
inches= meters * 39.37; } public…
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