Skip to the content.

verify check

%%script bash

# Dependency Variables, set to match your project directories

cat <<EOF > /tmp/variables.sh
export project_dir=$HOME/nighthawk #folder name
export project=\$project_dir/nora_25  #project name 
export project_repo="https://github.com/NoraTheTurtle/portfolio_2025.git"  #project link 
EOF
%%script bash

# Extract saved variables
source /tmp/variables.sh

# Output shown title and value variables
echo "Project dir: $project_dir"
echo "Project: $project"
echo "Repo: $project_repo"
Project dir: /Users/neahadian/nighthawk
Project: /Users/neahadian/nighthawk/nora_25
Repo: https://github.com/NoraTheTurtle/portfolio_2025.git
%%script bash

# Extract saved variables
source /tmp/variables.sh

echo "Using conditional statement to create a project directory and project"

cd ~    # start in home directory

# Conditional block to make a project directory
if [ ! -d $project_dir ]
then 
    echo "Directory $project_dir does not exist... making directory $project_dir"
    mkdir -p $project_dir
fi
echo "Directory $project_dir exists." 

# Conditional block to git clone a project from project_repo
if [ ! -d $project ]
then
    echo "Directory $project does not exist... cloning $project_repo"
    cd $project_dir
    git clone $project_repo
    cd ~
fi
echo "Directory $project exists."
Using conditional statement to create a project directory and project
Directory /Users/neahadian/nighthawk exists.
Directory /Users/neahadian/nighthawk/nora_25 exists.
%%script bash

# Extract saved variables
source /tmp/variables.sh

echo "Navigate to project, then navigate to area wwhere files were cloned"
cd $project
pwd

echo ""
echo "list top level or root of files with project pulled from github"
ls

Navigate to project, then navigate to area wwhere files were cloned
/Users/neahadian/nighthawk/nora_25

list top level or root of files with project pulled from github
404.html
Gemfile
Gemfile.lock
LICENSE
Makefile
README.md
README4YML.md
_config.yml
_data
_includes
_layouts
_notebooks
_posts
_sass
_site
assets
images
index.md
navigation
requirements.txt
scripts
venv
%%script bash

# Extract saved variables
source /tmp/variables.sh

echo "Navigate to project, then navigate to area wwhere files were cloned"
cd $project
pwd

echo ""
echo "list all files in long format"
ls -al   # all files -a (hidden) in -l long listing
Navigate to project, then navigate to area wwhere files were cloned
/Users/neahadian/nighthawk/nora_25

list all files in long format
total 136
drwxr-xr-x  28 neahadian  staff    896 Sep  5 22:35 .
drwxr-xr-x   6 neahadian  staff    192 Sep 10 20:56 ..
drwxr-xr-x  15 neahadian  staff    480 Sep 13 14:20 .git
drwxr-xr-x   3 neahadian  staff     96 Aug 30 13:49 .github
-rw-r--r--   1 neahadian  staff    251 Aug 30 13:49 .gitignore
drwxr-xr-x   3 neahadian  staff     96 Aug 30 13:49 .vscode
-rw-r--r--   1 neahadian  staff    436 Aug 30 13:49 404.html
-rw-r--r--   1 neahadian  staff    122 Aug 30 13:49 Gemfile
-rw-r--r--@  1 neahadian  staff   7661 Sep 10 12:28 Gemfile.lock
-rw-r--r--@  1 neahadian  staff  11357 Aug 30 13:49 LICENSE
-rw-r--r--   1 neahadian  staff   3549 Aug 30 13:49 Makefile
-rw-r--r--   1 neahadian  staff  14171 Aug 30 13:49 README.md
-rw-r--r--   1 neahadian  staff     79 Aug 30 13:49 README4YML.md
-rw-r--r--@  1 neahadian  staff    851 Sep  3 13:35 _config.yml
drwxr-xr-x@  3 neahadian  staff     96 Sep  5 22:35 _data
drwxr-xr-x  20 neahadian  staff    640 Sep 10 12:33 _includes
drwxr-xr-x   9 neahadian  staff    288 Sep 10 12:31 _layouts
drwxr-xr-x   3 neahadian  staff     96 Aug 30 13:49 _notebooks
drwxr-xr-x   8 neahadian  staff    256 Sep 10 14:09 _posts
drwxr-xr-x   6 neahadian  staff    192 Aug 30 13:49 _sass
drwxr-xr-x@ 21 neahadian  staff    672 Sep 13 14:08 _site
drwxr-xr-x   5 neahadian  staff    160 Aug 30 13:49 assets
drwxr-xr-x  17 neahadian  staff    544 Sep 10 13:53 images
-rw-r--r--@  1 neahadian  staff   2189 Sep  6 13:53 index.md
drwxr-xr-x   6 neahadian  staff    192 Sep  5 22:36 navigation
-rw-r--r--@  1 neahadian  staff     57 Aug 30 13:49 requirements.txt
drwxr-xr-x   9 neahadian  staff    288 Sep  3 13:23 scripts
drwxr-xr-x@  8 neahadian  staff    256 Aug 30 14:19 venv
%%script bash

# Extract saved variables
source /tmp/variables.sh

echo "Look for posts"
export posts=$project/_posts  # _posts inside project
cd $posts  # this should exist per fastpages
pwd  # present working directory
ls -lR  # list posts recursively

Look for posts
/Users/neahadian/nighthawk/nora_25/_posts
total 64
-rw-r--r--@ 1 neahadian  staff  14573 Sep 13 13:30 2023-08-31-snakeGame.md
-rw-r--r--@ 1 neahadian  staff   5571 Sep 11 13:37 2023-09-26-spritesheet.md
-rw-r--r--@ 1 neahadian  staff    694 Sep 11 13:37 2024-09-04-ButtonCode.md
-rw-r--r--@ 1 neahadian  staff    245 Sep 11 13:37 2024-09-10-CSSEgame.md
drwxr-xr-x  5 neahadian  staff    160 Sep 10 20:52 Foundation
drwxr-xr-x@ 9 neahadian  staff    288 Sep 13 13:33 princesses

./Foundation:
total 144
-rw-r--r--@ 1 neahadian  staff  32924 Sep 11 13:37 2024-09-05-Verify_IPYNB_2_.md
-rw-r--r--@ 1 neahadian  staff  35714 Sep 11 13:37 2024-09-10-emoji_IPYNB_2_.md
drwxr-xr-x  3 neahadian  staff     96 Sep  6 13:56 A-pair_programming

./Foundation/A-pair_programming:
total 16
-rw-r--r--@ 1 neahadian  staff  5286 Sep 11 13:36 2023-08-16-pair_programming.md

./princesses:
total 56
-rw-r--r--@ 1 neahadian  staff   874 Sep 11 11:05 2024-09-08-brainwrite.md
-rw-r--r--@ 1 neahadian  staff   561 Sep 12 13:32 2024-09-08-prince-ariel.md
-rw-r--r--@ 1 neahadian  staff   437 Sep 12 13:33 2024-09-08-prince-elsa.md
-rw-r--r--@ 1 neahadian  staff   295 Sep 11 14:07 2024-09-08-prince-home.md
-rw-r--r--@ 1 neahadian  staff  1209 Sep 12 13:19 2024-09-08-prince-moana.md
-rw-r--r--@ 1 neahadian  staff   623 Sep 12 13:31 2024-09-08-prince-mulan.md
-rw-r--r--@ 1 neahadian  staff  3491 Sep 13 14:17 2024-09-10-PrincessPlayground.md
%%script bash

# Extract saved variables
source /tmp/variables.sh

echo "Look for notebooks"
export notebooks=$project/_notebooks  # _notebooks is inside project
cd $notebooks   # this should exist per fastpages
pwd  # present working directory
ls -lR  # list notebooks recursively
Look for notebooks
/Users/neahadian/nighthawk/nora_25/_notebooks
total 0
drwxr-xr-x  4 neahadian  staff  128 Sep 10 14:16 Foundation

./Foundation:
total 136
-rw-r--r--@ 1 neahadian  staff  17481 Sep 13 14:20 2024-09-05-Verify.ipynb
-rw-r--r--@ 1 neahadian  staff  45207 Sep 10 14:24 2024-09-10-emoji.ipynb
%%script bash

# Extract saved variables
source /tmp/variables.sh

echo "Look for images, print working directory, list files"
cd $project/images  # this should exist per fastpages
pwd
ls -lR
Look for images, print working directory, list files
/Users/neahadian/nighthawk/nora_25/images
total 7056
-rw-r--r--@  1 neahadian  staff   126534 Aug 30 14:37 Row.gif
-rw-r--r--@  1 neahadian  staff    58672 Sep  5 21:31 apple.png
-rw-r--r--@  1 neahadian  staff   403606 Sep  5 23:12 byeCat.gif
-rw-r--r--@  1 neahadian  staff     4667 Aug 30 14:37 cake.png
-rw-r--r--@  1 neahadian  staff    99574 Sep  5 21:31 cherrys.png
-rw-r--r--@  1 neahadian  staff  2501976 Aug 30 14:37 coroline.webp
-rw-r--r--   1 neahadian  staff    15406 Aug 30 13:49 favicon.ico
-rw-r--r--@  1 neahadian  staff   105873 Sep  5 21:31 grape.png
-rw-r--r--   1 neahadian  staff    34239 Aug 30 13:49 logo.png
drwxr-xr-x   3 neahadian  staff       96 Aug 30 13:49 notebooks
-rw-r--r--@  1 neahadian  staff   108260 Sep  5 21:31 orange.png
-rw-r--r--@  1 neahadian  staff    73305 Sep  5 22:59 pear.png
drwxr-xr-x@ 11 neahadian  staff      352 Sep 11 11:08 princesses
-rw-r--r--@  1 neahadian  staff    45035 Sep 10 13:41 sister.jpg
-rw-r--r--@  1 neahadian  staff    13997 Sep 10 13:53 spriteCat.png

./notebooks:
total 0
drwxr-xr-x  6 neahadian  staff  192 Aug 30 13:49 foundation

./notebooks/foundation:
total 728
-rw-r--r--  1 neahadian  staff  310743 Aug 30 13:49 create_repo.png
-rw-r--r--  1 neahadian  staff   29416 Aug 30 13:49 push.jpg
-rw-r--r--  1 neahadian  staff   17105 Aug 30 13:49 stage.jpg
-rw-r--r--  1 neahadian  staff    6659 Aug 30 13:49 wsl.jpg

./princesses:
total 3048
-rw-r--r--@ 1 neahadian  staff   12295 Sep 10 11:15 Mulan_1.jpg
-rw-r--r--@ 1 neahadian  staff    8602 Sep 10 11:15 Mulan_2.jpg
-rw-r--r--@ 1 neahadian  staff   96562 Sep 11 11:08 ariel.webp
-rw-r--r--@ 1 neahadian  staff  119430 Sep 11 11:08 arielLive.jpeg
-rw-r--r--@ 1 neahadian  staff  305199 Sep 10 11:14 elsa.jpg
-rw-r--r--@ 1 neahadian  staff  108641 Sep 10 11:15 happy.png
-rw-r--r--@ 1 neahadian  staff   41412 Sep 10 11:15 moana.png
-rw-r--r--@ 1 neahadian  staff  534112 Sep 10 13:17 p_icon.png
-rw-r--r--@ 1 neahadian  staff  309149 Sep 10 11:19 princesses.jpg
%%script bash

# Extract saved variables
source /tmp/variables.sh

echo "Navigate to project, then navigate to area wwhere files were cloned"

cd $project
echo "show the contents of README.md"
echo ""

cat README.md  # show contents of file, in this case markdown
echo ""
echo "end of README.md"
Navigate to project, then navigate to area wwhere files were cloned
show the contents of README.md

# Introduction

Nighthawk Pages is a project designed to support students in their Computer Science and Software Engineering education. It offers a wide range of resources including tech talks, code examples, and educational blogs.

GitHub Pages can be customized by the blogger to support computer science learnings as the student works through the pathway of using Javascript, Python/Flask, Java/Spring.  

## Student Requirements

Del Norte HS students will be required to review their personal GitHub Pages at each midterm and final.  This review will contain a compilation of personal work performed within each significant grading period.

In general, Students and Teachers are expected to use GitHub pages to build lessons, complete classroom hacks, perform work on JavaScript games, and serve as a frontend to full-stack applications.

Exchange of information could be:

1. sharing a file:  `wget "raw-link.ipynb"
2. creating a template from this repository
3. sharing a fork among team members
4. etc.

---

## History

This project is in its 3rd revision (aka 3.0).

The project was initially based on Fastpages. But this project has diverged from those roots into an independent entity.  The decision to separate from Fastpages was influenced by the deprecation of Fastpages by authors.  It is believed by our community that the authors of fastpages turned toward Quatro.  After that change of direction fastpages did not align with the Teacher's goals and student needs. The Nighthawk Pages project has more of a raw development blogging need.

### License

The Apache license has its roots in Fastpages.  Thus, it carries its license forward.  However, most of the code is likely unrecognizable from those roots.

### Key Features

- **Code Examples**: Provides practical coding examples in JavaScript, including a platformer game, and frontend code for user databases using Python and Java backends.
- **Educational Blogs**: Offers instructional content on various topics such as developer tools setup, deployment on AWS, SQL databases, machine learning, and data structures. It utilizes Jupyter Notebooks for interactive lessons and coding challenges.
- **Tools and Integrations**: Features GitHub actions for blog publishing, Utterances for blog commenting, local development support via Makefile and scripts, and styling with the Minima Theme and SASS. It also includes a new integration with GitHub Projects and Issues.

### Contributions

- **Notable Contributions**: Highlights significant contributions to the project, including theme development, search and tagging functionality, GitHub API integration, and the incorporation of GitHub Projects into GitHub pages. Contributors such as Tirth Thakker, Mirza Beg, and Toby Ledder have played crucial roles in these developments.

- **Blog Contributions**:  Often students contribute articles and blogs to this project.  Their names are typically listed in the front matter of their contributing post.

---

## GitHub Pages setup

The absolutes in setup up...

**Activate GitHub Pages Actions**: This step involves enabling GitHub Pages Actions for your project. By doing so, your project will be automatically deployed using GitHub Pages Actions, ensuring that your project is always up to date with the latest changes you push to your repository.

- On the GitHub website for the repository go to the menu: Settings -> Pages ->Build
- Under the Deployment location on the page, select "GitHub Actions".

**Update `_config.yml`**: You need to modify the `_config.yml` file to reflect your repository's name. This configuration is crucial because it ensures that your project's styling is correctly applied, making your deployed site look as intended rather than unstyled or broken.

```text
github_repo: "student_2025" 
baseurl: "/student_2025"
```

**Set Repository Name in Makefile**: Adjust the `REPO_NAME` variable in your Makefile to match your GitHub repository's name. This action facilitates the automatic updating of posts and notebooks on your local development server, improving the development process.

```make
# Configuration, override port with usage: make PORT=4200
PORT ?= 4100
REPO_NAME ?= student_2025
LOG_FILE = /tmp/jekyll$(PORT).log
```

### Tool requirements

All `GitHub Pages` websites are managed on GitHub infrastructure and use GitHub version control.  Each time we change files in GitHub it initiates a GitHub Action, a continuous integration and development toolset, that rebuilds and publishes the site with Jekyll.  

- GitHub uses `Jekyll` to transform your markdown and HTML content into static websites and blogs. [Jekyll](https://jekyllrb.com/).
- A Linux shell is required to work with this project integration with GitHub Pages, GitHub and VSCode.  Ubuntu is the preferred shell, though MacOS shell is supported as well.  There will be some key setup scripts that follow in the README.
- Visual Studio Code is the Nighthawk Pages author's preferred code editor and extensible development environment.  VSCode has a rich ecosystem of developer extensions that ease working with GitHub Pages, GitHub, and many programming languages.  Setting up VSCode and extensions will be elaborated upon in this document.
- An anatomy section in this README will describe GitHub Pages and conventions that are used to organize content and files.  This includes file names, key coding files, metadata tagging of blogs, styling tooling for blogs, etc.

### Development Environment Setup

Comprehensive start. A topic-by-topic guide to getting this project running is published [here](https://nighthawkcoders.github.io/portfolio_2025/devops/tools/home).

Quick start.  A quick start below is a reminder, but is dependent on your knowledge.  Only follow this instruction if you need a refresher.  Always default to the comprehensive start if any problem occurs.

#### Clone Repo

Run these commands to obtain the project, then locate into the project directory with the terminal, install an extensive set of tools, and make.

```bash
git clone <this-repo> # git clone https://github.com/nighthawkcoders/student_2025.git 
cd <repo-dir>/scripts # cd student_2025
```

#### Windows WSL and/or Ubuntu Users

- Execute the script: `./activate_ubuntu.sh`

#### macOS Users

- Execute the script: `./activate_macos.sh`

#### Kasm Cloud Desktop Users

- Execute the script: `./activate.sh`

## Run Server on localhost

To preview the project you will need to "make" the project.

### Bundle install

The very first time you clone run project you will need to run this Ruby command as the final part of your setup.

```bash
bundle install
```

### Start the Server  

This requires running terminal commands `make`, `make stop`, `make clean`, or `make convert` to manage the running server.  Logging of details will appear in the terminal.   A `Makefile` has been created in the project to support commands and start processes.

Start the server, this is the best choice for initial and iterative development.  Note. after the initial `make`, you should see files automatically refresh in the terminal on VSCode save.

  ```bash
  make
  ```

### Load web application into the Browser

Start the preview server in the terminal,
The terminal output from `make` shows the server address. "Cmd" or "Ctl" click the http location to open the preview server in a browser. Here is an example Server address message, click on the Server address to load:...

  ```text
  http://0.0.0.0:4100/student_2025/
  ```

### Regeneration of web application

Save on ".ipynb" or ".md" file activiates "regeneration". An example terminal message is below.  Refresh the browser to see updates after the message displays.

  ```text
  Regenerating: 1 file(s) changed at 2023-07-31 06:54:32
      _notebooks/2024-01-04-cockpit-setup.ipynb
  ```

### Other "make" commands

Terminal messages are generated from background processes.  At any time, click return or enter in a terminal window to obtain a prompt.  Once you have the prompt you can use the terminal as needed for other tasks.  Always return to the root of project `cd ~/vscode/student_2025` for all "make" actions.

#### Stop the preview server

Stopping the server ends the web server applications running process.  However, it leaves constructed files in the project in a ready state for the next time you run `make`.

  ```bash
  make stop
  ```

### Clean the local web application environment

This command will top the server and "clean" all previously constructed files (ie .ipynb -> .md). This is the best choice when renaming files has created duplicates that are visible when previewing work.

  ```bash
  make clean
  ```

### Observe build errors

Test Jupyter Notebook conversions (ie .ipynb -> .md), this is the best choice to see if an IPYNB conversion error is occurring.

  ```bash
  make convert
  ```

---

## Development Support

### File Names in "_posts", "_notebooks"

There are two primary directories for creating blogs.  The "_posts" directory is for authoring in markdown only.  The "_notebooks" allows for markdown, pythons, javascript and more.

To name a file, use the following structure (If dates are in the future, review your config.yml setting if you want them to be viewed).  Review these naming conventions.

- For markdown files in _posts:
  - year-month-day-fileName.md
    - GOOD EXAMPLE: 2021-08-02-First-Day.md
    - BAD EXAMPLE: 2021-8-2-first-day.md
    - BAD EXAMPLE: first-day.md
    - BAD EXAMPLE: 2069-12-31-First-Day.md

- For Jupyter notebooks in _notebooks:
  - year-month-day-fileName.ipynb
    - GOOD EXAMPLE: 2021-08-02-First-Day.ipynb
    - BAD EXAMPLE: 2021-8-2-first-day.ipynb
    - BAD EXAMPLE: first-day.ipynb
    - BAD EXAMPLE: 2069-12-31-First-Day.ipynb

### Tags

Tags are used to organize pages by their tag the way to add tags is to add the following to your front matter such as the example seen here `categories: [Tools]` Each item in the same category will be lumped together to be seen easily on the search page.

### Search

All pages can be searched for using the built-in search bar. This search bar will search for any word in the title of a page or in the page itself. This allows for easily finding pages and information that you are looking for. However, sometimes this may not be desirable so to hide a page from the search you need to add `search_exclude: true` to the front matter of the page. This will hide the page from appearing when the viewer uses search.

### Navigation Bar

To add pages to the top navigation bar use _config.yml to order and determine which menus you want and how to order them.  Review the_config.yml in this project for an example.

### Blog Page

There is a blog page that has options for images and a description of the page. This page can help the viewer understand what the page is about and what they can expect to find on the page. The way to add images to a page is to have the following front matter `image: /images/file.jpg` and then the name of the image that you want to use. The image must be in the `images` folder. Furthermore, if you would like the file to not show up on the blog page `hide: true` can be added to the front matter.

### SASS support

NIGHTHAWK Pages support a variety of different themes that are each overlaid on top of minima. To use each theme, go to the "_sass/minima/custom-styles.scss" file and simply comment or uncomment the theme you want to use.

To learn about the minima themes search for "GitHub Pages minima" and review the README.

To find a new theme search for "Github Pages Themes".

### Includes

- Nighthawk Pages uses liquid syntax to import many common page elements that are present throughout the repository. These common elements are imported from the _includes directory. If you want to add one of these common elements, use liquid syntax to import the desired element to your file. Here’s an example of the liquid syntax used to import: `<h3>
<a class="post-link" href="">

</a>

</h3><p class="post-meta"></p> ` Note that the liquid syntax is surrounded by curly braces and percent signs. This can be used anywhere in the repository.

### Layouts

- To use or create a custom page layout, make an HTML page inside the _layouts directory, and when you want to use that layout in a file, use the following front matter `layout: [your layout here]`.  All layouts will be written in liquid to define the structure of the page.

### Metadata

Metadata, also known as "front matter", is a set of key-value pairs that can provide additional information to GitHub Pages about .md and .ipynb files. This can and probably will be used in other file types (ie doc, pdf) if we add them to the system.

In the front matter, you can also define things like a title and description for the page.  Additional front matter is defined to place content on the "Computer Science Lab Notebook" page.  The `courses:` key will place data on a specific page with the nested `week:` placing data on a specific row on the page.  The `type:` key in "front matter" will place the blog under the plans, hacks(ToDo), and tangibles columns.

- In our files, the front matter is defined at the top of the page or the first markdown cell.

  - First, open one of the .md or .ipynb files already included in either your _posts|_notebooks folder.

  - In the .md file, you should notice something similar to this at the top of the page. To see this in your .ipynb files you will need to double-click the markdown cell at the top of the file.

  ```yaml
  ---
  toc: true
  comments: true
  layout: post
  title: Jupyter Python Sample
  description: Example Blog!!!  This shows code and notes from hacks.
  type: ccc
  courses: { csa: {week: 5} }
  ---
  ```

- The front matter will always have '---' at the top and bottom to distinguish it and each key-value pair will be separated by a ':'.

- Here we can modify things like the title and description.

- The type value will tell us which column this is going to appear under the time box supported pages.  The "ccc" stands for Code, Code, Code.

- The courses will tell us which menu item it will be under, in this case, the `csa` menu, and the `week` tells it what row (week) it will appear under that menu.

end of README.md
%%script bash

# This command has no dependencies

echo "Show the shell environment variables, key on left of equal value on right"
echo ""

env
Show the shell environment variables, key on left of equal value on right

VSCODE_CRASH_REPORTER_PROCESS_TYPE=extensionHost
GEM_HOME=/Users/neahadian/gems
TERM=xterm-color
SHELL=/bin/zsh
CLICOLOR=1
TMPDIR=/var/folders/f4/g18n78j51db0lfsws39bvlxh0000gn/T/
HOMEBREW_REPOSITORY=/opt/homebrew
PYTHONUNBUFFERED=1
ORIGINAL_XDG_CURRENT_DESKTOP=undefined
MallocNanoZone=0
PYDEVD_USE_FRAME_EVAL=NO
PYTHONIOENCODING=utf-8
USER=neahadian
COMMAND_MODE=unix2003
SSH_AUTH_SOCK=/private/tmp/com.apple.launchd.7RPo0esFla/Listeners
__CF_USER_TEXT_ENCODING=0x1F5:0x0:0x0
PAGER=cat
VIRTUAL_ENV=/Users/neahadian/nighthawk/nora_25/venv
ELECTRON_RUN_AS_NODE=1
VSCODE_AMD_ENTRYPOINT=vs/workbench/api/node/extensionHostProcess
PATH=/Users/neahadian/nighthawk/nora_25/venv/bin:/Users/neahadian/gems/bin:/Users/neahadian/.rbenv/shims:/Users/neahadian/gems/bin:/Users/neahadian/.rbenv/shims:/Users/neahadian/.rbenv/shims:/Users/neahadian/gems/bin:/Users/neahadian/gems/bin:/Users/neahadian/gems/bin:/Users/neahadian/.rbenv/shims:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin
__CFBundleIdentifier=com.microsoft.VSCode
PWD=/Users/neahadian/nighthawk/nora_25/_notebooks/Foundation
VSCODE_HANDLES_UNCAUGHT_ERRORS=true
MPLBACKEND=module://matplotlib_inline.backend_inline
PYTHON_FROZEN_MODULES=on
XPC_FLAGS=0x0
FORCE_COLOR=1
RBENV_SHELL=zsh
XPC_SERVICE_NAME=0
SHLVL=2
HOME=/Users/neahadian
VSCODE_NLS_CONFIG={"userLocale":"en-us","osLocale":"en-us","resolvedLanguage":"en","defaultMessagesFile":"/Users/neahadian/Desktop/VScode.app/Contents/Resources/app/out/nls.messages.json","locale":"en-us","availableLanguages":{}}
PYDEVD_IPYTHON_COMPATIBLE_DEBUGGING=1
HOMEBREW_PREFIX=/opt/homebrew
LOGNAME=neahadian
LC_CTYPE=UTF-8
VSCODE_IPC_HOOK=/Users/neahadian/Library/Application Support/Code/1.93-main.sock
VSCODE_CODE_CACHE_PATH=/Users/neahadian/Library/Application Support/Code/CachedData/4849ca9bdf9666755eb463db297b69e5385090e3
CLICOLOR_FORCE=1
VSCODE_PID=44230
INFOPATH=/opt/homebrew/share/info:
HOMEBREW_CELLAR=/opt/homebrew/Cellar
GIT_PAGER=cat
VSCODE_L10N_BUNDLE_LOCATION=
VSCODE_CWD=/
VIRTUAL_ENV_PROMPT=(venv) 
_=/usr/bin/env
%%script bash

# Extract saved variables
source /tmp/variables.sh

cd $project

echo ""
echo "show the secrets of .git config file"
cd .git
ls -l config

echo ""
echo "look at config file"
cat config
show the secrets of .git config file
-rw-r--r--@ 1 neahadian  staff  343 Aug 30 13:53 config

look at config file
[core]
	repositoryformatversion = 0
	filemode = true
	bare = false
	logallrefupdates = true
	ignorecase = true
	precomposeunicode = true
[remote "origin"]
	url = https://github.com/NoraTheTurtle/nora_25.git
	fetch = +refs/heads/*:refs/remotes/origin/*
[branch "main"]
	remote = origin
	merge = refs/heads/main
	vscode-merge-base = origin/main
%%script bash

# This example has an error in VSCode; it runs best on Jupyter
cd /tmp

file="sample.md"
if [ -f "$file" ]; then
    rm $file
fi

# Create a markdown file using tee and here document (<<EOF)
tee -a $file >/dev/null <<EOF
# Show Generated Markdown
This introductory paragraph and this line and the title above are generated using tee with the standard input (<<) redirection operator.
- This bulleted element is still part of the tee body.
EOF

# Append additional lines to the markdown file using echo and redirection (>>)
echo "- This bulleted element and lines below are generated using echo with standard output (>>) redirection operator." >> $file
echo "- The list definition, as is, is using space to separate lines. Thus the use of commas and hyphens in output." >> $file

# Define an array of actions and their descriptions
actions=("ls,list-directory" "cd,change-directory" "pwd,present-working-directory" "if-then-fi,test-condition" "env,bash-environment-variables" "cat,view-file-contents" "tee,write-to-output" "echo,display-content-of-string" "echo_text_>\$file,write-content-to-file" "echo_text_>>\$file,append-content-to-file")

# Loop through the actions array and append each action to the markdown file
for action in ${actions[@]}; do
  action=${action//-/ }  # Convert dash to space
  action=${action//,/: } # Convert comma to colon
  action=${action//_text_/ \"sample text\" } # Convert _text_ to "sample text", note escape character \ to avoid "" having meaning
  echo "    - ${action//-/ }" >> $file  # Append action to file
done

echo ""
echo "File listing and status"
ls -l $file # List file details
wc $file   # Show word count
mdless $file  # Render markdown from terminal (requires mdless installation)

rm $file  # Clean up temporary file
File listing and status
-rw-r--r--@ 1 neahadian  wheel  808 Sep 13 14:21 sample.md
      15     132     808 sample.md


Show Generated Markdown ======================================================

This introductory paragraph and this line and the title above are generated using tee with the standard input (<<) redirection operator.

 * This bulleted element is still part of the tee body.
 * This bulleted element and lines below are generated using echo with standard output (>>) redirection operator.
 * The list definition, as is, is using space to separate lines. Thus the use of commas and hyphens in output.
   * ls: list directory
   * cd: change directory
   * pwd: present working directory
   * if then fi: test condition
   * env: bash environment variables
   * cat: view file contents
   * tee: write to output
   * echo: display content of string
   * echo "sample text" >$file: write content to file
   * echo "sample text" >>$file: append content to file


%%script bash

# This example has an error in VSCode; it runs best on Jupyter
cd /tmp

file="sample.md"
if [ -f "$file" ]; then
    rm $file
fi

# Set locale to C to avoid locale-related errors
export LC_ALL=C

# Create a markdown file using tee and here document (<<EOF)
tee -a $file >/dev/null <<EOF
# Show Generated Markdown
This introductory paragraph and this line and the title above are generated using tee with the standard input (<<) redirection operator.
- This bulleted element is still part of the tee body.
EOF

# Append additional lines to the markdown file using echo and redirection (>>)
echo "- This bulleted element and lines below are generated using echo with standard output (>>) redirection operator." >> $file
echo "- The list definition, as is, is using space to separate lines. Thus the use of commas and hyphens in output." >> $file

# Define an array of commands
commands=("ls" "cat" "tail" "pwd" "env" "grep" "awk" "sed" "curl" "wget")

# Loop through the commands array and append each command description to the markdown file
for cmd in ${commands[@]}; do
  description=$(man $cmd | col -b | awk '/^NAME/{getline; print}')
  echo "    - $description" >> $file
done

echo ""
echo "File listing and status"
ls -l $file # List file details
wc $file   # Show word count
mdless $file  # Render markdown from terminal (requires mdless installation)

rm $file  # Clean up temporary file
No manual entry for wget



File listing and status
-rw-r--r--@ 1 neahadian  wheel  919 Sep 13 14:23 sample.md
      15     145     919 sample.md


Show Generated Markdown ======================================================

This introductory paragraph and this line and the title above are generated using tee with the standard input (<<) redirection operator.

 * This bulleted element is still part of the tee body.
 * This bulleted element and lines below are generated using echo with standard output (>>) redirection operator.
 * The list definition, as is, is using space to separate lines. Thus the use of commas and hyphens in output.
   * ls - list directory contents
   * cat - concatenate and print files
   * tail - display the last part of a file
   * pwd - return working directory name
   * env - set environment and execute command, or print environment
   * grep, egrep, fgrep, rgrep, bzgrep, bzegrep, bzfgrep, zgrep, zegrep,
   * awk - pattern-directed scanning and processing language
   * sed - stream editor
 
  -        curl - transfer a URL -----------------------------------------------