Understanding Decorators in Python
While learning Python in the beginning, i skipped the portion of the chapters on Decorators. After i worked on Flask and Django, I was introduced with the Decorators.
Let us consider a simple flask app example:
While learning Python in the beginning, i skipped the portion of the chapters on Decorators. After i worked on Flask and Django, I was introduced with the Decorators.
Let us consider a simple flask app example:
Sometimes you may find deleting the commit history of your github project repository useful. You can easily delete the commit history by following the procedure below.
It is always useful to keep the backup of your repository in your computer before removing all the commit history.
Create folder ’templates’ inside ‘shortenersite’ and then inside ’templates’ create folder ‘shortenersite’.
Inside “shortenersite/templates/shortenersite/” create ‘base.html’ and ‘index.html’. So now paste the following to them.
Now we will be working with our actual URLs and Views of our site.
Open up your “urlshortener/urls.py” and add the following code to it:
[urlshortener/urls.py]
Now, Let us create a Django app. From your project’s root directory run this command
django-admin startapp shortenersite
Creating a Django project
django-admin startproject urlshortener
Now you will see new directory “urlshortener”. Now our folder structure looks something like:
Jhandi Munda is a gambling game played mostly in South Asian countries including Nepal, India, Bangladesh and Myanmar. It is also known with a different name in different regions such as “Langur Burja”, “Jhanda Burja” and “Khor Khore” or “Khod khode”. I have developed a Mobile game based on this.
By default in Laravel the URL to access your site is http://example.com/public/. It is not good to keep public in URL as it makes URL ugly and longer.
So, let’s talk about the solution to remove /public/ from the URL.
Through JavaScript you can easily write the html code in html document using document.write(). Using document.write() and for loop it is easy to print the table of user input number.
First of all “prompt” box will appear and then this value will be parse to integer and the multiplication table is displayed.