Latest Posts

SQL Basic

This was taken from CODEACADEMY : https://www.codecademy.com/learn/learn-sql/modules/learn-sql-manipulation/cheatsheet Column Constraints Column constraints are the rules applied to the values of individual columns: PRIMARY KEY constraint can be used to uniquely identify the row. UNIQUE columns have a different value for every row. NOT NULL columns…
Read more

RESTCONF

Found this on Cisco Community that pretty explain it all as for the Construct of an URI:  ( Thanks to HAPRESTO ) https://community.cisco.com/t5/network-devices/how-to-list-all-yang-modules-used-by-the-restconf-server-on-ios/td-p/3570376 As RESTCONF was fully standardized in January 2017 so many implementations are still based on “Drafts” of…
Read more

RESTCONF

Found this on Cisco Community that pretty explain it all as for the Construct of an URI:  ( Thanks to HAPRESTO ) https://community.cisco.com/t5/network-devices/how-to-list-all-yang-modules-used-by-the-restconf-server-on-ios/td-p/3570376 As RESTCONF was fully standardized in January 2017 so many implementations are still based on “Drafts” of…
Read more

Python Packaging

Packaging In Python, the term packaging refers to putting modules you have written in a standard format, so that other programmers can install and use them with ease. This involves use of the modules setuptools and distutils. The first step in packaging is to organize…
Read more