Nighthawk Pages Setup: Navigating the Jungle of Development

Introduction

This guide provides an overview of setting up Nighthawk Pages.

The Setup

Preparing for the Expedition

To begin your development journey:

  • Laptop Preparation: Ensure your laptop is equipped with necessary software tools, whether on macOS or Windows.

  • Creating a GitHub Account: Set up a GitHub account to store code and collaborate.

  • Installing Visual Studio Code: Install Visual Studio Code to assist with coding tasks.

Exploring the Code

Learn the core programming languages and tools:

  • JavaScript, Python, and Markdown: Gain proficiency in these languages, each adding to your coding toolkit.

  • Utilizing Jupyter Notebooks: Use Jupyter Notebooks to document and experiment with code.

Example: JavaScript Function

//Example: Create a JavaScript Function
function jungleGreeting() {
    console.log("Welcome to the coding jungle!");
}
jungleGreeting();
# Example: combine keys and values into a dictionary
keys_list = ['A', 'B', 'C']
values_list = ['blue', 'red', 'bold']

dict_method_1 = dict(zip(keys_list, values_list))