Skip to content

Instantly share code, notes, and snippets.

View manutdkid77's full-sized avatar
πŸ‘¨β€πŸ’»
Building something special

Nathaniel Nunes manutdkid77

πŸ‘¨β€πŸ’»
Building something special
View GitHub Profile
@manutdkid77
manutdkid77 / priests_sfx_chicalim.json
Last active August 18, 2019 06:31
Priests St Francis Xavier Church, Chicalim
[
{
"name": "Fr Goncalo Carvalho SJ",
"link": "http://goanchurches.info/priests/fr-goncalo-carvalho/",
"startDate": "01-01-1596",
"endDate": "31-12-1627"
},
{
"name": "Fr Inacio Dias SJ",
"link": "http://goanchurches.info/priests/fr-inacio-dias/",
@manutdkid77
manutdkid77 / powershell_basics.md
Created July 5, 2019 14:33
Documentation containing notes πŸ“„ and tips πŸ’‘ which I have referred to while using powershell πŸ’»

PowerShell Basics

Documentation containing notes and tips which I have referred to while using powershell

Accessing xml nodes

If there are multiple nodes of same name within a xml file, and we want to retrive nodes with a particular key, we can do so using the following

  • For selecting a single node with a particular attribute: $xmlFile.SelectNodes('//nodeName[@attributeName]')
@manutdkid77
manutdkid77 / react_basics.md
Created June 29, 2019 08:23
Documentation, links and notes I have used when learning React

React Basics

create-react-app

A cmd to create single-page React applications.

Install this cmd using npm install -g create-react-app

To create a new project