Bismeet singh

Results 5 issues of Bismeet singh

How can the code inside this view be made user selectable?

enhancement

I am using django-storages for serving static and media from AWS s3,not cloudfront, static seems to work fine. Media files are uploaded to the right path, but are not served...

``` class Node: def __init__(self, key): self.left = None self.right = None self.val = key def createTree(arr): if not arr: return None mid = len(arr)//2 node = Node(arr[mid]) node.left =...

I am using django 3.1.4 with crispy forms 1.12 and formtools 2.3 and the initial page loads but the next button doesn't do anything. However,the next button does validate the...

I am trying to read data from an excel file, but if a col has empty rows, the data from the next column gets moved to the previous column, thus...