Posts in 2022
  • Docker and Openshift

    Saturday, January 22, 2022 in Blog

    Featured Image for Docker and Openshift

    This blog contains codes and snippets related to docker and openshift. Copy the codes from here to run in docker. KCS 201 - https://kcs.pages.boeing.com/workshops/kcs201/ Tutorial - https://kcs.pages.boeing.com/docs/tutorial/ Openshift Console - …

    Read more

  • Neo4j Installation

    Friday, January 21, 2022 in Blog

    Featured Image for Neo4j Installation

    This blog contains codes and snippets related to Neo4j, Cypher and apoc library. Copy the codes from here to run in Neo4j. link to lab | Video Link | Apoc video link | Neo4j Neo4j version : 4.7.7 Java11 location: C:\Program Files\Eclipse …

    Read more

  • Neo4j & Cypher

    Thursday, January 20, 2022 in Blog

    Featured Image for Neo4j & Cypher

    This blog contains codes and snippets related to Neo4j, Cypher and apoc library. Copy the codes from here to run in Neo4j. Neo4j bin\neo4j console bin\neo4j-admin dump --to=import\NER.dump --database=neo4j bin\neo4j-admin load --from=import\NER.dump …

    Read more

  • BS4 and Selenium

    Tuesday, January 18, 2022 in Blog

    Featured Image for BS4 and Selenium

    This blog contains codes and snippets related to bs4 and selenium. Copy the codes from here to run in python. video course | BeautifulSoup import requests from bs4 import BeautifulSoup page = …

    Read more

  • Transformers and Huggingface

    Monday, January 17, 2022 in Blog

    Featured Image for Transformers and Huggingface

    This blog contains codes and snippets related to transformers and huggingface. Copy the codes from here to run in python. Course Link | Modelhub Link | Hackathon Some of the pipelines available in the Huggingface are: Feature-extraction (get the …

    Read more

  • Run jupyter notebook on kaggle

    Monday, January 17, 2022 in Blog

    Featured Image for Run jupyter notebook on kaggle

    This blog contains codes and snippets related to transformers and huggingface. Copy the codes from here to run in python. Link to Kaggle Notebook Clone from Github Repository !pip install -q seedir !sudo apt-get -qq install git-lfs !pip install -q …

    Read more

  • Data structures and algorithms

    Monday, January 17, 2022 in Blog

    Featured Image for Data structures and algorithms

    This blog contains codes and snippets related to data structures and algorithms. Copy the codes from here to run in python. video course | Book | Data Structures Linked list class Node: def __init__(self, data): self.data = data self.next = None …

    Read more