437
votes
592answers
72k views
Great programming quotes
There are a lot of great programming quotes out there. Which do you like?
Today (Sept 12, 2008) I heard a new one from a friend, Lars-Gunnar, he said "Gud finns i Emacs" (in swedi …
2
votes
2answers
62 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 …
1
vote
3answers
55 views
Forwarding command line arguments to a process in Python
I'm using a crude IDE (Microchip MPLAB) with C30 toolchain on Windows XP.
The C compiler has a very noisy output that I'm unable to control, and it's very hard to spot actual warni …
1
vote
2answers
16 views
google finance tools on my website?
i am on the process of building a website execlusively for trading purposes. including live quotes and level 2 quotes. charts. user protofollio with automatic updates. news and so …
2
votes
5answers
115 views
What is a Good Programming Related Senior Quote? [closed]
Although I expect this question to last for no more than 30 seconds its worth a try.
What would be a good programming related senior quote that would be subtle enough so that I do …
0
votes
4answers
33 views
Need help modifying javascript snippet
Google optimizer includes the following snippet as part of their conversion code. Unfortunately, the CMS we're using automatically converts the single quotes to ASCII (& #39;) …
0
votes
1answer
56 views
jQuery double quotes
hi there, i have this form:
<form name="myForm" action="#">
<input type="text" name="firstField" />
<input type="text" name="secondField" />
<i …
33
votes
44answers
2k 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 Wad …
28
votes
73answers
2k views
Nuggets of wisdom?
There are many quotes from famous computer scientists that have become the wisdom that guides our profession. For example:
"Premature optimization is the root of
all evil in …
1
vote
2answers
99 views
Most readable way to assign a double quote to a string in C#
Does anyone else think that escaping characters in very short strings make them not very readable? I noticed I was using s = "\"" in my code to assign a double quote a string, but …
3
votes
1answer
37 views
gVIM on Windows: execute buffer and paths with spaces
Hello.
In gVim for windows it's possible to execute current buffer via :!% command. But, unfortunately, the buffer file name is supplied to cmd.exe without quotes, so if file path …
1
vote
2answers
137 views
Literal quotes in flags for a command in a bash script
I'm writing a Bash script in which I am running a perl script which requires flags that have double quotes in them. Running the script normally, you would run
$ perl script.pl -fl …
0
votes
4answers
65 views
Regex line by line: How to match triple quotes but not double quotes
I need to check to see if a string of many words / letters / etc, contains only 1 set of triple double-quotes (i.e. """), but can also contain single double-quotes (") and double d …
0
votes
5answers
140 views
how to get data between quotes in java ?
I have this lines of text the number of quotes could change like:
Here just one "comillas"
But I also could have more "mas" values in "comillas" and that "is" the "trick"
I was …
0
votes
2answers
107 views
PHP: POST data + apostrophes
Imagine this:
Form data contains an apostrophe
Form gets submitted
POST data gets serialized
POST data is written to database
Database data is retrieved
Data …
