All public logs
Jump to navigation
Jump to search
Combined display of all available logs of CSE425S Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 06:08, 18 October 2020 Dennis.cosgrove talk contribs moved page Binary Tree Assignment to Binary Search Tree Assignment
- 05:10, 15 October 2020 Dennis.cosgrove talk contribs created page Remove First Assignment (Created page with "=Code to Implement= ==remove_first== fun remove_first(xs : ''a list, target : ''a) : ''a list = raise NotYetImplemented Remove the first item which matches <code>target...")
- 04:53, 13 October 2020 Dennis.cosgrove talk contribs created page Mutable List Assignment (Created page with "=Code to Implement=")
- 15:50, 9 October 2020 Dennis.cosgrove talk contribs created page Template:ClassSession (Created page with "style="background-color:#ccffcc;" | '''[https://wustl.zoom.us/j/{{{msg|{{{1|}}}}}} Class Session zoom]'''")
- 03:24, 8 October 2020 Dennis.cosgrove talk contribs created page Template:OfficeHourBonus (Created page with "'''[https://wustl.zoom.us/j/{{{msg|{{{2|}}}}}} {{{msg|{{{1|}}}}}} zoom]'''")
- 06:13, 17 September 2020 Dennis.cosgrove talk contribs created page Template:GrossmanCredit (Created page with "All credit for this assignment goes to [https://homes.cs.washington.edu/~djg/ Prof. Grossman] and his team at [https://www.cs.washington.edu/ UW].")
- 04:15, 15 September 2020 Dennis.cosgrove talk contribs created page Branch Assignment (Created page with "[https://en.wikipedia.org/wiki/L-system Lindenmayer system] thumb =Code to Implement= ==Branch== <nowiki>(define (branch length iter) (raise 'no...")
- 04:09, 15 September 2020 Dennis.cosgrove talk contribs moved page Branch and Snowflake Assignment to Snowflake Assignment
- 04:07, 15 September 2020 Dennis.cosgrove talk contribs moved page Midterm to Spreadsheet Assignment
- 15:09, 12 May 2020 Dennis.cosgrove talk contribs created page Coursera Setup (Created page with "=Coursera= * follow the link to [https://www.coursera.org/learn/programming-languages Programming Languages Part A] * click "Join For Free" in the top right corner. ::File:J...")
- 17:29, 20 April 2020 WikiSysop talk contribs created page TestYoutube (Created page with "Youtube test <youtube>9LssTi4X8jY</youtube> End Youtube test")
- 00:28, 27 March 2020 Dennis.cosgrove talk contribs created page Template:OfficeHour (Created page with "style="background-color:#ffffcc;" | '''[https://wustl.zoom.us/j/{{{msg|{{{2|}}}}}} {{{msg|{{{1|}}}}}} zoom]''' <!-- [https://www.mydigitalhand.org/enrollment/20762 hand]-->")
- 01:12, 16 March 2020 Dennis.cosgrove talk contribs created page Template:RacketToImplement (Created page with "<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #2424b3 solid;padding:0.5em;background-color: #e7e6fe"> <tr valig...")
- 19:30, 15 March 2020 Dennis.cosgrove talk contribs created page Racket Practice Problems E (Created page with "credit: [http://vault.hanover.edu/~skiadas/ Charilaos Skiadas] [https://www.coursera.org/learn/programming-languages-part-b/supplement/EtJIy/extra-practice-problems Coursera...")
- 19:07, 15 March 2020 Dennis.cosgrove talk contribs created page Racket Practice Problems D (Created page with "credit: [http://vault.hanover.edu/~skiadas/ Charilaos Skiadas] [https://www.coursera.org/learn/programming-languages-part-b/supplement/xf752/extra-practice-problems Coursera...")
- 17:05, 6 March 2020 Dennis.cosgrove talk contribs created page Midterm (Created page with "=Spreadsheet Examples= ==nums== This rather simple spreadsheet is comprised entirely of ints. {| class="wikitable" |1 |2 |3 |4 |- |10 |20 |30 |40 |} ==grades== In this sprea...")
- 06:39, 6 March 2020 Dennis.cosgrove talk contribs deleted page Mid (content was: "=A= =B=", and the only contributor was "Dennis.cosgrove" (talk))
- 06:38, 6 March 2020 Dennis.cosgrove talk contribs created page Mid (Created page with "=A= =B=")
- 06:37, 6 March 2020 Dennis.cosgrove talk contribs deleted page Mid (content was: "=A=", and the only contributor was "Dennis.cosgrove" (talk))
- 06:37, 6 March 2020 Dennis.cosgrove talk contribs created page Mid (Created page with "=A=")
- 04:59, 22 February 2020 Dennis.cosgrove talk contribs created page Template:CurriedFunction (Created page with "note: this function is [https://en.wikipedia.org/wiki/Currying curried].")
- 03:43, 22 February 2020 Dennis.cosgrove talk contribs deleted page Tree Assignment (content was: "We will build some of the Higher Order Function Hall of Fame inductees but for a tree datatype. datatype 'a...", and the only contributor was "Dennis.cosgrove" (talk))
- 16:57, 21 February 2020 Dennis.cosgrove talk contribs created page Binary Tree Assignment (Created page with "We will build some of the Higher Order Function Hall of Fame inductees but for a tree datatype. datatype 'a tree = LEAF | BRANCH of 'a tree * 'a * 'a tree File:Sorted bin...")
- 09:05, 14 February 2020 Dennis.cosgrove talk contribs created page SML Practice Problems C (Created page with "credit: [http://vault.hanover.edu/~skiadas/ Charilaos Skiadas] [https://www.coursera.org/learn/programming-languages/supplement/JXL99/extra-practice-problems Coursera Week 3...")
- 07:04, 14 February 2020 Dennis.cosgrove talk contribs created page Higher Order Functions Hall of Fame Assignment (Created page with "=Code To Implement= ==Map== {{JavaToImplement|MapHof|map|hof.map.assignment}} <nowiki>public static <T, R> ImmutableList<R> map(Function<T, R> f, ImmutableList<T> list)</now...")
- 07:00, 14 February 2020 Dennis.cosgrove talk contribs created page N Times Assignment (Created page with "=Code To Implement= ==NTimesHof== {{JavaToImplement|NTimesHof|nTimes|hof.ntimes.assignment}} <nowiki>public static <T> T nTimes(Function<T, T> f, int n, T x)</nowiki> ==NTi...")
- 06:49, 31 January 2020 Dennis.cosgrove talk contribs created page SML Practice Problems B (Created page with "[https://www.coursera.org/learn/programming-languages/supplement/JXL99/extra-practice-problems Coursera Week 3 Extra Practice Problems] =Code To Implement= {{SMLToImplement|pr...")
- 06:26, 31 January 2020 Dennis.cosgrove talk contribs created page Hearts Card Game Assignment (Created page with "[https://www.cse.wustl.edu/~cosgroved/courses/cse425s/spring20/studio_hearts.pdf Instructions]")
- 04:15, 21 January 2020 Dennis.cosgrove talk contribs created page Template:Pledge (Created page with "<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #2424b3 solid;padding:0.5em;background-color: #e7e6fe"> <tr valig...")
- 04:50, 20 January 2020 Dennis.cosgrove talk contribs created page Template:SMLToImplement (Created page with "<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #2424b3 solid;padding:0.5em;background-color: #e7e6fe"> <tr valig...")
- 04:43, 20 January 2020 Dennis.cosgrove talk contribs created page Template:SMLUnitTest (Created page with "<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #2424b3 solid;padding:0.5em;background-color: #e7e6fe"> <tr valig...")
- 05:49, 19 January 2020 Dennis.cosgrove talk contribs created page SML Practice Problems A (Created page with "[https://www.coursera.org/learn/programming-languages/supplement/U9go7/extra-practice-problems Coursera Week 2 Extra Practice Problems]")
- 03:21, 31 July 2019 Dennis.cosgrove talk contribs created page Template:Example (Created page with "<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #2424b3 solid;padding:0.5em;background-color: #e7e6fe"> <tr valig...")
- 03:14, 31 July 2019 Dennis.cosgrove talk contribs created page Template:Output (Created page with "<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #2424b3 solid;padding:0.5em;background-color: #e7e6fe"> <tr valig...")
- 03:02, 31 July 2019 Dennis.cosgrove talk contribs created page Template:Demo (Created page with "<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #2424b3 solid;padding:0.5em;background-color: #e7e6fe"> <tr valig...")
- 02:49, 31 July 2019 Dennis.cosgrove talk contribs created page Template:Performance (Created page with "<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #2424b3 solid;padding:0.5em;background-color: #e7e6fe"> <tr valig...")
- 08:21, 30 July 2019 Dennis.cosgrove talk contribs created page Iterable Immutable List Assignment (Created page with "=Code To Implement= ==Lists== {{JavaToImplement|Lists|nil<br>cons<br>brackets|immutable.list.assignment}} ===nil=== <nowiki>public static <E> ImmutableList<E> nil()</nowiki>...")
- 06:48, 30 July 2019 Dennis.cosgrove talk contribs created page Integer Range Assignment (Created page with "=Code To Implement= <nowiki>public static Iterable<Integer> minToMaxExclusive(int min, int maxExclusive)</nowiki>")
- 04:36, 17 July 2019 Dennis.cosgrove talk contribs deleted page File:Part b class hierarchy.png
- 04:24, 17 July 2019 Dennis.cosgrove talk contribs created page Render Part D Assignment (Created page with "In this studio we will evolve our code from Render_Part_C_Assignment to leverage mixins. File:Render_part_d_class_hierarchy.svg Continue editing files in the render/...")
- 04:20, 17 July 2019 Dennis.cosgrove talk contribs created page File:Render part c class hierarchy.svg (render_part_c_class_hierarchy.svg)
- 04:20, 17 July 2019 Dennis.cosgrove talk contribs uploaded File:Render part c class hierarchy.svg (render_part_c_class_hierarchy.svg)
- 04:20, 17 July 2019 Dennis.cosgrove talk contribs created page File:Render part d class hierarchy.svg (render_part_d_class_hierarchy.svg)
- 04:20, 17 July 2019 Dennis.cosgrove talk contribs uploaded File:Render part d class hierarchy.svg (render_part_d_class_hierarchy.svg)
- 04:20, 17 July 2019 Dennis.cosgrove talk contribs created page File:Render part b class hierarchy.svg (render_part_b_class_hierarchy.svg)
- 04:20, 17 July 2019 Dennis.cosgrove talk contribs uploaded File:Render part b class hierarchy.svg (render_part_b_class_hierarchy.svg)
- 05:46, 15 July 2019 Dennis.cosgrove talk contribs created page Render Part C Assignment (Created page with "Composite mixin")
- 05:19, 15 July 2019 Dennis.cosgrove talk contribs created page File:Part b class hierarchy.png
- 05:19, 15 July 2019 Dennis.cosgrove talk contribs uploaded File:Part b class hierarchy.png
- 02:54, 15 July 2019 Dennis.cosgrove talk contribs created page Render Part B Assignment (Created page with "WARNING: optional parameters in Ruby use a : and not = a la Python")