diff --git a/scripts/purge_images.sh b/scripts/purge_images.sh
index 72e74b5..3dd0fd5 100755
--- a/scripts/purge_images.sh
+++ b/scripts/purge_images.sh
@@ -1,11 +1,16 @@
-#!/bin/bash
+##!/bin/bash
# If there are images in img/ that are not being used by the Zettelkasten, delete them
-find /home/thomas/repos/eolas/img -type f | while read filename; do
- pwd
- rg "${filename##*/}" ../ --type markdown >/dev/null 2>&1
- if [ "$?" -eq 1 ]; then
+find "${EOLAS_PATH}/img" -type f | while read filename; do
+ # Search for the image in the markdown files in the EOLAS_DIR directory
+ search_result=$(rg "${filename##*/}" "${EOLAS_PATH}/zk" --type markdown)
+
+ # If the image is not found in any file
+ if [ -z "$search_result" ]; then
echo "Deleted unused image: ${filename##*/}"
# rm $filename
+ else
+ echo "Nothing to purge. All images currently in use."
fi
done
+
diff --git a/scripts/tidy_filenames.sh b/scripts/tidy_filenames.sh
index 01feab2..f500064 100755
--- a/scripts/tidy_filenames.sh
+++ b/scripts/tidy_filenames.sh
@@ -3,7 +3,7 @@
# Convert hypens in file names to underscores
main() {
- find . -depth -name '*-*' | while read fname; do
+ find . -depth -name '*-*' -name '*.md' | while read fname; do
new_fname=$(echo $fname | tr "-" "_")
if [ -e $new_fname ]; then
echo "File $new_fname already exists. Not replacing $fname"
@@ -16,5 +16,5 @@ main() {
# Run and pipe errors and feedback to logfile
-&>/dev/null
+# &>/dev/null
main
diff --git a/zk/scrap.txt b/zk/scrap.txt
new file mode 100644
index 0000000..f852e5d
--- /dev/null
+++ b/zk/scrap.txt
@@ -0,0 +1,405 @@
+Image or-gate-new.png is used in the following files:
+/home/thomas/repos/eolas/zk/Logic_gates.md:
+/home/thomas/repos/eolas/zk/Logic_gates.md:
+/home/thomas/repos/eolas/zk/Logic_gates.md:
+Image charge-cylinder.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Current.md:
+Image react-lifecycle.png is used in the following files:
+/home/thomas/repos/eolas/zk/Lifecycle_methods.md:
+Image kernel-cpu-interaction.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Relation_between_kernel_and_CPU.md:
+Image sql-left-outer-join.png is used in the following files:
+/home/thomas/repos/eolas/zk/Joins_in_SQL.md:
+Image sam-directory.png is used in the following files:
+/home/thomas/repos/eolas/zk/SAM.md:
+Image series-battery-diagram.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Cells_and_batteries.md:
+Image Screenshot_2021-05-11_at_18.55.23.png is used in the following files:
+/home/thomas/repos/eolas/zk/Algorithmic_complexity.md:
+Image mongoose-hierarchy.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Creating_a_schema_and_model.md:
+Image 1.4-Input-Process-Output.png is used in the following files:
+/home/thomas/repos/eolas/zk/Defining_a_computer.md:
+Image LMC_5.gif is used in the following files:
+/home/thomas/repos/eolas/zk/The_Little_Man_computer.md:
+Image queue.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Queue.md:
+Image virtual-memory-diagram.jpg is used in the following files:
+/home/thomas/repos/eolas/zk/Virtual_memory_and_the_MMU.md:
+Image draw.io-Page-8.drawio.png is used in the following files:
+/home/thomas/repos/eolas/zk/Reducing_fractions.md: 
+Deleted unused image: signed-conversion.png
+Image ground-symbol.png is used in the following files:
+/home/thomas/repos/eolas/zk/Ground.md:
+Image dipole-again.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Electromagnetism.md:
+Image series-battcircuit.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Cells_and_batteries.md:
+Image conjunc-elim.png is used in the following files:
+/home/thomas/repos/eolas/zk/Conjunction_Elimination.md:
+Image standard-userspace.png is used in the following files:
+/home/thomas/repos/eolas/zk/Containerization.md:
+Image parallel-battery-diagram.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Cells_and_batteries.md:
+Image switch-and-gate.png is used in the following files:
+/home/thomas/repos/eolas/zk/Transistors.md:
+Image negate-intro.png is used in the following files:
+/home/thomas/repos/eolas/zk/Negation_Introduction.md:
+Image jk-flip-flops.png is used in the following files:
+/home/thomas/repos/eolas/zk/Flip_flops.md:
+Image disjunc-intro.png is used in the following files:
+/home/thomas/repos/eolas/zk/Disjunction_Introduction.md:
+Image postman-lambda.png is used in the following files:
+/home/thomas/repos/eolas/zk/Practical_walkthrough_Lambda_creation_within_AWS.md:
+Image lsof.png is used in the following files:
+/home/thomas/repos/eolas/zk/Monitoring_processes_and_resources.md:
+Image step4.png is used in the following files:
+/home/thomas/repos/eolas/zk/Strategies_for_constructing_proofs.md:
+Image cell-comparison.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Cells_and_batteries.md:
+Image draw.io-Page-9.drawio.png is used in the following files:
+/home/thomas/repos/eolas/zk/Dividing_fractions.md:
+/home/thomas/repos/eolas/zk/Dividing_fractions.md:
+Image drawio-Page-7.drawio.png is used in the following files:
+/home/thomas/repos/eolas/zk/Reducing_fractions.md:
+Image cloudwatch-logs.png is used in the following files:
+/home/thomas/repos/eolas/zk/CloudWatch.md:
+Image Pasted_image_20220411082627.png is used in the following files:
+/home/thomas/repos/eolas/zk/Package_management.md:
+Image container-lifecycle.png is used in the following files:
+/home/thomas/repos/eolas/zk/Docker_containers.md:
+Image memory-flow.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Memory.md:
+Image rebase-tip-chage.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Rebasing.md:
+Image opensearch-architecture.drawio.svg is used in the following files:
+/home/thomas/repos/eolas/zk/OpenSearch.md:
+Image FL-Databases-1.5_terminology.gif is used in the following files:
+/home/thomas/repos/eolas/zk/Relational_database_architecture.md:
+Image apollo-explorer.png is used in the following files:
+/home/thomas/repos/eolas/zk/Apollo_Server.md:
+Image nand-mem-second.gif is used in the following files:
+/home/thomas/repos/eolas/zk/Creating_memory_with_NAND.md:
+Image circ-batt-final.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Cells_and_batteries.md:
+Image systemd-global-files.png is used in the following files:
+/home/thomas/repos/eolas/zk/systemd.md: _`systemd` global unit files_
+Image dsfdsfsdfwe.png is used in the following files:
+/home/thomas/repos/eolas/zk/Strategies_for_constructing_proofs.md:
+Image graphql_multiple_resources.png is used in the following files:
+/home/thomas/repos/eolas/zk/Key_characteristics_of_GraphQL.md:
+Image mongo-doc-added.png is used in the following files:
+/home/thomas/repos/eolas/zk/Adding_documents_to_a_collection.md:
+Image sr_latch_logic_circuit.png is used in the following files:
+/home/thomas/repos/eolas/zk/Latches.md:
+Deleted unused image: 74181aluschematic.png
+Deleted unused image: wiresnstuff.jpg
+Image server-listening.png is used in the following files:
+/home/thomas/repos/eolas/zk/1_GET.md:
+Image normal-merge-again.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Rebasing.md:
+Image half-adder-gates-three.png is used in the following files:
+/home/thomas/repos/eolas/zk/Half_adder_and_full_adder.md:
+Image half-adder-new.png is used in the following files:
+/home/thomas/repos/eolas/zk/Half_adder_and_full_adder.md:
+Image git-interactive-rebase.png is used in the following files:
+/home/thomas/repos/eolas/zk/Rebasing.md:
+Image lambda-overview.png is used in the following files:
+/home/thomas/repos/eolas/zk/Practical_walkthrough_Lambda_creation_within_AWS.md:
+Image git-interactive-mode-2.png is used in the following files:
+/home/thomas/repos/eolas/zk/Interactive_staging.md:
+Image one-eighth-a.png is used in the following files:
+/home/thomas/repos/eolas/zk/Dividing_fractions.md:
+Image equiv-fractions.png is used in the following files:
+/home/thomas/repos/eolas/zk/Equivalent_fractions.md:
+Image terminal_colours.png is used in the following files:
+/home/thomas/repos/eolas/zk/Formatting_output_text_in_Bash.md:
+Image negate-elim.png is used in the following files:
+/home/thomas/repos/eolas/zk/Negation_Elimination.md:
+Image DMUX.png is used in the following files:
+/home/thomas/repos/eolas/zk/Multiplexers_and_demultiplexers.md:
+Image sr_latch_diagram.png is used in the following files:
+/home/thomas/repos/eolas/zk/Latches.md:
+Image analog-digital.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Analogue_and_digital.md:
+Image clock_pulses.png is used in the following files:
+/home/thomas/repos/eolas/zk/Clock_signals.md:
+Image negated-conjunction-decomposition-rule.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+Image proof.png is used in the following files:
+/home/thomas/repos/eolas/zk/Strategies_for_constructing_proofs.md:
+/home/thomas/repos/eolas/zk/Strategies_for_constructing_proofs.md:
+Image Pasted_image_20220319135558.png is used in the following files:
+/home/thomas/repos/eolas/zk/Binary_number_system.md:
+Deleted unused image: alien-blood-alien.png
+Image diode.png is used in the following files:
+/home/thomas/repos/eolas/zk/LEDs.md:
+Image hexadecimal-to-bytes.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Hexadecimal_number_system.md:
+Image conditional-decomposition-rule.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+Image harddisk.png is used in the following files:
+/home/thomas/repos/eolas/zk/What_are_disks.md:
+Image postman-aws-output.png is used in the following files:
+/home/thomas/repos/eolas/zk/SAM.md:
+Image full-adder-new.png is used in the following files:
+/home/thomas/repos/eolas/zk/Half_adder_and_full_adder.md:
+Image graphql-architecture.png is used in the following files:
+/home/thomas/repos/eolas/zk/Key_characteristics_of_GraphQL.md:
+Image and-gate-new-2.png is used in the following files:
+/home/thomas/repos/eolas/zk/Logic_gates.md:
+Image state-machine-definition.png is used in the following files:
+/home/thomas/repos/eolas/zk/Step_functions_and_state_machines.md:
+Image lambda_func_one.png is used in the following files:
+/home/thomas/repos/eolas/zk/Practical_walkthrough_Lambda_creation_within_AWS.md:
+Image 3-bit-adder-diagram.png is used in the following files:
+/home/thomas/repos/eolas/zk/Three_bit_counter.md:
+Image mount-directory.png is used in the following files:
+/home/thomas/repos/eolas/zk/Filesystems.md:
+Image conjunc-intro.png is used in the following files:
+/home/thomas/repos/eolas/zk/Conjunction_Introduction.md:
+Image gateway-trigger.png is used in the following files:
+/home/thomas/repos/eolas/zk/SAM.md:
+/home/thomas/repos/eolas/zk/Practical_walkthrough_Lambda_creation_within_AWS.md:
+Image grub.jpg is used in the following files:
+/home/thomas/repos/eolas/zk/Boot_process.md:
+Image sync-thread.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Event_loop.md:
+Image switch-or-gate.png is used in the following files:
+/home/thomas/repos/eolas/zk/Transistors.md:
+Image valence-shell.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Electrons.md:
+Image proofs-drawio-Page-5.drawio_2.png is used in the following files:
+/home/thomas/repos/eolas/zk/Theorems_and_empty_sets.md:
+Image python-exception-hierarchy.png is used in the following files:
+/home/thomas/repos/eolas/zk/Error_handling_in_Python.md:
+Image git-manual-hunk.png is used in the following files:
+/home/thomas/repos/eolas/zk/Interactive_staging.md:
+Image ORelim2.png is used in the following files:
+/home/thomas/repos/eolas/zk/Disjunction_Elimination.md: 
+Image multi_on_off.gif is used in the following files:
+/home/thomas/repos/eolas/zk/Why_computers_use_binary.md:
+Image em-spectrum.jpg is used in the following files:
+/home/thomas/repos/eolas/zk/Electromagnetism.md:
+Image Turing_machines_01.gif is used in the following files:
+/home/thomas/repos/eolas/zk/Turing_machines.md: The direction that the
+Image xor-gate-new.png is used in the following files:
+/home/thomas/repos/eolas/zk/Logic_gates.md:
+Image greyscale-encoding.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Binary_colour_encoding.md:
+Image em-wave.gif is used in the following files:
+/home/thomas/repos/eolas/zk/Electromagnetism.md:
+Image negated-disjunction-decomposition-rule.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+Image mongo-compass.png is used in the following files:
+/home/thomas/repos/eolas/zk/Create_database.md:
+Image disjunction-decomposition-rule.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+Image multiple_circuits.gif is used in the following files:
+/home/thomas/repos/eolas/zk/Why_computers_use_binary.md:
+Image step2.png is used in the following files:
+/home/thomas/repos/eolas/zk/Strategies_for_constructing_proofs.md:
+Image and-transistor.png is used in the following files:
+/home/thomas/repos/eolas/zk/Transistors.md:
+Image Pasted_image_20220319135805.png is used in the following files:
+/home/thomas/repos/eolas/zk/Binary_number_system.md:
+Image sam-build.png is used in the following files:
+/home/thomas/repos/eolas/zk/SAM.md:
+Image serial-transmission.jpg is used in the following files:
+/home/thomas/repos/eolas/zk/Bus.md:
+Image hardware-abstraction-hierarchy.png is used in the following files:
+/home/thomas/repos/eolas/zk/Hardware_abstraction_and_modularity.md:
+Image logical-falsity-tree.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+Image gateway-services.png is used in the following files:
+/home/thomas/repos/eolas/zk/API_Gateway.md:
+Image signed-to-unsigned.png is used in the following files:
+/home/thomas/repos/eolas/zk/Signed_and_unsigned_numbers.md:
+Image atom-diagram.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Matter_and_atoms.md:
+Image complex-tree.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+Image hardware-sim-basic.png is used in the following files:
+/home/thomas/repos/eolas/zk/Hardware_simulation.md:
+Image negated-biconditional-decomposition-rule.drawio.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+Image javascript-recursion.png is used in the following files:
+/home/thomas/repos/eolas/zk/Recursion.md:
+Image unsigned-to-signed.png is used in the following files:
+/home/thomas/repos/eolas/zk/Signed_and_unsigned_numbers.md:
+Image biconditional-elim.png is used in the following files:
+/home/thomas/repos/eolas/zk/Biconditional_Elimination.md:
+Image nand-gate-new.png is used in the following files:
+/home/thomas/repos/eolas/zk/Logic_gates.md:
+Image containers-in-userspace.png is used in the following files:
+/home/thomas/repos/eolas/zk/Containerization.md:
+Image magnetic_field.png is used in the following files:
+/home/thomas/repos/eolas/zk/Electromagnetism.md:
+Image bi-intro.png is used in the following files:
+/home/thomas/repos/eolas/zk/Biconditional_Introduction.md:
+/home/thomas/repos/eolas/zk/Logical_equivalence.md:
+Image or-transistor.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Transistors.md:
+Image square.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Algorithmic_complexity.md:
+Image sql-inner-join.png is used in the following files:
+/home/thomas/repos/eolas/zk/Joins_in_SQL.md:
+Image MUX.png is used in the following files:
+/home/thomas/repos/eolas/zk/Multiplexers_and_demultiplexers.md:
+/home/thomas/repos/eolas/zk/Multiplexers_and_demultiplexers.md:
+Image disjunc-elim.png is used in the following files:
+/home/thomas/repos/eolas/zk/Disjunction_Elimination.md:
+Image cloud-formation-stack.png is used in the following files:
+/home/thomas/repos/eolas/zk/SAM.md:
+Image graphQL_request_load.png is used in the following files:
+/home/thomas/repos/eolas/zk/Key_characteristics_of_GraphQL.md:
+Image s3-package-again.svg is used in the following files:
+/home/thomas/repos/eolas/zk/SAM.md:
+Image access-key-aws.png is used in the following files:
+/home/thomas/repos/eolas/zk/SAM.md:
+Image Screenshot_2021-05-11_at_18.51.02.png is used in the following files:
+/home/thomas/repos/eolas/zk/Algorithmic_complexity.md:
+Deleted unused image: opensearch.drawio.svg
+Image transistor-off.png is used in the following files:
+/home/thomas/repos/eolas/zk/Transistors.md:
+Image single-git-history-rebase.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Rebasing.md:
+Image vertical-circuit.png is used in the following files:
+/home/thomas/repos/eolas/zk/Circuits.md:
+Image integrated-circuit.jpeg is used in the following files:
+/home/thomas/repos/eolas/zk/Integrated_circuits.md:
+Image nand-mem-demonstrated.gif is used in the following files:
+/home/thomas/repos/eolas/zk/Creating_memory_with_NAND.md:
+Image nand-mem-first.gif is used in the following files:
+/home/thomas/repos/eolas/zk/Creating_memory_with_NAND.md:
+Image container-versus-vm.png is used in the following files:
+/home/thomas/repos/eolas/zk/Containerization.md:
+Image Screenshot_2020-08-09_at_21.34.48.png is used in the following files:
+/home/thomas/repos/eolas/zk/Defining_a_computer.md:
+Image graphql-journey-two.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Journey_of_GraphQL_query.md:
+Image systemd-local-files.png is used in the following files:
+/home/thomas/repos/eolas/zk/systemd.md:
+Image journald.png is used in the following files:
+/home/thomas/repos/eolas/zk/journald.md:
+Image combined-merge-hist.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Rebasing.md:
+Deleted unused image: wonderlane-Wo1kOJhfW04-unsplash.jpg
+Image htop.png is used in the following files:
+/home/thomas/repos/eolas/zk/Monitoring_processes_and_resources.md:
+Image nand_latch_logic_circuit.png is used in the following files:
+/home/thomas/repos/eolas/zk/Creating_memory_with_NAND.md: Interactive version of circuit:
+Image voltage-drop.png is used in the following files:
+/home/thomas/repos/eolas/zk/Voltage.md:
+Image von_neumann_architecture.jpeg is used in the following files:
+/home/thomas/repos/eolas/zk/CPU_architecture.md:
+Image step1.png is used in the following files:
+/home/thomas/repos/eolas/zk/Strategies_for_constructing_proofs.md:
+Image git-bisect.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Git_bisect.md:
+Image local-sam-docker.png is used in the following files:
+/home/thomas/repos/eolas/zk/Local_AWS_development_with_SAM.md:
+Image stack1.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Stacks.md:_A stack visualised horizontally_ 
+Image nor-gate-new.png is used in the following files:
+/home/thomas/repos/eolas/zk/Logic_gates.md:
+Image mongo-db-structure.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Introduction.md:
+Image mongo-collection.png is used in the following files:
+/home/thomas/repos/eolas/zk/Creating_a_schema_and_model.md:
+Image ORelim1.png is used in the following files:
+/home/thomas/repos/eolas/zk/Disjunction_Elimination.md: 
+Image derivation_from_contradiction.png is used in the following files:
+/home/thomas/repos/eolas/zk/Logical_consistency.md:
+Image stack2.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Stacks.md:_A stack visualised vertically_ 
+Image Pasted_image_20220319135823.png is used in the following files:
+/home/thomas/repos/eolas/zk/Binary_number_system.md:
+Image red-encoding.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Binary_colour_encoding.md:
+Image sam-template-yaml.png is used in the following files:
+/home/thomas/repos/eolas/zk/SAM.md:
+Image t-flip-flops.png is used in the following files:
+/home/thomas/repos/eolas/zk/Flip_flops.md:
+Image negated-conditional-decomposition-rule.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+Image Memory-Hierarchy.jpg is used in the following files:
+/home/thomas/repos/eolas/zk/Memory.md:
+Image motherboard-pi.jpg is used in the following files:
+/home/thomas/repos/eolas/zk/Motherboard.md:
+Image awk-outline.png is used in the following files:
+/home/thomas/repos/eolas/zk/Awk.md:
+Image sql-right-outer-join.png is used in the following files:
+/home/thomas/repos/eolas/zk/Joins_in_SQL.md:
+Image REST_request-load.png is used in the following files:
+/home/thomas/repos/eolas/zk/Key_characteristics_of_GraphQL.md:
+Image proofs-drawio-Page-6.drawio.png is used in the following files:
+/home/thomas/repos/eolas/zk/Disjunction_Elimination.md:
+/home/thomas/repos/eolas/zk/Formal_proofs_in_propositional_logic.md:
+Image lambda-func-two.png is used in the following files:
+/home/thomas/repos/eolas/zk/Practical_walkthrough_Lambda_creation_within_AWS.md:
+Image step3.png is used in the following files:
+/home/thomas/repos/eolas/zk/Strategies_for_constructing_proofs.md:
+Image theoremproof.png is used in the following files:
+/home/thomas/repos/eolas/zk/Strategies_for_constructing_proofs.md:
+Image breadboard-DIP.jpg is used in the following files:
+/home/thomas/repos/eolas/zk/Integrated_circuits.md:
+Image node-event-loop.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Event_loop.md:
+Image diode-led.png is used in the following files:
+/home/thomas/repos/eolas/zk/LEDs.md:
+Image breakdown.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Algorithmic_complexity.md:
+Image hd-sim-test.png is used in the following files:
+/home/thomas/repos/eolas/zk/Hardware_simulation.md:
+Image basic-circuit.png is used in the following files:
+/home/thomas/repos/eolas/zk/Circuits.md:
+Image sql-full-outer-join.png is used in the following files:
+/home/thomas/repos/eolas/zk/Joins_in_SQL.md:
+Image dock-architecture.png is used in the following files:
+/home/thomas/repos/eolas/zk/Docker_architecture.md:
+Image lambda-func-three.png is used in the following files:
+/home/thomas/repos/eolas/zk/Practical_walkthrough_Lambda_creation_within_AWS.md:
+Image api-gateway-trigger.png is used in the following files:
+/home/thomas/repos/eolas/zk/Practical_walkthrough_Lambda_creation_within_AWS.md:
+Image hertz_wave_freq.gif is used in the following files:
+/home/thomas/repos/eolas/zk/CPU_architecture.md:
+Image transistor-on.png is used in the following files:
+/home/thomas/repos/eolas/zk/Transistors.md:
+Image logical-equivalence-tree.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+Image xor-hdl.png is used in the following files:
+/home/thomas/repos/eolas/zk/Hardware_Description_Language.md:
+Image parallel-transmission.jpg is used in the following files:
+/home/thomas/repos/eolas/zk/Bus.md:
+Image proofs-drawio-Page-5.drawio.png is used in the following files:
+/home/thomas/repos/eolas/zk/Formal_proofs_in_propositional_logic.md:
+Image reiteration.png is used in the following files:
+/home/thomas/repos/eolas/zk/Reiteration.md:
+Image conjunction-decomposition-rule.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+/home/thomas/repos/eolas/zk/Truth_trees.md:
+Image yellow-encoding.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Binary_colour_encoding.md:
+Image cherry-pick.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Cherry_picking.md:
+Image state-machine-execution.png is used in the following files:
+/home/thomas/repos/eolas/zk/Step_functions_and_state_machines.md:
+Image git-patch-mode.png is used in the following files:
+/home/thomas/repos/eolas/zk/Interactive_staging.md:
+Image lin.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Algorithmic_complexity.md:distribution:
+Image cond-elim.png is used in the following files:
+/home/thomas/repos/eolas/zk/Conditional_Elimination.md:
+Image async.svg is used in the following files:
+/home/thomas/repos/eolas/zk/Event_loop.md:
+Image trigger-info.png is used in the following files:
+/home/thomas/repos/eolas/zk/Practical_walkthrough_Lambda_creation_within_AWS.md:
+Image lambda-cloudwatch.png is used in the following files:
+/home/thomas/repos/eolas/zk/CloudWatch.md:
+Image cond-intro.png is used in the following files:
+/home/thomas/repos/eolas/zk/Conditional_Introduction.md:
+Image xor-addition-four.png is used in the following files:
+/home/thomas/repos/eolas/zk/Hardware_simulation.md:
diff --git a/zk/test_hypen_name.md b/zk/test_hypen_name.md
new file mode 100644
index 0000000..e69de29