Skip to content

A simple ASP.NET Core wiki that we are working on during live coding streams

License

Notifications You must be signed in to change notification settings

paulroho/CoreWiki

 
 

Repository files navigation

CoreWiki

A simple ASP.NET Core wiki that we are working on during live coding streams. It runs on Windows, Mac, Linux and Container. Core Wiki is an allusion to the Core App. This name was suggested by Shayne Boyer in the stream of the 27th/March. Initially this project is very basic and anyone who is learning ASP.NET Core 2.0 (Razor Pages) can use it to learn..

Jeff Fritz writes code live on video streams, and wants to give you a central place to ask questions, find samples, and links to projects and other materials referenced during the show.

Watch LIVE

Jeff currently presents on the following services. Choose the one that works for you:

You can find his current schedule on both services, and if you follow or subscribe to the channel you will be notified when the stream begins.

Get the Music!

Our friend Carl Franklin from .NET Rocks has graciously allowed us to play some of his Music to Code By during the stream. Buy the music, or get a subscription with the mobile app at www.musictoflowby.com

Ask Questions

If you want to know more about something or want to see a demo of something specific, you can ask Jeff by opening an issue and adding the 'Question' label.

The list of currently outstanding questions is available. When questions are answered, they are closed and links are added to the wrap-up blog post for the stream they were answered in.

Guests

I enjoy having guests join me for some pair-programming, because we're always going to learn something new together.

Jeff's Setup

Jeff has written about how he has the hardware configured as well as the software to produce stream on his blog.

  • Jeff uses Posh-Git to make the Powershell prompt easier to navigate while working with Git repositories
  • When coding with a guest, Jeff and the guest use Visual Studio Live Share to work on code on screen at the same time.
  • Jeff uses a bunch of great Visual Studio extensions, and you can find that list on the WebTools repository.

Watch recordings

Archive of all shows from the stream can be found on Jeff's YouTube 'Building the CoreWiki' playlist.

Date Topic
March 27, 2018 From DevIntersection in Orlando, ASP.NET Core with guest Shayne Boyer
March 29, 2018 Back in Philly working on our new Wiki project - Start 00:52:50
April 5, 2018 Building a Wiki with ASP.NET Core - Updating to Bootstrap 4 - Start 00:28:40
April 10, 2018 Pair-programming with Jon Skeet, Handling Dates and Times
April 12, 2018 Pair-programming with YOU! Your .NET questions and pull-requests - Start 00:23:05
April 14, 2018 Coding ASP.NET Core: Building a Wiki
April 19, 2018 Chill coding today.. good music, good code, and YOU!
May 3, 2018 Answering your questions, reviewing pull-requests, and May is for Macs continues! - Start 00:22:55
May 5, 2018 ASP.NET Core, live interactions with SignalR, and YOUR pull requests - No Video Available
May 22, 2018 May is for Macs - Reviewing GitHub scoreboard widget and working on our Wiki - Start 01:09:27
May 24, 2018 May is for Macs - Working with Gravatar and Updating to ASP.NET Core 2.1
May 26, 2018 May is for Macs - Building an RSS Feed and adding some AI to our Bot - Start 00:18:47
May 29, 2018 May is for Macs - Reviewing Pull Requests and making the realtime web with SignalR
May 31, 2018 The end of May is for Macs - Completing our realtime GitHub scoreboard SignalR - First hour
June 2, 2018 Finishing the GitHub Scoreboard and merging YOUR pull-requests - First hour
June 7, 2018 Dotnet global tools and reviewing pull requests to the CoreWiki project
June 9, 2018 DotNet Global Tools - Delivering Sample Code Easier than Ever - Start 00:32:48
June 12, 2018 Upgrading to ASP.NET Core 2.1.1 and finishing our .NET global tool - Start 00:24:07
June 14, 2018 Monitoring Applications with Isaac Levin
June 16, 2018 Authorization in C# and ASP.NET Applications, plus YOUR Pull Requests - Start 00:15:20
June 19, 2018 Notifications and Razor Pages in ASP.NET Core with Amanda Iverson
June 23, 2018 Reviewing Pull Requests and talking about ASP.NET Performance
June 28, 2018 Completing historical data storage and reviewing your pull requests
June 30, 2018 Reviewing Pull Requests and Discussing Dependency Injection - Last 20 minutes
July 3, 2018 Building a user-interface to compare wiki article versions
July 5, 2018 Day after Independence Day, building web pages with ASP.NET Core - Start 00:41:15
July 7, 2018 Refactoring and Pull requests | C# | ASP.NET Core - Start 00:29:45 for about 15 minutes

1) Functionality that have already been implemented

HomePage - It's not a page or a feature. This is a default article that is presented as if it were the Home. When the user navigate to /Details, if topicName is not specified, the application redirect to default Article (HomePage)

Header Menu

  • Allows the users navigate to the Default article (HomePage). [Back to Home (CoreWiki)]
  • Allows the users navigate to LatestChanges articles feature.[LatestChanges]
  • Allows the users navigate to Create new article feature. [Create new article]
  • Allows the users navigate to All articles feature. [All]

Details

  • Allows the users see details of article.
  • Allows the users navigate to Edit feature. [Edit]
  • Allows the users navigate to the Default Article (HomePage). [Back to Home]
  • Allows the users see comments list
  • Allows the users add new comment[New Comment]

Create

  • Allows the users create a new article. When success, redirect the user to Details Feature. Otherwise, stay in the page and show error message. [Create]
  • Allows the users to navigate to the default article (HomePage). [Back to Home]

Edit

  • Allows the users change the article (Topic, Published and Content).
  • Allows the users navigate to the default article (HomePage). [Back to Home]

Delete

  • Allows the users delete the article (Topic, Published and Content).
  • Allows the users navigate to the default article (HomePage). [Back to Home]

LatestChanges

  • Allows the users see the last 10 articles. Ordered by Published Date.
  • Allows the users navigate to Edit feature. [Edit]
  • Allows the users navigate to Delete feature. [Delete]
  • Allows the users navigate to Details feature. [Detail]
  • Allows the users navigate to Create new article feature. [New article]
  • Allows the users navigate to the default article (HomePage).[Back to Home]

List All

  • Allows the users see ALL articles. Ordered by Topic.
  • Allows the users navigate to Edit feature. [Edit]
  • Allows the users navigate to Delete feature. [Delete]
  • Allows the users navigate to Details feature. [Detail]
  • Allows the users navigate to Create new article feature. [New article]
  • Allows the users navigate to the default article (HomePage).[Back to Home]
  • Allows the users navigate to Latest Changes feature. [Latest Changes]

search engine friendly URL's

[Description]

NotFound

  • Occurs, always which an page is not found.

Error

  • When an exception occur, o user is redirected to error page. [Not Simulated].

2) Topics covered in previous streams

Lessons - Visual Studio Live Sharing Extension

  • Visual Studio Community x Visual Studio Code
  • Visual Studio Community x Visual Studio Community

Lessons - GitHub

  • Create New Repository
  • Create Branch (Master, Dev, project_VersionsAndRatings)
  • Create New Project
  • Add Issues to Project
  • Create/Merge/Close Pull Request
  • Create/Close Issues
  • Add tags to Issues
  • Merge Branchs

Lessons - Git Cli

  • Commit
  • Push
  • Clone
  • Status
  • Checkout
  • Merge
  • [Others ...]

Lessons - Nuget

  • Install Packages

Lessons - DOTNET Cli

  • Dotnet new globaljson --sdk-version 2.0.2

Lessons - ASP.NET Core

  • Navigation
  • Razor Pages
    • BindProperty
    • RedirectPage
  • Routing
    • Customization
    • Constraint
  • Dependency Injection
  • Tag Helpers
    • Install and Use External
    • Create
  • Validation Error UI
  • Server-Side Validation
  • Client-Side Validation
  • Configure Minification
  • Configure Bundling
  • Data Model
    • Add Data Model to a Razor Pages
    • Add Database connection string
    • Register the database context
    • Add database context class
    • Scaffold the Model
    • DataType Attributes
    • ModelState Validation
  • Data Access
    • Pagination

Lessons - Entity Framework Core

  • Code First Database
  • Migrations
    • Add-Migration
    • Update-Database
  • Seed
  • CRUD (Create, Read, Update e Delete)
  • Update concurrency exception handling
  • Add new unique index
  • Add new column

Lessons - UI

  • Bootstrap 4
    • Cards

Lessons - Continuous Integration

  • AppVeyor
  • Docker file
  • TravisCI

About

A simple ASP.NET Core wiki that we are working on during live coding streams

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 61.5%
  • C# 38.0%
  • PowerShell 0.2%
  • Shell 0.2%
  • JavaScript 0.1%
  • Dockerfile 0.0%