Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
175 views

Syntax sugar for querying a Python list which element occurs first

I have a list of many elements. I care about two of its elements, a and b. I don't know the order of the list, nor do I want to sort it. Is there a nice one-liner that will return True if a occurs ...
10
votes
6answers
283 views

Best python style for complex one-liners

I recently wrote a rather ugly looking one-liner, and was wondering if it is better python style to break it up into multiple lines, or leave it as a commented one-liner. I looked in PEP 8, but it did ...
5
votes
2answers
339 views

Linq query that automatically excludes duplicates (one-liner)

I have a linq query for project euler problem 243: var y = from n in factors from m in factors where m != n select n * m; The problem is, for prime factors 2 and 3, it produces the ...
3
votes
5answers
107 views

how to find a perl module's version number though command line on unix? [closed]

Possible Duplicate: How can I find the version of an installed Perl module? i tried perl -MMODULE -e 'print Thread::Semaphore'; but did not work! Anyone know the right command? Thank you ...
3
votes
3answers
93 views

C# one-liner to grab specific data from an RSS feed

I'm looking for a C# "one-liner" (need not strictly be a single line, but very short is preferable) way to download an RSS feed from a given HTTP URL, and extract specific data. Robustness be damned. ...
2
votes
4answers
83 views

how do I use a conditional in this one liner?

I have an input file with 3 columns, and I wanted to print lines where the 3rd column hasn't been duplicated. so if my input data looks like this: 0,1,abc 0,2,abc 0,5,xyz I would print: 0,1,abc ...
2
votes
3answers
94 views

Bash:: How to add md5sum in the ls output?

I am truing to find files and add their md5sum in to table. find /store/01 -name "*.fits" -exec chmod -x+r {} \; -exec ls -l {} \; | tee ALL_FILES.LOG How to add in the ls -l output the md5sum of ...
2
votes
5answers
769 views

are scheme functions one liners?

I am following SICP to learn, and while attempting to solve Ex 1.3 I arrived at the following code as my first attempt: (define (sumsq a b c)( (define highest (if (> (if (> a b) a b) (if (> ...
1
vote
1answer
48 views

Construct a dictionary merging multiple lists

I have a list of objects (clusters) and each object has an attribute vertices which is a list of numbers. I want to construct a dictionary (using a one liner) such that the key is a vertex number and ...
1
vote
2answers
32 views

How to convert these lines into one per line?

This question is really important since I need to present the data to my supervisor asap. I have a list of records in this format: Name Date Place Name Date Place I want these records into one ...
1
vote
3answers
86 views

how do I make overflowing and float positioned elements stay all on one line?

<div id='wrapper'> <ul> <li><img src='1.jpg' /></li> <li><img src='2.jpg' /></li> <li><img src='3.jpg' /></li> ...
0
votes
2answers
41 views

Find all One Line Loops and If's and add brackets

Is it possible to find all one line statements like for, if or else and add brackets to them if there is no bracket? is there a helpfull function in eclipse or can i use any kind of regex, grep or ...
0
votes
2answers
54 views

Counting same length items in a list

I am trying to port a cgi script using pythonic style of coding. sequence = "aaaabbababbbbabbabb" res = sequence.split("a") + sequence.split("b") res = [l for l in res if l] The result is ...
0
votes
4answers
62 views

Perl oneliner match repeating itself

I'm trying to read a specific section of a line out of a file with Perl. The file in question is of the following syntax. # Sets $USER1$ $USER1$=/usr/.... # Sets $USER2$ #$USER2$=/usr/... My ...
0
votes
1answer
27 views

Make this a one-liner: `return sum[dict.get(char) for char in word]`

Obviously, the title has code that can't be interpreted. An uninformative SyntaxError: invalid syntax stderr message didn't tell me much, so I threw it in line by line, using: ...
0
votes
3answers
47 views

Error in Perl oneline command

perl -pi -e 's|\x20|; s|\x90|' log.bin gives me this error Backslash found where operator expected at -e line 1, near "s|\x20|; s|\" syntax error at -e line 1, near "s|\x20|; s|\" Execution of -e ...
0
votes
2answers
43 views

A better way to properly implement string 'in' array

suppose you have an array with a number of strings in ActionScript3 and you want to test if a test string is "in" that array. "in" only works against the index with Arrays in AS3 (which is totally ...
0
votes
2answers
152 views

Rails 3 HABTM one-liner

I need a one-liner to generate a has_and_belongs_to_many join table or else I will go back to Django for its simpler many-to-many constructs. rails 3 generate model article_tags [..] Models # ...
0
votes
1answer
33 views

one-line code for system freeze [closed]

Few years ago (maybe 3) i saw on internet one-line codes for different programming languages which causes cpu throttle up to 100% and freeze after few seconds (approx 2-3), after that computer did not ...
0
votes
2answers
48 views

Oneliner -a-switch - Question

Would it be theoretically possible to enable automatically the -a switch if -n or -p is enabled and if in the code is a non declared @F array or a part of it?
-1
votes
1answer
81 views

How to make a single GETNEXT query in PySNMP

I'm trying to make a simple snmp GETNEXT query to retrieve only the next item of given OID in tree hierarchy. For example, what I want is: When i make a GETNEXT request with OID 1.3.6.1.2.1.1 ...
-1
votes
2answers
299 views

Python FizzBuzz in one line [closed]

Is is possible to write FizzBuzz problem in one line in python. P.S.: This is not a simple FizzBuzz, i know the answer for that. But i want a one liner. I searched for that in SO. but couldn't find ...