|
With all of the advice being requested, I think that we, well, just me, need to make up a story and get advice.
Come on GCers, you know you are good advice givers!
So, I need advice on if I should rush, I mean go through recruitment because I love wearing...
Started by BAckbOwlsgIrl on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at greekchat):
I accidentally bumped the uglies with my big's boytoy.
BUSTED.
Sorority girls don't go to grocery stores.
|
|
I am working on SVN, and trying to commit some of the changes I made. But I got an error message telling me that
delete --force C:/workspace/Project/src/main/java/com/test/ml Bogus filename svn: 'C:\workspace\Project\src\main\java\com\test\ml' does not...
Started by flyingfromchina on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
What happens when you try a relative pathname? For example, if you're in the C:\workspace\project directory,
svn delete src/main/java/com/test/ml
If Greg's answer ... .
Subversion does not generally support absolute pathnames in operations such as delete .
|
|
Suppose you are designing a PC game that keeps track of high scores. In addition to keeping local scores, a global high score server is set up that is accessed by the game over the internet. Players should be able to submit their high scores to the global...
Started by Mike Daniels on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I have never seen one that sends a replay, though of course... .
I have seen a few people include other sanity checks like time elapsed, or enemies remaining .
I have seen many people try to obfuscate the encryption key .
To my knowledge, this is unsolvable.
|
Ask your Facebook Friends
|
Son is being abused and given "bogus cases" by the Co's at Coffield. Is there anyone else having these problems?
Started by mlt576 on
, 25 posts
by 12 people.
Answer Snippets (Read the full thread at prisontalk):
Their guards don't lie...bogus stuff...and we cannot do anything about it..Calls to that unit do nothing, being retaliated against, property taken and never returned, bogus cases given, poor medical, etc.
|
|
I built a VM with an unused XP license I have using an unattend.txt process.
Is there a way to remove the warning message saying my install may not be genuine, and I need to "Get Genuine" from MS?
Started by warren on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
I've not seen WGA give bogus "not genuine" messages, and contacting Microsoft is the best.
It's only bogus if you've honestly done nothing to break.
Or contact Microsoft to sort out the the issue.
|
|
I have a fairly simple ASP.NET application, set up as a Web Application Project in Visual Studio. There is one particular aspx file called "invoice.aspx" which IIS refuses to serve. The URL I am using is definitely correct, and other aspx pages from this...
Started by Bryan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you tried renaming the file and trying to access that?
Also, use notepad to... .
Sending on lots of data, long querystring or otherwise making a request that the built-in IIS7 urlscan might block? If IIS7 blocks a request, it'll send out a 404 error .
|
|
Hi.
OK, I am not that experienced with SQL 2005 error handling and am learning my way around try/catch statements.
I have written the below procedure but no matter what I pass to it, there is never any data in my ErrorLog table. I have passed all INT ...
Started by Code Sherpa on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Are you expecting the "Return" statements to be "Caught"? That isn't going to happen...they'll just return from the function... .
It has been awhile since I've done a lot with SQL Error handling but I don't see any place that is likely to generate an error .
|
|
I'm using a JavaScript library called phpjs The goal is to create functions that mimic how PHP handles them.
Here's one function in particular: http://phpjs.org/functions/is_float:442
I've written a couple of test-cases and all is as expected. However...
Started by WebDevHobo on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If, by chance, you are trying to express a value using scientific notation... .
If you are trying to express a hexidecimal value, the proper notation is 0x16 ( 22 in base 10) and decimals are not allowed .
16.0x is not a valid numeric expression in JavaScript.
|
|
The top of my web.xml file looks like this:
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http...
Started by Brian Deacon on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Please put it under <?xml ...> :
<!DOCTYPE ??? PUBLIC "-//W3C//DTD XHTML... .
Perhaps try:
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd
Instead of:
http://java.sun.com/xml/ns/j2ee/web-app_2_5.xsd
Add this <!DOCTYPE ...> to your xml file .
|
|
I'm getting weird 404 errors on my site for the following URL:
GET /%27%20+%20item.icon%20+%20%27 HTTP/1.1
I've got some corresponding code in my HTML file:
<script type="text/javascript"> function foo(item) { return '<img src="' + item.icon ...
Started by Tom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try to put your code in a CDATA section like this:
<script type="text/javascript"> //<![CDATA[ function foo(item) { return '<img src="' + item.icon + '">' : ''; } //]]> </script>
See ... .
Firefox is interpreting your code as XHTML.
|