Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
lies
- Page 1
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by Dani
… many, many times people blaming the bots when the problem
lies
with a syntax or logic error in their robots.txt…
Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’
Community Center
2 Months Ago
by rproffitt
UPDATE: Feb 4, 2025 — Google on Tuesday updated its ethical guidelines around artificial intelligence, removing commitments not to apply the technology to weapons or surveillance.
Re: Are SaaS & Cloud Computing Interchangeable Terms?
Community Center
1 Month Ago
by peol
Cloud computing and SaaS (Software as a Service) are not interchangeable terms. Cloud computing includes IaaS, PaaS, and SaaS services that provide computing resources over the Internet. Essentially, SaaS is a subset of cloud computing where users access software applications online without managing infrastructure.
How to find numbers lies between open and closed interval in c++
Programming
Software Development
15 Years Ago
by Tapas Bose
Hello. I want to find numbers
lies
in between (x, y) and [x, y]. I Googled for this and saw that it can be done using boost library. But I can not understand the synopsis. Please help me.
if char lies between x&y....
Programming
Software Development
14 Years Ago
by dflatt
hi i'm trying to write a program that compares and manipulates certain characters from a string. heres the bit i'm having trouble with. [CODE] char c; if(c <= a && c >= x)//obvious error //do something [/CODE] is there anyway i can get this to check if 'char c'
lies
between 'a' and 'x'?
Re: world famous lies
Community Center
Geeks' Lounge
12 Years Ago
by Reverend Jim
World famous
lies
? Hardly. Try - It's the Jews' fault (Hitler) - There are … reactor under your desk (Reagan) Now *those* are world class
lies
. And, yes, Regan was some piece of work.
Re: world famous lies
Community Center
Geeks' Lounge
12 Years Ago
by ImZick
I think most famous
lies
occur when election days are coming :)
Re: world famous lies
Community Center
Geeks' Lounge
12 Years Ago
by mike_2000_17
Here are a few great
lies
: "God exists." (every power-hungry "religious" …
Re: world famous lies
Community Center
Geeks' Lounge
12 Years Ago
by mitrmkar
> World famous
lies
? Hardly. Try > Trickle down economics works (Reagan) Here's a picture to accompany your claim .. [some Friday humour from Zerohedge ..](http://www.zerohedge.com/news/friday-humor-trickle-down)
Re: world famous lies
Community Center
Geeks' Lounge
12 Years Ago
by Agilemind
…;systemic criminal activity> in my company/department. anti-science
lies
Very small doses or low energy radiation will make you…
Re: world famous lies
Community Center
Geeks' Lounge
12 Years Ago
by diafol
… on with our lives and tell us a pack of
lies
. All right-minded folk know that we live on a…
Re: world famous lies
Community Center
Geeks' Lounge
12 Years Ago
by <M/>
One of the most famous
lies
in history was the case of the Trojan Horse
Re: How to find numbers lies between open and closed interval in c++
Programming
Software Development
15 Years Ago
by Nick Evan
You didn't tell us which function you want to use, so we can't tell you the syntax.
Re: How to find numbers lies between open and closed interval in c++
Programming
Software Development
15 Years Ago
by Tapas Bose
[QUOTE=Nick Evan;1161621]You didn't tell us which function you want to use, so we can't tell you the syntax.[/QUOTE] I have the interval (-105, -98.87), the integers lying between this interval are -104, -103, -102, -101, -100, -99. This can be done using for loop. But I want to do this using boost.
Re: if char lies between x&y....
Programming
Software Development
14 Years Ago
by finito
[url]http://www.cplusplus.com/reference/string/string/compare/[/url] what you need to do is use [CODE].compare[/CODE] enjoy
Re: if char lies between x&y....
Programming
Software Development
14 Years Ago
by mbulow
Hi dflatt :-) In your code you are comparing the value of variable c to the values of variables a and x. Those variables probably don't even exist. To compare the value of c to the characters a and x you write it like this: [CODE] if(c <= 'a' && c >= 'x') [/CODE] BTW: Even if you fix this bug, the if-statement will never …
Re: if char lies between x&y....
Programming
Software Development
14 Years Ago
by dflatt
mbulow thanks that worked perfectly i'd already tried that but didn't notice my error thanks for pointing that out
Re: Is everyone an online victim?
Hardware and Software
Information Security
12 Years Ago
by sbesch
… Disraeli's comment about the power of statistics to tell
lies
is as relevant today as it was in the 19th…
Re: one letter
Community Center
Geeks' Lounge
17 Years Ago
by magneto
lies
Re: one letter
Community Center
Geeks' Lounge
17 Years Ago
by Anonymous86
lies
Re: The rhyme game
Community Center
Geeks' Lounge
13 Years Ago
by ChengYi
Lies
Re: The rhyme game
Community Center
Geeks' Lounge
13 Years Ago
by maydhyam
lies
java program
Programming
Software Development
11 Years Ago
by 2384443
…0) { System.out.println("The point
lies
on 4th quadrant"); } else if(…0) { System.out.println("The point
lies
on x-axis"); } else if(x…0) { System.out.println("The point
lies
on y-axis"); } else if(x…
help mi plis 6 dropdowns linked php mysql JavaScript
Programming
Web Development
14 Years Ago
by s1sofiane
Bonjour, Je viens vers vous car je ne sais pas du tout comment m'y prendre. Je cherche à faire 6 listes déroulantes liées php JavaScript mysql mai 1 listes déroulantes liées 2 listes déroulantes ca ce ok [COLOR="red"][B]3 listes déroulantes liées 1 listes déroulantes:'(:'(:'([/B][/COLOR] 3 listes déroulantes liées liées 4 …
Structured Data: Nesting Triangles(using structs and doing some geometric c
Programming
Software Development
11 Years Ago
by Alex_13
…return false; } return true; } /** * Check to see if one triangle
lies
entirely within the * interior of the other. * * @param outer * …@param inner * @return true iff inner
lies
entirely within the interior of outer */ bool contains (Triangle outer…
Re: need help with this "method" problem
Programming
Software Development
17 Years Ago
by 9107you
… { String[] song = { "My Bonnie
lies
over the ocean", "My Bonnie
lies
over the sea", "My Bonnie… /> String[] song = {<br /> "My Bonnie
lies
over the ocean", <br /> "My Bonnie… the sea", <br /> "My Bonnie
lies
over the ocean", <br /> "Oh …
need help with this "method" problem
Programming
Software Development
17 Years Ago
by 9107you
… series of methods, output the popular song "My Bonnie
Lies
Over the Ocean". However, instead of using "Bonnie… void main (String[] args) { System.out.println ("My Bonnie
lies
over the ocean"); } // end of main method public static…
how do I do this? 1 = ' is on the x-axis'; (C++)
Programming
Software Development
20 Years Ago
by kpfannenstein
…coordinates and report which // quadrant, or axis the coordinates
lies
in or on. // It will also display the … double mag1, char loc1) { cout <<"The point
lies
" << loc1 << "." &…char loc2, double dist) { cout <<"The point
lies
" << loc2 << "." …
Re: need help with this "method" problem
Programming
Software Development
17 Years Ago
by javaAddict
…;br /> String[] song = {<br /> "My Bonnie
lies
over the ocean", <br /> "My Bonnie… the sea", <br /> "My Bonnie
lies
over the ocean", <br /> "Oh bring …
80x86 Word Memory Access
Programming
Software Development
15 Years Ago
by NotNull
…. When the address of the first byte of a word
lies
at an odd address the processor must make two memory… if the address of the first byte of the word
lies
at an even address the processor can pull in both… fetch. If the first word of an array of words
lies
at an even address so will every other word in…
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