162 reputation
8
bio website
location
age
visits member for 1 year, 1 month
seen 2 hours ago
stats profile views 32

18h
revised What is the growlnotify -c option?
added 151 characters in body
18h
comment What is the growlnotify -c option?
scottlab.ucsc.edu/Library/init/zsh/man/html/growlnotify.html is the first one in the search, actually a very old one. But I installed a fresh version from the official site - still there is an option, no description.
18h
accepted What is the growlnotify -c option?
18h
comment What is the growlnotify -c option?
thanx! my man page doesn't say anything about this option
18h
asked How to define a delay for a growl notification to stay for a predefined time (e.g. 5 seconds) and then disappear?
18h
asked What is the growlnotify -c option?
May
9
comment How to create a new db in mongoose?
So the is the URL specified only to parse the URL to mongodb server and the DB name? why don't do it separately?
May
9
comment Why node.js can not find the avconv?
it is empty as I see in preferences. but the full path was the only quickest solution. thank you
May
9
asked Why node.js can not find the avconv?
May
9
revised Should I use Schemas in mongo db or could I add documents without models too?
deleted 2 characters in body
May
9
comment How to create a new db in mongoose?
do I see there an API createNewDB(...) ? no. How do I create a new DB using mongoose in node.js?
May
9
asked Should I use Schemas in mongo db or could I add documents without models too?
May
9
asked How to create a new db in mongoose?
May
3
comment Why Blueimp's JQuery File Upload add all prev. selected files even if options [replaceFileInput: false] and [maxNumberOfFiles: 1] are set on init?
yep, but that is the same as the solution I mentioned does. Strange why the option maxNumberOfFiles doesn't work. But ok, it works and actually I can implement the semantics of the maxNumberOfFiles option myself: if (number of bindings with added files more then maxNumberOfFiles) unbind the first binding (kind of a FIFO Queue with boundaries). Anyway good, that the solution is instinctive for many people :)
May
3
accepted Why Blueimp's JQuery File Upload add all prev. selected files even if options [replaceFileInput: false] and [maxNumberOfFiles: 1] are set on init?
May
3
comment How to upload a file only once with blueimp file upload plugin?
is it better to set the $("#testUploadButton").off("click") before the new $("#testUploadButton").on("click", function() { ... } ?
May
3
accepted Strange behavior of bootstrap's responsive design
May
3
comment jQuery FileUploadUI Single File Upload
doesn't work for me.
May
2
asked Why Blueimp's JQuery File Upload add all prev. selected files even if options [replaceFileInput: false] and [maxNumberOfFiles: 1] are set on init?
May
2
comment How to upload a file only once with blueimp file upload plugin?
I have the same problem. But with your solution it just suppress all the other requests, still allocating memory. How to restrict the number of files, to avoid adding the selected files to the upload queue? Setting maxNumberOfFiles: 1 doesn't work for me.