Skip to content

Commit

Permalink
Fixed iframe
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenhuynh committed Dec 12, 2023
1 parent 9d427a6 commit 50793ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _posts/2023-12-11-aiden_review.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ type: review
![commits]({{site.baseurl}}/images/aiden/commits.png)

## Video:
<iframe src="https://drive.google.com/file/d/1FtB2JTDNd5u2qorQO7ifWVUbPY95u_1A/preview" width="640" height="480">
<iframe src="https://drive.google.com/file/d/1FtB2JTDNd5u2qorQO7ifWVUbPY95u_1A/preview" width="640" height="480"></iframe>

## Reflection:
### Learning:
Expand Down
2 changes: 1 addition & 1 deletion _site/assets/js/search-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

"post0": {
"title": "Individual Review Ticket - Aiden",
"content": "Features/Runtime: . Main sort page: Edited Toby’s CSS to make it more like the wireframe | Added functioning random list insert | Fixed scaling of number tiles | Added functioning user input list | . | . Backend . Sorting Algorithm Starters Wrote 6 algorithms for variants of bubble and selection sort | Example algorithm: For loop selection sort private static int[] selectionFor(int[] arr) { // For loop to iterate through whole array, except last value because it will already be sorted by then for (int i = 0; i &lt; arr.length - 1; i ++) { // Define the minimum index by setting it to the first element not iterated yet int minIndex = i; // For loop to iterate through all elements after previous run for (int j = i + 1; j &lt; arr.length; j ++) { // If selected value is lower than current minimum, set the new minimum if (arr[j] &lt; arr[minIndex]) { minIndex = j; } } // If the minimum is different from the current value, swap them if (minIndex != i) { int temp = arr[i]; arr[i] = arr[minIndex]; arr[minIndex] = temp; } } return arr; } printArr(selectionFor(test)); . | . | Backend integration: Moved algorithms from notebook to backend | Example algorithm: For loop selection sort public class ForSortSelection extends Selection { public ForSortSelection(){ super(&quot;Insertion Sort For Loop&quot;); } public ArrayList runSort(ArrayList arr){ super.list = arr; long startTime = System.nanoTime(); int n = arr.size(); // For loop to iterate through whole array, except last value because it will already be sorted by then for (int i = 0; i &lt; n - 1; i ++) { // Define the minimum index by setting it to the first element not iterated yet int minIndex = i; super.iterations += 1; // For loop to iterate through all elements after previous run for (int j = i + 1; j &lt; n; j ++) { super.iterations += 1; super.comparisons += 1; // If selected value is lower than current minimum, set the new minimum if (arr.get(j) &lt; arr.get(minIndex)) { minIndex = j; } } // If the minimum is different from the current value, swap them if (minIndex != i) { super.swaps.add(arr.get(minIndex)); super.comparisons += 1; int temp = arr.get(i); super.swaps.add(temp); arr.set(i,arr.get(minIndex)); arr.set(minIndex, temp); } } super.times.add(System.nanoTime() - startTime); return arr; } } . | . | . Key Commits: . Selection and Bubble Sorts | Main UI | . GitHub Analytics: . Frontend Commits | Backend Commits | Profile | . . Video: . ## Reflection: ### Learning: I have definitely gotten a lot more used to Java syntax (I don&#39;t forget semicolons every single time now), as I have done a lot more work with it than before. This is the most OOP I have done and honestly, I still don&#39;t enjoy doing it. ### Improvements: I need to be able to make myself work even if I do not feel strongly about the project. This was a very simple sorting algorithm project that was not at all hard to code and yet this is the lowest score I have gotten in the class because I simply did not want to work on it. I don&#39;t think the lack of challenge necessarily demotivated me but the subject matter definitely did. I enjoy making things for fun that can be used in outside contexts, but this project is pretty much exclusively going to be used just for grading once and then never again. I understand that this is teaching us analysis, but I think this could all be gathered from a student lesson or tech talk (we did do one in CSP). I also need to work harder as a Scrum Master, because I am still struggling to keep all members working. After all, they are also demotivated probably for the same reasons as me. Primarily, I would like to increase communication within my group, and to do so, I will likely start moving away from Slack, because it seems that some people do not use it outside of class. I was not able to make a video to demonstrate my features working because the team could not pull together in the last step of integrating the frontend and backend, as we lacked communication as addressed before. ### Summary: - Learned Java Syntax - Most practice with OOP - Need better collaboration - Need better communication - Need more motivation",
"content": "Features/Runtime: . Main sort page: Edited Toby’s CSS to make it more like the wireframe | Added functioning random list insert | Fixed scaling of number tiles | Added functioning user input list | . | . Backend . Sorting Algorithm Starters Wrote 6 algorithms for variants of bubble and selection sort | Example algorithm: For loop selection sort private static int[] selectionFor(int[] arr) { // For loop to iterate through whole array, except last value because it will already be sorted by then for (int i = 0; i &lt; arr.length - 1; i ++) { // Define the minimum index by setting it to the first element not iterated yet int minIndex = i; // For loop to iterate through all elements after previous run for (int j = i + 1; j &lt; arr.length; j ++) { // If selected value is lower than current minimum, set the new minimum if (arr[j] &lt; arr[minIndex]) { minIndex = j; } } // If the minimum is different from the current value, swap them if (minIndex != i) { int temp = arr[i]; arr[i] = arr[minIndex]; arr[minIndex] = temp; } } return arr; } printArr(selectionFor(test)); . | . | Backend integration: Moved algorithms from notebook to backend | Example algorithm: For loop selection sort public class ForSortSelection extends Selection { public ForSortSelection(){ super(&quot;Insertion Sort For Loop&quot;); } public ArrayList runSort(ArrayList arr){ super.list = arr; long startTime = System.nanoTime(); int n = arr.size(); // For loop to iterate through whole array, except last value because it will already be sorted by then for (int i = 0; i &lt; n - 1; i ++) { // Define the minimum index by setting it to the first element not iterated yet int minIndex = i; super.iterations += 1; // For loop to iterate through all elements after previous run for (int j = i + 1; j &lt; n; j ++) { super.iterations += 1; super.comparisons += 1; // If selected value is lower than current minimum, set the new minimum if (arr.get(j) &lt; arr.get(minIndex)) { minIndex = j; } } // If the minimum is different from the current value, swap them if (minIndex != i) { super.swaps.add(arr.get(minIndex)); super.comparisons += 1; int temp = arr.get(i); super.swaps.add(temp); arr.set(i,arr.get(minIndex)); arr.set(minIndex, temp); } } super.times.add(System.nanoTime() - startTime); return arr; } } . | . | . Key Commits: . Selection and Bubble Sorts | Main UI | . GitHub Analytics: . Frontend Commits | Backend Commits | Profile | . . Video: . Reflection: . Learning: . I have definitely gotten a lot more used to Java syntax (I don’t forget semicolons every single time now), as I have done a lot more work with it than before. This is the most OOP I have done and honestly, I still don’t enjoy doing it. . Improvements: . I need to be able to make myself work even if I do not feel strongly about the project. This was a very simple sorting algorithm project that was not at all hard to code and yet this is the lowest score I have gotten in the class because I simply did not want to work on it. I don’t think the lack of challenge necessarily demotivated me but the subject matter definitely did. I enjoy making things for fun that can be used in outside contexts, but this project is pretty much exclusively going to be used just for grading once and then never again. I understand that this is teaching us analysis, but I think this could all be gathered from a student lesson or tech talk (we did do one in CSP). . I also need to work harder as a Scrum Master, because I am still struggling to keep all members working. After all, they are also demotivated probably for the same reasons as me. Primarily, I would like to increase communication within my group, and to do so, I will likely start moving away from Slack, because it seems that some people do not use it outside of class. . I was not able to make a video to demonstrate my features working because the team could not pull together in the last step of integrating the frontend and backend, as we lacked communication as addressed before. . Summary: . Learned Java Syntax | Most practice with OOP | Need better collaboration | Need better communication | Need more motivation | .",
"url": "http://localhost:4002/sortsortsort/2023/12/11/aiden_review.html",
"relUrl": "/2023/12/11/aiden_review.html",
"date": " • Dec 11, 2023"
Expand Down

0 comments on commit 50793ad

Please sign in to comment.