$ cd /path/to/Dockerfile
$ sudo docker build .
View running processes
| from django.urls import reverse | |
| from django.utils.html import format_html | |
| class ListLinksMixin(object): | |
| """ | |
| Support for list_links attribute. Items in list_links must also be in list_display | |
| Usage to make 'fieldTwo' a link: | |
| list_display = ('fieldOne', 'fieldTwo',) | |
| list_links = ('fieldTwo',) |
| http://cvlecture.marearts.com/2016/12/opencv-lecture-3-3_23.html | |
| #include "opencv2/opencv.hpp" | |
| using namespace cv; | |
| using namespace std; | |
| int main(int, char) | |
| { | |
| Mat img(500, 500, CV_8UC3); |
Because pointers can be ugh
To understand a pointer, let's review "regular" variables first. If you're familiar with a programming language without pointers like JavaScript, this is what you think when you hear "variable".
When declaring a variable by identifier (or name), the variable is synonymous with its value.