42
votes
8answers
2k views
What does ** and * do for python parameters?
In the following method, what does the * and ** do for param2? I'm new to Python...I assume it's a reference or pointer. Answers?
def foo(param1, *param2):
def bar(param1, **param2):
40
votes
9answers
5k views
How do you express binary literals in python?
How do you express an integer as a binary number with python literals?
I was easily able to find the answer for hex:
>>> 0x12AF
4783
>>> 0x100
256
and, octal:
>>> 01267
…
31
votes
87answers
8k views
What is your (least) favorite syntax gotcha?
You know the ones that make you go WTH and are easily spotted by a coworker just passing by?
Please keep it one gotcha per answer to simplify voting.
28
votes
15answers
841 views
Should C# introduce a syntactic short-hand for IEnumerable<T>?
Just as C# 2 introduced T? as a short-hand for Nullable<T>, shouldn't C# consider introducing a short-hand for even the more popular IEnumerable<T>? Like T*?
Wouldn't this help make …
26
votes
6answers
2k views
What’s the false operator in C# good for?
There are two weird operators in C#:
the true operator
the false operator
If I understand this right this operators can be used in types which I want use instead of boolean expression and where I …
24
votes
22answers
948 views
How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?
Ever since I first made the mistake of doing an assignment in an if I've always written my ifs like this:
if (CONST == variable) {
to avoid the common (at least for me) mistake of doing this:
if …
21
votes
7answers
4k views
How can I merge two Python dictionaries as a single expression?
I have two Python dictionaries, and I want to write a single expression that returns these two dictionaries, merged. The update() method would be what I need, if it returned its result instead of …
21
votes
4answers
5k views
How do you pass a function as a parameter in C?
I want to create a function that performs a function passed by parameter on a set of data. How do you pass a function as a parameter in C?
20
votes
2answers
2k views
VB.Net function that returns string only returns single character
The other day I was working on project, and ran into a weird bug. I called a function, and it was only returning the first character from the string which it should have been returning. After trying a …
17
votes
24answers
554 views
Are there any languages that allow units?
When writing the following today in C#
DateTime.Now.AddYears(-60)
I wondered whether there are any languages that allow a more natural syntax with units:
DateTime.Now - 60years
Does anyone know …
17
votes
2answers
2k views
How do I check syntax in bash without running the script?
Is it possible to check a bash script syntax without executing it?
Using Perl, I can run perl -c 'script name', is there any equivalent command for bash scripts?
Thanks.
16
votes
2answers
616 views
Is there a difference between :: and . when calling class methods in Ruby?
Simple question, but one that I've been curious about...is there a functional difference between the following two commands?
String::class
String.class
They both do what I expect -- that is to say …
15
votes
6answers
3k views
LaTeX package to do syntax highlighting of code in various languages
I am looking for a LaTeX package that does syntax highlighting on code. For example, right now I use the verbatim block to write code:
\begin{verbatim}
<html>
<head>
…
15
votes
7answers
844 views
What do parentheses in a C variable declaration mean?
Can someone explain what this means?
int (*data[2])[2];
15
votes
8answers
972 views
Syntax highlighting code with Javascript
What Javascript libraries can you recommend for syntax highlighting <code> blocks in HTML?
(One suggestion per answer please).
