Skip to content

Instantly share code, notes, and snippets.

View imadhsissou's full-sized avatar
💻
system update 💫

Imad Hsissou imadhsissou

💻
system update 💫
View GitHub Profile
@imadhsissou
imadhsissou / Cisco IOS-XE RESTCONF 101.postman_collection.json
Created June 21, 2020 23:37
RESTCONF 101 Postman Collection using DevNet IOS-XE Always-on Sandbox
{
"info": {
"_postman_id": "11d6bce2-fa70-40cd-b353-ca023e583f87",
"name": "Cisco IOS-XE RESTCONF 101",
"description": "RESTCONF 101 Postman Collection using DevNet IOS-XE Always-on Sandbox (GET, PATCH and DELETE)",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "RESTCONF on IOS XE - GET the root.",
@imadhsissou
imadhsissou / spauto_netconf.md
Last active June 19, 2020 23:21
Getting started with NETCONF on Cisco IOS XR and IOS XE

Getting started with NETCONF on Cisco IOS XR and IOS XE

DAY02

Prerequisites

IOS XR

  • Install k9sec and mgbl packages
  • Generate crypto keys
docker network rm $(docker network ls | grep "foo" | awk '/ / { print $1 }')
@imadhsissou
imadhsissou / Python_Reference.py
Last active December 1, 2015 22:39
Quick reference for python beginners
# import is used to make specialty functions available
# These are called modules
import random
import sys
import os
# Hello world is just one line of code
# print() outputs data to the screen
print("Hello World")
@imadhsissou
imadhsissou / C++ Reference.cpp
Last active December 1, 2015 22:41
Quick c++ reference for beginners
/*
1/ - FUNCTIONS -
2/ - CLASSES -
3/ - ARITHMETIC -
4/ - CASTING -
5/ - IF STATEMENT -
6/ - SWITCH STATEMENT -
7/ - TERNARY OPERATOR -
8/ - ARRAYS -
9/ - FOR LOOP - (loops)