How to install Python package from GitHub?
Software engineering facts, information, and skills from February, 2018
To install specific git commit with pip, You can specify commit hash, branch name, tag.
What is @permalink
and get_absolute_url
in Django? When and why to use it?
How to install Python package from GitHub?
Often we need to get previous months name in python, especially, when we have to save report from previous month's name. In python its is pretty simple.
How can we get the month name from the month number? For instance, if I have 3, I want to return march? Most simple method is to define a function that checks for the number and return name.
What's a good way to check if a cookie exist using Javascript? The cookieisavailable to Javascript via document.cookie
So the easiest method is to write a function that checks with document.cookie
and return
At many points, a developer may want to clone a row of data for multiple reason. TheSQL Alchemy makeit easy to do in 5 steps. For example we have a table products and clone the product with id 25.
Angular JS is a framework in JavaScript. It is distributed as a JavaScript file and could be included in any HTML page with script tag.
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.2/angular.min.js"></script>
The angular JS extends the HTMLwith directives. The key directives are ng-app which defines the AngularJS application, the ng-model directive which bids value of HTML controls like input widgets to the app and ng-bind binds application data to the HTML.
Often we encounter the situation where we need to remove item from array by value. For example, if we have an array
[23, 1, 54, 32, 34, 8, 23]
. We don't know or we are not sure about the index of the value 32, but we need to delete it. Python array has the built in function remove. For example