My Public Notepad
Bits and bobs about computers and programming
Pages
(Move to ...)
Home
Software Engineering
Security
Data Science
Disclaimer
About
▼
Wednesday, 20 May 2020
Generator Functions in various Programming Languages
›
A generator is a special type of function which can pause its execution, yield result back to the caller and resume later, at caller’s conv...
Sunday, 26 April 2020
How to install Scrapy on Ubuntu
›
$ which python3 /usr/bin/python3 $ python3 --version Python 3.6.9 $ virtualenv --python=python3.6 venv Running virtualenv with inter...
Friday, 24 April 2020
How to install Jupyter Notebook on Ubuntu 18.04
›
Just wanted to share my experience with installing Jupyter Notebook on my Ubuntu 18.04 box. $ cd my-project $ virtualenv venv Using b...
Thursday, 23 April 2020
How to upgrade VirtualBox on Ubuntu 18.04
›
In one of my previous posts I demonstrated how to install VirtualBox and I installed its version 6.0. But in the mean time a new version (...
Friday, 17 April 2020
Go language: When shall a method be a function?
›
I came across a method which was basically a helper method doing some data filtering. Its input data are struct's data members and the...
Monday, 23 March 2020
Upgrading GNU C/C++ compilers on Ubuntu
›
Here I want to share my experience with upgrading gcc and g++ compilers on Ubuntu. Probably it's better to say installing their newer...
3 comments:
‹
›
Home
View web version