Skip to content

Instantly share code, notes, and snippets.

View Recelis's full-sized avatar
🌌
Swirling around the Milky Way

Jacky Recelis

🌌
Swirling around the Milky Way
  • Brisbane
View GitHub Profile
@Recelis
Recelis / InMemoryQuestionnaireService.cs
Created July 9, 2025 10:54
InMemoryQuestionnaireService a CRUD for an inmemory C# application that I realised I don't need
using LifeTracker.Dto;
using LifeTracker.Models;
namespace LifeTracker.Services;
public class InMemoryQuestionnaireService : IQuestionnaireService
{
List<Questionnaire> _questionnaires { get; } = new List<Questionnaire>();
public InMemoryQuestionnaireService()
{
@Recelis
Recelis / bilgy-beagle-tribute-page.markdown
Last active January 12, 2017 03:45
Bilgy Beagle Tribute Page

Bilgy Beagle Tribute Page

This is the first challenge of the free code camp course. Here I'll be using HTML with Bootstrap to build a tribute page for beagles.

A Pen by Jacky on CodePen.

License.