Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
12answers
25k views

count (non-blank) lines-of-code in bash

In Bash, how do I count the number of non-blank lines of code in a project?
1
vote
2answers
371 views

“blank page” after each chapter with a strange symbol on it, how can I get rid of it?

I use Latex, document class is book. After each chapter, there is a page with page head and foot, and also a strange symbol on it, and the rest is blank. Then after this page a normal blank page is ...
0
votes
1answer
77 views

Removing null elements from the scheme list

(define filter-in (lambda (predicate list) (let((f (lambda (l) (filter-in-sexpr predicate l)))) (map f list)))) (define filter-in-aux (lambda (pred lst) (if (null? ...
0
votes
2answers
4k views

Android: need to validate an edittext for non-blank input

If I want to enforce a maximum length of input in an EditText field, I can use the maxLength attribute. But if I want to enforce a minimum length (in my case, simply non-blank), I find no ...