Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

126
votes
3answers
2k views

What do single quotes do in C++ when used on multiple characters?

I'm curious about this code: cout << 'test'; // Note the single quotes. gives me an output of 1952805748. My question: Is the output an address in memory or something?
72
votes
3answers
12k views

A monad is just a monoid in the category of endofunctors, what's the problem? [closed]

Who first said A monad is just a monoid in the category of endofunctors, what's the problem? and on a less important note is this true and if so could you give an explanation (hopefully one ...
56
votes
51answers
4k views

Laws of Computer Science and Programming

We have Amdahl's law that basically states that if your program is 10% sequential you can get a maximum 10x performance boost by parallelizing your application. Another one is Wadler's law which ...
39
votes
7answers
12k views

Help me remember a quote from Alan Kay

Alan Kay was quoted several years ago to the effect that there had been only three new things in software in the preceding 20 years (effectively the lifespan of PCs). One of them was Spreadsheets. ...
18
votes
10answers
3k views

Help me understand this Brian Kernighan quote

"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." --Brian Kernighan ...
15
votes
4answers
16k views

How to run exe in powershell with parameters with spaces and quotes

How do you run this command in powershell: C:\Program Files\IIS\Microsoft Web Deploy\msdeploy.exe -verb:sync -source:dbfullsql="Data Source=mysource;Integrated Security=false;User ...
14
votes
4answers
3k views

Difference between single quotes and double quotes in Javascript

I know that in PHP the only difference between double quotes and single quotes is the interpretation of variable inside a string. Well, in jQuery Javascript, I often see doublequotes used in jQuery ...
14
votes
7answers
1k views

Converting ″Straight Quotes″ to “Curly Quotes”

I have an application which uses a Javascript-based rules engine. I need a way to convert regular straight quotes into curly (or smart) quotes. It’d be easy to just do a string.replace for ["], only ...
11
votes
9answers
21k views

fetch stock quotes from google finance, yahoo finance or the exchange itself

I am building a web based trading system where buy and sell signals would be generated by reading quotes from either Yahoo finance, google finance or the exchange(NSE of India) itself.My first ...
10
votes
5answers
3k views

Getting ’ instead of an apostrophe(') in PHP

I'v tried converting the text to or from utf8… didn't seem to help Im getting: "It’s Getting the Best of Me" It should be: "It’s Getting the Best of Me" Im getting this data from a url -> ...
10
votes
7answers
14k views

Javascript escape quotes

This is so stupid, but I can NOT figure this one out. I'm outputting values from a database (it isn't really open to public entry, but it is open to entry by a user at the company -- meaning, I'm not ...
10
votes
1answer
2k views

Properly handling spaces and quotes in bash completion

What is the correct/best way of handling spaces and quotes in bash completion? Here’s a simple example. I have a command called words (e.g., a dictionary lookup program) that takes various words as ...
10
votes
5answers
5k views

How do you strip quotes out of an ECHO'ed string in a Windows batch file?

I have a Windows batch file I'm creating, but I have to ECHO a large complex string, so I'm having to put double quotes on either end. The problem is that the quotes are also being ECHOed to the file ...
10
votes
6answers
11k views

How can i parse a comma delimited string into a list (caveat)?

I need to be able to take a string like: '''foo, bar, "one, two", three four''' into: ['foo', 'bar', 'one, two', 'three four'] I have an feeling (with hints from #python) that the solution is ...
9
votes
5answers
1k views

JavaScript HERE-doc or other large-quoting mechanism?

Is there a convenient way to quote a large block of HTML that has both single and double quotes in JavaScript? Is there anything like a HERE-doc <<EOF, a multi-quote character """, or custom ...
9
votes
13answers
3k views

Are quotes around hash keys a good practice in Perl?

Is it a good idea to quote keys when using a hash in Perl? I am working on an extremely large legacy Perl code base and trying to adopt a lot of the best practices suggested by Damian Conway in Perl ...
8
votes
4answers
3k views

How to escape double quotes in title attribute

I am trying to use a string that contains double quotes in the title attribute of an anchor. So far I tried these: <a href=".." title="Some \"text\"">Some text</a> <!-- title looks ...
8
votes
9answers
6k views

Regex Quoted String with Escaped Quotes in C#

I'm trying to find all of the quoted text on a single line. Example: "Some Text", and "Some more Text" and "Even more text about \"this text\"" I need to get: "Some Text" "Some more Text" "Even ...
8
votes
6answers
5k views

Stripping single and double quotes in a string using bash / standard Linux commands only

I'm looking for something that will translate a string as follows, using only bash / standard Linux commands: Single-quotes surrounding a string should be removed Double-quotes surrounding a string ...
8
votes
2answers
13k views

Escaping Double Quotes in Batch Script

How would I go about replacing all of the double quotes in my batch file's parameters with escaped double quotes? This is my current batch file, which expands all of its command line parameters inside ...
7
votes
4answers
472 views

Why are some object-literal properties quoted and others not?

I see this all the time: object literals declared such that some keys are surrounded with quotes and others are not. An example from jQuery 1.4.2: jQuery.props = { "for": "htmlFor", "class": ...
7
votes
3answers
1k views

MySQL choking on curly (smart) quotes

I'm inserting some data into a database from a form. I'm using addslashes to escape the text (have also tried mysql_real_escape_string with the same result). Regular quotes are escaped, but some ...
7
votes
2answers
2k views

Who wrote this programing saying? “Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.”

Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. I found this at somebody's blog, and it introduces as Rick Osborne's. But ...
7
votes
7answers
2k views

What's the accepted way of storing quoted data in XML?

What's the accepted way of storing quoted data in XML? For example, for a node, which is correct? (a) <name>Jesse "The Body" Ventura</name> (b) <name>Jesse \"The Body\" ...
7
votes
3answers
5k views

What's the easiest way to add a quote box to mediawiki?

I installed mediawiki on my server as my personal knowledge base. Sometimes I copy some stuff from Web and paste to my wiki - such as tips & tricks from somebody's blog. How do I make the copied ...
7
votes
6answers
6k views

Triple Quotes? How do I delimit a databound Javascript string parameter in ASP.NET?

How do I delimit a Javascript databound string parameter in an anchor OnClick event? I have an anchor tag in an ASP.NET Repeater control. The OnClick event of the anchor contains a call to a ...
6
votes
4answers
342 views

How to enter quotes in a String?

I want to initialize a String in Java, but that string needs to include quotes; for example: "ROM" I tried doing String value = " "ROM" ";, but that doesn't work. How can I include "s within a ...
6
votes
2answers
823 views

python equivalent to perl's qw()

I do this a lot in Perl: printf "%8s %8s %8s\n", qw(date price ret); However, the best I can come up with in Python is print '%8s %8s %8s' % (tuple("date price ret".split())) I'm just wondering ...
6
votes
4answers
11k views

How do you replace double quotes with a blank space in Java?

For example: "I don't like these "double" quotes" and I want the output to be I don't like these double quotes
6
votes
2answers
375 views

Should I use php quote escapes for single quotes or use double quotes in arrays?

I realized that I can have problems with single quotes in php arrays: <?php $lang = array( 'tagline' => 'Let's start your project', "h1" => "About Me" ); ?> So I changed it to ...
6
votes
4answers
696 views

Is there any C SQLite API for quoting/escaping the name of a table?

It's impossible to sqlite3_bind_text a table name because sqlite3_prepare_v2 fails to prepare a statement such as: SELECT * FROM ? ; I presume the table name is needed to parse the statement, so ...
6
votes
2answers
1k views

Need regex to parse keyword='value' with single or double quotes

I'm having trouble writing a regular expression (suitable for PHP's preg_match()) that will parse keyword='value' pairs regardless of whether the <value> string is enclosed in single or double ...
6
votes
7answers
7k views

Remove quotes from named environement variables in Windows scripts

I want to store a URL prefix in an Windows environment variable. The ampersands in the query string makes this troublesome though. For example: I have a URL prefix of ...
6
votes
6answers
2k views

Is there any difference between “string” and 'string' in Python?

In PHP, a string enclosed in "double quotes" will be parsed for variables to replace whereas a string enclosed in 'single quotes' will not. In Python, does this also apply?
5
votes
1answer
209 views

When to use triple single quotes instead of triple double quotes

Learn Python the hard way, exercise 10.2: tabby_cat = "\tI'm tabbed in." persian_cat = "I'm split\non a line." backslash_cat = "I'm \\ a \\ cat." fat_cat = """ I'll do a list: \t* Cat food \t* ...
5
votes
2answers
158 views

Difference between single and double quotes in bash

In Bash shell scripting, what is the difference between single quotes ('') and double quotes ("")?
5
votes
3answers
8k views

Convert XmlDocument to String

Here is how I'm currently converting XMLDocument to String StringWriter stringWriter = new StringWriter(); XmlTextWriter xmlTextWriter = new XmlTextWriter(stringWriter); ...
5
votes
1answer
320 views

Are Single Quotes Valid in a Doctype?

As stated in this question, single quotes in html has either become more popular or we have begun to notice them more often. Regardless, I have a related question. The HTML 4.01 Strict doctype as ...
5
votes
2answers
395 views

Does Java have the '@' character to escape string quotes?

My string has double quotes in it, in C# I would do: string blah = @"this is my ""text"; how would I do that in Java?
5
votes
4answers
3k views

What is the difference between single and double quotes in SQL?

What is the difference between single quotes and double quotes in SQL?
5
votes
5answers
9k views

Dealing with quotes in Windows batch scripts

In a Windows batch file, when you do the following: set myvar="c:\my music & videos" the variable myvar is stored with the quotes included. Honestly I find that very stupid. The quotes are ...
5
votes
6answers
11k views

Regex for quoted string with escaping quotes

How do I get the substring " It's big \"problem " using a regex? s = ' function(){ return " Is big \"problem "; }';
5
votes
12answers
2k views

How would you explain binary to your grandmother? [closed]

I recently bought a shirt with this great quote on "There are 10 types of people in the world, those who can read binary, and those who can't." Now I find myself having to explain it to ...
4
votes
2answers
159 views

How to handle closing parenthesis in path names in a for loop?

I have a long path name to a program I must run in a for /f loop, which includes a closing parenthesis ")", and from which I need to parse the output: for /f "tokens=1" %%G in ('"C:\Documents and ...
4
votes
2answers
173 views

Parsing quotes in R: Quantmod application

I'm trying to create function that provides historical volatility after getting symbol from Yahoo. However, when I pass output to volatility function it doesn't like it; The Get variable gets assigned ...
4
votes
4answers
347 views

Perl command line: single vs. double quotes for directory arguments

I'm having trouble understanding command argument quotations for perl in Windows. Using the following program: use strict; use warnings; use File::Find; use File::Copy; my $dir = shift; die 'Usage: ...
4
votes
3answers
180 views

Mathematica: exporting to a variable path

this is tricky. Once the path to export data in Mathematica is under quotes, how can I insert a variable as part of the path? In other words, I'm inside a loop that increments VAL and want to export ...
4
votes
2answers
68 views

Time quotes for learning JavaScript

I'm interested in helping a friend out this summer with some JavaScript trouble he is having on his website. The trouble being specifically in regards to: technical difficulties with the the ...
4
votes
2answers
117 views

Why do the single quotes in this SQL query affect the calculations?

SELECT COUNT(*) FROM planets WHERE ROUND(SQRT(POWER(('71' - coords_x), 2) + POWER(('97' - coords_y), 2))) <= 17 ==> 51 SELECT COUNT(*) FROM planets WHERE ROUND(SQRT(POWER((71 - ...
4
votes
8answers
1k views

Single quotes or double quotes for variable concatenation?

Is it better to concatenate a variable (say, $name) into an existing string (say, $string) like this: $string='Hi, my name is '.$name or to embed the variable in the string like this: $string="Hi, ...

1 2 3 4 5 9