Docker and Openshift
Saturday, January 22, 2022 in Blog
This blog contains codes and snippets related to docker and openshift. Copy the codes from here to run in docker. KCS access - https://kcs.pages.boeing.com/docs/namespace-onboarding/ Console - …
Neo4j Installation
Friday, January 21, 2022 in Blog
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 …
Neo4j & Cypher
Thursday, January 20, 2022 in Blog
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 …
BS4 and Selenium
Tuesday, January 18, 2022 in Blog
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 = …
Transformers and Huggingface
Monday, January 17, 2022 in Blog
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 …
Run jupyter notebook on kaggle
Monday, January 17, 2022 in Blog
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 …
Data structures and algorithms
Monday, January 17, 2022 in Blog
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 …