Create an ERD and then a database representing these requirements:
- First name
- Last name
- Slack handle
- The student's cohort
- The collection of exercises that the student is currently working on
| namespace FeetWithWith; | |
| public class FootMan : IMakeFeet | |
| { | |
| readonly HttpClient _httpClient; | |
| readonly string _apiKey; // Your OpenAI API key | |
| readonly string _dalleApiUrl = "https://api.openai.com/v1/images/generations"; | |
| readonly string _gptApiUrl = "https://api.openai.com/v1/completions"; |
| using System; | |
| using System.IO; | |
| using System.Threading.Tasks; | |
| using Microsoft.AspNetCore.Http; | |
| using Microsoft.AspNetCore.Mvc; | |
| namespace Demo.Web.Controllers | |
| { | |
| public class UploadController : Controller | |
| { |
As a mediocre superbowl naming person
I want an application that will translate numbers into roman numerals
So that I don't make a mistake when naming all of the superbowls.
| Number | Roman Numeral |
|---|---|
| 1 | I |
| 5 | V |
Scaffold your application in Visual Studio:
In the Index.cshtml in your Views/Home/ folder (correlates to the Home Controller):
I hereby claim:
To claim this, I am signing this object:
| <Response> | |
| <Speak>Hello, welcome to the Jungle!</Speak> | |
| </Response> |
| public class TransactionalInvoker : IEnlistmentNotification | |
| { | |
| bool _inTransaction; | |
| readonly List<Action> _commitActions = new List<Action>(); | |
| public void Invoke(Action action) | |
| { | |
| if (_inTransaction) | |
| { | |
| _commitActions.Add(action); |
| public class EventUpconverter<TSource, TDestination> : IUpconvertEvents<TSource, TDestination> | |
| where TSource : class,IEvent | |
| where TDestination : class,IEvent | |
| { | |
| readonly IMappingEngine _mapper; | |
| public EventUpconverter(IMappingEngine mapper) | |
| { | |
| _mapper = mapper; | |
| } |
| [Story(AsA = "car manufacturer", | |
| IWant = "a factory that makes the right cars", | |
| SoThat = "I can make money")] | |
| public class building_a_toyota : Scenario | |
| { | |
| static CarFactory _factory; | |
| static Car _car; | |
| given a_car_factory = () => | |
| { |