Tagged Questions

2
votes
1answer
66 views

Setting numpy slice in lambda function

I want to create a lambda function that takes two numpy arrays and sets a slice of the first to the second and returns the newly set numpy array. Considering you can't assign things in lambda …
0
votes
2answers
94 views

PowerShell query: how to process a file

I often want to process a file resulting in a modified output file. I can't seem to find the PowerShell way to do this - it always ends up looking like code in a one-liner, IYSWIM. This is an …
0
votes
2answers
55 views

Is there a way to treat Ping-Host as a boolean in PowerShell?

I'd like to do something like this: if (Ping-Host server1) { blah } Anyone know of a simple way?
3
votes
4answers
151 views

Fastest/One-liner way to collect duplicates in Ruby Array?

What's the fastest/one-liner way to convert an array like this: [1, 1, 1, 1, 2, 2, 3, 5, 5, 5, 8, 13, 21, 21, 21] ...into an array of objects like this: [{1 => 4}, {2 => 2}, {3 => 1}, {5 => 3}, {8 …
3
votes
5answers
301 views

In Python, how do I create a string of n characters in one line of code?

I need to generate a string with n characters in Python. Is there a one line answer to achieve this with the existing Python library? For instance, I need a string of 10 letters: string_val = …
1
vote
6answers
118 views

One-liner to convert two newlines to one?

I have a file where I want to convert "\n" to " " and "\n\n" to "\n". For example: I had a toy . It was good . Becomes: I had a toy . It was good . Does anyone have a Unix one-liner for this …
0
votes
1answer
80 views

version of ldap installed - one liner

HI, I am using LDAP which is installed in a solaris machine. To check the version of LDAP i go to /ldap and check the version installed as if it is version 5 then there is a directory of the name v5.0 …
1
vote
4answers
178 views

Oneliner to count the number of tabs in each line of a file

I have a file that is tab delimited. I would like a powershell script that counts the number of tabs in each line. I came up with this: ${C:\tabfile.txt} |% {$_} | Select-String \t | Measure-Object …
3
votes
13answers
3k views

How do I count the number of occurrences of a char in a String?

I have the string a.b.c.d I want to count the occurrences of '.' in an idiomatic way, preferably a one-liner. (Previously I had expressed this constraint as "without a loop", in case you're …
4
votes
2answers
2k views

Initialization of an ArrayList in one line.

I am willing to create a list of options to test something. I was doing: ArrayList<String> places = new ArrayList<String>(); places.add("Buenos Aires"); places.add("Córdoba"); …
1
vote
3answers
328 views

Powershell Golf: Next business day

How to find next business day with powershell ?
0
votes
2answers
137 views

The Ultimate Oneliner [closed]

I thought about setting up a homepage with such title, but stackoverflow provides nice engine for voting so I'm putting it here. In my everyday work I create sometimes some nice oneliners that do …
2
votes
2answers
1k views

Powershell script to delete old files

The following script will delete files in a named directory that are older than 14 days and write to a .txt with the path and the files deleted (found this script on another forum..credit to shay): …
0
votes
6answers
819 views

Python one-liner to print every file in the current directory

How can I make the following one liner print every file through Python? python -c "import sys;print '>>',sys.argv[1:]" | dir *.* Specifically would like to know how to pipe into a python -c. …
0
votes
1answer
107 views

Filtering and copying with PowerShell

In my quest to improve my PowerShell skills, here's an example of an ugly solution to a simple problem. Any suggestions how to improve the oneliner are welcome. Mission: trim a huge icon library down …