Jack

Results 40 comments of Jack

Great gem. BTW today I just found an interesting way to pass numbers by using [format](http://ruby-doc.org/core-2.2.3/Kernel.html#method-i-format) ``` v=100 RDD.map( "lambda{ |x| x / %d }" % v ) ``` %s...

I think it'd be great to have [RDD.takeOrdered](http://spark.apache.org/docs/latest/api/python/pyspark.html#pyspark.RDD.takeOrdered) or [RDD.join](http://spark.apache.org/docs/latest/api/python/pyspark.html#pyspark.RDD.join), since currently RDD.max doesn't take the 'key=' argument.

This is a really great gem and DataFrames will be the foundation to attract great projects for this gem. Could I help your development on the documentation?

Totally agree -- could we at least can turn it on/off so the cache is allowed? thanks!

For me when I turn debug=True, remove config does not work, but [add a callback function](https://coderwall.com/p/-tikrw/disable-django-debug-toolbar-when-debug-true) works and make Django fast again ``` DEBUG_TOOLBAR_CONFIG = { 'SHOW_TOOLBAR_CALLBACK': lambda r: False,...

Now Event.end_recurring_period can be null/blank, if you have to give an end date, give a very far date like Jan 1st, 2199?

Under root, putting the path include with namespace get me this error: ``` django.core.exceptions.ImproperlyConfigured: Specifying a namespace in include() without providing an app_name is not supported. Set the app_name attribute...

Yes I am using this package with DRF with home written endpoints by calling `period.get_occurrences()`, since I need more than [built-in API](https://github.com/llazzaro/django-scheduler/blob/develop/schedule/views.py#L335) on [/schedule/api/occurrences?calendar_slug=testcal&start=2019-01-01&end=2020-01-26](http://localhost:8000/schedule/api/occurrences?calendar_slug=testcal&start=2019-01-01&end=2020-01-26). Also you can check how other...

if you prefer manual, they can be found in CDN: https://cdnjs.com/libraries/twitter-bootstrap https://cdnjs.com/libraries/jqueryui https://cdnjs.com/libraries/jquery ( you can also use Django admin's jQuery django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js, or `static '/admin/js/vendor/jquery/jquery.min.js'`)

I wish @tyctor 's code can be merged, otherwise, special days can be a bit tricky. For the following yearly params: Martin Luther King Jr. Day (Third Monday of the...