Search Results

1
vote

Limit displayed length of string on web page

Perhaps the CSS property overflow: hidden; can help you, in conjuntion with width. …
1
vote

What are canonical, efficient, or concise ways to slurp a file into a string in Perl?

This is neither fast, nor platform independent, and really evil, but it's short (and I've seen this in Larry Wall's code ;-): my $contents = `cat $file`; Kids, do …