887 Topics
![]() | |
I started learning about backtracking in college and was asked to solve the famous 8 queens problem. I know there are many solutions out there for this, but I would like to get there by myself. However, I am kind of stuck and in need for some guidance here. The … | |
I've look in the C++ standard and, when listing list of compound stuff, it does not mention anything like "pointer to [B]data [/B]member of an instantiated class". So the question is: [CODE]struct test{ int a; double d; ..... //more complicated stuff here to make it a NON-pod structure) .... }; … | |
Hi, I am attending online masters cyber security and hold MCSE. Past MCNE and bachelors in Paralegal. Love all things legal, strong like and experience in tech - admin to PM for intl enterprises - want to work in cyber security possibly as legal rep in IT for law firms. … | |
I'm re-designing a database that will facilitate registration at various events. One column in the event_person table describes the current status of the registrant. The forces that apply here are: - Various events may have different sets of status values - We may ship this as a framework to various … | |
Legal firm [URL="http://www.tbilaw.co.uk/"]Tilly, Baker and Irvine (TBI)[/URL] has agreed to stop sending letters to Internet users when they believe they may be infringing copyright. The ironic thing is that this is the same week in which UK law changed to allow the Government to cut users off for precisely the … | |
Hey guys, Got hit by a virus earlier tonight, and now I'm at a public computer looking up solutions. I remember using daniweb many years past for some general computer talk so I thought it'd be a good place to turn to and try to beg for some help... I … | |
Simply put, in Firefox, the ajax links work fine. They're targeting a div and in Firefox everything is fine, but in IE, it mucks up. I do not see any links at all. Here's my javascript code. [CODE]<script type="text/javascript"> /*********************************************** * Dynamic Ajax Content- © Dynamic Drive DHTML code library … | |
See SCO keep going. Stop SCO Stop. Seriously Stop SCO Stop. In a seriously OMG moment yesterday, [URL="http://www.sco.com"]SCO[/URL] lost another battle in its UNIX ownership claims. The Utah jury decided that [URL="http://www.novell.com"]Novell[/URL], in fact, did not transfer the UNIX copyrights to SCO when they sold UNIXWare to them years before. … | |
Hello all, Firstly let me say yes, i have searched the forums, secondly No! i am not asking for you to do my homework, i realize how much you all hate that =P I am here for some guidance, i have exhausted my researching capabilities and am at the point … | |
Now that [URL="http://www.microsoft.com"]Microsoft[/URL]'s big operating systems, Windows 7 and Windows Server 2008, are on store shelves, is it time again for them to pick up the legal sledgehammer and go after Linux? I think the evidence for it is mounting. Microsoft has signed a deal with [URL="http://www.novell.com"]Novell[/URL], penned an agreement … | |
This is just out of curiosity! Does anyone know what is the maximum number of characters that a line of code can have? EDIT: Added more details. Is it possibly possible to make two lines become one? .... This seems pretty odd, I dont know how to explain it, but … | |
[CODE]#include<stdio.h> #define LEGAL 1 void count(char array[]); int main() { char line[100]; printf("Hey user enter some lines : "); scanf("%s",line); count(line); return(0); } /* FUNCTION count */ void count(char array[]) { char c; int x,z=0; /* Wat to do to count \n and \t and blanks */ for(x = 0 … | |
It's not exactly news that the relationship between Google and China has soured over the last month or two and it looks as though [URL="http://www.macworld.com/article/147096/2010/03/china_google.html?lsrc=rss_main"]Google may quit China soon[/URL] leaving the vastly lucrative Chinese market to Microsoft and others. What's not clear is what the implications will be for the … | |
anyone can do case statment for stack , queue and linked in one program plz ex: void main () do { cout << "1 - stack"; cout << "2 -queue"; cout << "3 - linked list "; cout << "4 - stack with linked list"; cout << "5 -queue ....... … | |
Hi Jobs available TOP MNC:- Job Role :---------------------------------- Analyst - Information Security Responsibilities :----------------------------------------- • Handle security incidents • Devise solutions for information security issues • Test applications, systems, and network configurations for compliance with defined security standards • Test effectiveness of information security defences • Test standard configurations for … | |
Just bought Windows Server 2003 on Ebay. The seller now tells me that it is an OEM version and asks if I would want a refund. What would be the difference? My intention is to install it on VM Ware and possibly try to virtualize it in the future. What … | |
Okay, so I have about 6 GB of music on my iPod. I don't want to go through and copy everysingle file and rename it manually, so I am making a python script to do it for me. I would just like to have some feedback on my code, make … | |
You might be forgiven for thinking that Activision would be more than just a little pleased with game developers Infinity Ward which is responsible for the Call of Duty franchise, and which Activision acquired back in 2003. Forgiven, but wrong. Modern Warfare 2 is more than a game, it's [URL="http://www.daniweb.com/news/story252883.html"]the … | |
Federal magistrate Barry Garber has ruled that a lawsuit can proceed for what a student said was a violation of her First Amendment rights after she was suspended for setting up a Facebook page that criticized her teacher. Katherine Evans was a junior in Pembroke Pines Charter High School in … | |
Those of us who still read newspapers have seen them -- the pages and pages of teeny type describing changes in zoning, foreclosure notices, and all sorts of other arcane information. Most of us just turn the page. But in publishing, it's big money, and newspapers that have already lost … | |
Three Google executives have been found guilty and given six month suspended sentences in a case revolving around the posting of a video to YouTube which shows a teenager with Down's Syndrome being bullied. According to the [URL="http://news.bbc.co.uk/1/hi/technology/8533695.stm"]BBC[/URL] Google itself is none too happy with the verdict, quoting the Chief … | |
Who could forget the saga of sex.com, the domain that just continues to keep giving? Indeed, it has had such a history that books have been written about it and kept many a journalist in beers for good measure. The rights to ownership of the sex.com domain were at the … | |
I would like to use <H1> and <H2> tags to emphasize important keywords for SEO purposes. Is it XHTML-transitional legal to enclose a <div class="blah"> tag inside an <h1> tag? | |
Hello, I am try to compile this code using gcc in ubuntu. I get the error 'btree.cc:(.text+0x55a): undefined reference to `std::cout' '. I thought if i added using namespace std; it would start working but i am still getting the same error. Any suggestion on how i can fix it. … | |
Hi. I have some beginner questions related to C# in general, as well as my first home assignment in C#. When the .exe file is opened, a window pops up and asks user a question. He has 2 answer options (2 buttons). The task is - make it impossible for … | |
Hey, I've been working on my movement and controls and I've got a solid "DoInput(WPARAM wParam)" method built up. When I try to call it from WndProc like this: [CODE] switch (message) { case WM_CLOSE: { g_bDone = true; PostQuitMessage( 0 ); } break; case WM_KEYDOWN: [B][COLOR="Red"]DoInput(wParam);[/COLOR][/B] default: return DefWindowProc(hWnd, … | |
I wish I had gotten this story before the [URL="http://www.sfgate.com/cgi-bin/blogs/techchron/detail?entry_id=57438&o=3>a=commentslistpos#commentslistpos"]San Fransisco Chronicle[/URL] or [URL="http://news.cnet.com/8301-17852_3-10455573-71.html?tag=rtcol;pop"]Cnet,[/URL] but the truth is they got it before me. A lady in Florida got a team of lawyers to sue Google, the Search Engine firm in San Fransisco, CA for breaching her privacy with Google Buzz. … | |
I was trying to add set cookie to this, which works (set cookie to expire 1 year from set date), but resets the cookie value each time. I want to check if someone has already entered their age and if so, direct them to the appropriate response page. i.e. - … | |
YouTube is coming under criticism for continuing to keep online a ten-minute interview with Scott Roeder, who was convicted after a 37-minute deliberation of first-degree murder for killing Dr. George Tiller, whose Kansas clinic performed late-term abortions. The [URL="http://www.youtube.com/watch?v=JkIw_fqmC1k"]interview[/URL] is by phone but includes a scroll with the text. It … | |
Hello Friends I have a php script. I have checked for copyright of the same but couldn't find any legal information. I am planning to make drastic changes to the script to make a new one. So Can I get the copyright rights for the same? ![]() | |
Are their people willing to help testing/contributing to a python project? (if this is not a 'legal' subject, feel free to delete it; I wasn't sure) | |
Hello-- I've been writing some code in C++ to test the [I]tffs-lib[/I] library, which is written in C. The library provides functions for directly accessing a FAT file system from within a program. Although most modern operating systems have drivers for accessing the FAT filesystem on SD cards, I am … | |
Hi New to this forum. Looking for advice. I'm a doctor working in a hospital and know little if anything about programming. Out of necessity I learned just what I had to to write a VB program for some specialized monthly notes that are otherwise very time consuming to write. … | |
Legislators around the country are scrambling to look at their states' laws about lewd messages to minors after the Massachusetts Supreme Judicial Court overturned a conviction, saying state law didn't support it because it didn't specify online messaging. “The online conversations in this case, as they were not written with … | |
Hi every one I have been given a task to investigate and come up with an integrated all-in-one mobile student information system where students can be informed of class changes by text, and inform their lecturer that they will be absent. Question 1 what would be the necessary hardware and … | |
As increasing numbers of states are running into budgetary problems, some of them are starting to look at taxing Internet sales. When the Internet first started becoming a commercial entity, Internet sales were exempted from sales taxes in order to help encourage new commercial companies to form on the Internet. … | |
Online legal experts are salivating over cookies. Specifically, they are leaping to comment on the legal precedents involved over a lawsuit by Dr. Sanford Siegal, creator of the "[URL="http://www.cookiediet.com/"]Cookie Diet[/URL]," and his company, Dr. Siegal's Direct Nutritionals, LLC, against celebrity, model, socialite, and actress [URL="http://kimkardashian.celebuzz.com/"]Kim Kardashian[/URL] over what they allege … | |
While waiting for [URL="http://www.daniweb.com/news/post977515.html"]federal legislation[/URL] legalizing online gambling -- a vote that could happen as early as [URL="http://www.pokerheadline.com/2010/01/efforts-are-taken-by-poker-players-alliance-to-regulate-online-gambling/"]next month[/URL] -- individual states are looking to legalize online gambling as well. States such as [URL="http://www.pressofatlanticcity.com/news/breaking/article_8a288b86-04b0-11df-8663-001cc4c002e0.html?mode=story"]New Jersey[/URL], [URL="http://www.egrmagazine.com/news/263017/california-poker-bill-introduced-next-year-promises-new-pva-chief.thtml"]California[/URL], and [URL="http://jacksonville.com/news/florida/2010-01-20/story/florida_legislature_could_take_a_look_at_regulating_internet_poker"]Florida[/URL] are considering legislation that would permit online gambling within their states -- … | |
Hi all, I'm in the final stages of creating a suite of shareware keylogging utilities designed primarily for parents to monitor certain aspects of their childs online activities. Now, my question is not regarding C++, but another aspect of software development, or rather, distribution. I've never released something like this … | |
I ask because according to the latest data, there would seem to be an increasing number of working pirates around these days. The trouble is that they can be hard to spot as they do not tend to go for the Captain Jack look nor sport a long beard, come … | |
Google has signalled, in the strongest possible manner, that it will be pulling out of China unless something is done to address censorship of searches. It has also accused China of launching a "highly sophisticated and targeted attack" on the Google corporate infrastructure, along with another twenty large companies from … | |
Hello, if I start to distribute some software I have written under a copyright, using a free software license, I would like to know what do the dates of the copyright stand for. If I say (c) 2009-2010 Vernon Swanepoel, what does it mean that I did on those dates. … | |
So, I've looked everwhere and gotten really frustrated... so i came here... and the search feature showed me a bunch of spam... so how do i throttle bandwith in server 2009? i have a 100mbps connection and i dont want someone coming along and dossing me/ getting files from my … | |
Hi guys, I've got a data scraping script that is not picking few html elements/fields that I need. I can't get the following elements: product title price and specification It could be that the xpath is not correct since the website has a lots of div/tables without any id or … | |
Hey, I know that Javascript can disable keys on the keyboard and even the right mouse click. What I want to know is, is it internationally legal for a Website to render commands on the keyboard and or mouse useless while using a Website. I'd really appreciate any feedback and … | |
[CODE]$filter = $HTTP_POST_VARS['att']; $result = mysql_query("SELECT * FROM postingbob WHERE category ='{$filter}' ")or die(mysql_error()); [/CODE] That's my php code which basically takes values from 'att' in my html form [CODE]<div class="vx_two" style="float:right"> <select id="two" title="Select a category" class="pinkselect" name="att"> <option value="Addictions">Sort By Category</option> <option value="Addictions">Default</option> <option value="Addictions">Addictions</option> <option value="Animals">Animals</option> <option … | |
It is the end of the year and the holiday is coming soon. Lots of new DVD movies and video movies will be produced at this time every year. For convenience, all of you want to put them on your own mdia or portable players (It is legal). [b]Tipard Total … | |
Hello to you all , I am required to write a program which gets a Math Expression (without checking it is good) and put in Stack only the Brackets . Implementation of Stack is One-Way Linked List Only. Examples for Good/Bad Expressions : (a*{b+c}-4/x +[e-5]) - GOOD (5+} - BAD … | |
Here's the story... My room mate decided to download an [I]illegal[/I] torrent of osx 10.5 (my Mac was running 10.4.9 just fine) and tried to install it and got frustrated. He found a web tutorial on how to back up your drive using the Disk Utility restore feature. He "figured" … | |
So, some hint for Windows7 buyers. To use the cheaper Upgrade Version of Win7 you need to have an Windows Vista or XP License... Lets assume you have one in your wardrobe- to be legal....you can also upgrade from the free of charge available Windows7 Release Canditate. My windows 7 … |
The End.