diff --git a/src/pages/blog/contentmanagement.md b/src/pages/blog/contentmanagement.md new file mode 100644 index 0000000..9514cd0 --- /dev/null +++ b/src/pages/blog/contentmanagement.md @@ -0,0 +1,13 @@ +--- +layout: "../../layouts/BlogLayout.astro" +title: "Content Management vs Flat Files" +tagline: "How posts are managed for this blog" +date: "Jan 3 2023" +image: "https://images.unsplash.com/photo-1569235186275-626cb53b83ce?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1472&q=80" +--- + +Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. + +Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. + +Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. \ No newline at end of file diff --git a/src/pages/blog/test.md b/src/pages/blog/writingmarkdown.md similarity index 86% rename from src/pages/blog/test.md rename to src/pages/blog/writingmarkdown.md index a0e2465..7c16ce9 100644 --- a/src/pages/blog/test.md +++ b/src/pages/blog/writingmarkdown.md @@ -1,9 +1,9 @@ --- layout: "../../layouts/BlogLayout.astro" -title: "Test post" -tagline: "This is a test post" -date: "Sep 10 2022" -image: "/img/profile.jpg" +title: "Blogging for the non blogger" +tagline: "Getting thoughts into markdown" +date: "Jan 4 2023" +image: "https://images.unsplash.com/photo-1524668951403-d44b28200ce0?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1374&q=80" --- Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. diff --git a/src/pages/projects/demo/quicksort.svelte b/src/pages/projects/demo/quicksort.svelte index 68a4738..701525f 100644 --- a/src/pages/projects/demo/quicksort.svelte +++ b/src/pages/projects/demo/quicksort.svelte @@ -75,9 +75,9 @@ * @param high the high value */ function quicksort(array, low, high){ + animArray.push(new arrayFrame(array.toString(), 0, array.length, 0)); //Do we need to sort? if(low >= high){ - animArray.push(new arrayFrame(array.toString(), 0, array.length, 0)); return; }