CSE224 project 2 TritonHTTP

# TritonHTTP ## Spec Summary Here we provide a concise summary of the TritonHTTP spec. You should read the spec doc for more details and clarifications. ### HTTP Messages TritonHTTP follows the [general HTTP message format](https://developer.mozilla.org/en-US/docs/Web/HTTP/Messages). And it has some further specifications: – HTTP version supported: `HTTP/1.1` – Request method supported: `GET` – Response status […]

CSE224 project 2 TritonHTTP Read More »

CSE 224 Project 5

# Instructions to extend project 4 1. Make a copy of your solution if you want to: “`console mkdir proj5 cp -r proj4/* proj5 2. Rename all module paths from “proj4” to “proj5” (you may have more that are not shown here) “`console $ grep -r proj4 ./ cmd/SurfstoreServerExec/main.go: “cse224/proj4/pkg/surfstore” cmd/SurfstoreClientExec/main.go: “cse224/proj4/pkg/surfstore” go.mod:module cse224/proj4 3.

CSE 224 Project 5 Read More »

Scalable Surfstore Golang Project 4

# Scalable Surfstore ## Extend your surfstore project 1. Make a copy of your solution if you want to: mkdir proj4 cp -r proj3/* proj4 2. copy over consistent hashing files and new new .proto service defination mkdir cmd/SurfstorePrintBlockMapping cp /yourPath/starter-code/cmd/SurfstorePrintBlockMapping/main.go cmd/SurfstorePrintBlockMapping/ cp /yourPath/starter-code/pkg/surfstore/ConsistentHashRing.go pkg/surfstore cp /yourPath/starter-code/pkg/surfstore/SurfStore.proto pkg/surfstore cp /yourPath/starter-code/pkg/surfstore/SurfstoreInterfaces.go pkg/surfstore 4. manually change MetaStore.go

Scalable Surfstore Golang Project 4 Read More »

COMP0130 Coursework 02

DEPARTMENT OF COMPUTER SCIENCE, UNIVERSITY COLLEGE LONDON COMP0130 Coursework 02: Graph-based Optimisation and SLAM February 25, 2021 • Assignment Release Date: Thursday 25th February, 2021 • Assignment Submission Date: 09:00 Monday 22nd March, 2021 • Weighting: 33% of module total • Final Submission Format: a PDF file containing a report, and a zip file containing

COMP0130 Coursework 02 Read More »

COMP0130 Coursework 02 Graph based Optimisation and SLAM

DEPARTMENT OF COMPUTER SCIENCE, UNIVERSITY COLLEGE LONDON COMP0130 Coursework 02: Graph-based Optimisation and SLAM 1 Overview Assignment Release Date: Saturday 5th March, 2022 Assignment Submission Date: 16:00 Friday 25th March, 2022 Weighting: 33% of module total Final Submission Format: a PDF file containing a report, and a zip file containing source code. Coursework Description Current

COMP0130 Coursework 02 Graph based Optimisation and SLAM Read More »

COMP1110 Assignment 1

COMP1110 Assignment 1 The assignment is based on a simple children’s puzzle called Apple Twist, made by SmartGames, a producer of educational games. The design of the game and all imagery in this assignment comes from their Apple Twist game. Figure 1: Apple Twist product photo The game comes with 60 pre-defined challenges, organised into

COMP1110 Assignment 1 Read More »

CS186 Project 3 Joins and Query Optimization

Part 0: Skeleton Code To read, or not to read, that is the question In this project you’ll be implementing some common join algorithms and a limited version of the Selinger optimizer. We’ve provided a brief introduction into the new parts of the code base you’ll be working with. For Part 1 we recommend you

CS186 Project 3 Joins and Query Optimization Read More »