Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
565 views

How to configure GHCi to automatically import modules

When I use GHCi, I almost always end up importing Control.Applicative, Data.List, etc. . Is there a way to configure GHCi to automatically import those modules. Also, after importing them, how do I ...
2
votes
2answers
756 views

How do you import your own convenience function modules in Python?

Python can only import files from the current working directory, or from its path, I guess, but this means that if I'm working in a subdirectory on a certain project, I can't import stuff from a ...
2
votes
3answers
79 views

Custom convenience functions/methods

Convenience functions are functions that perform a specific task, independant of the program, code or whatever that called it. Here's an example in PHP: function currentDateTime(){ list($micro, ...
1
vote
1answer
32 views

All-purpose is_blank in Javascript?

I'm looking for a cross-browser-compliant Javascript equivalent to Rails' Object.blank? (and its counterpart, Object.present?) that returns true for empty objects, empty arrays, empty strings, and ...