- Configure git
- Install nvm
- Install node 10
- Install create-next app
- Clone with create-next-app
-
npx create-next-app --example blog-starter blog-starter-app
-
cd blog-starter-app && yarn dev
npx create-next-app --example blog-starter blog-starter-app
cd blog-starter-app && yarn dev
Recently, Microsoft announced that all VS Codespaces are migrating to GitHub. At this time, support for self-hosted Codespaces will be removed in favor of GitHub's cloud environments.
If you are looking to host a VS Code server on your own infastructure, code-server is the solution.
https://google.com |
We are very excited to join the Github Discussions beta! 🎉
Discussions will be used for talking about anything code-server. Ask questions, share guides, and showcase your code-server projects!
If you have a bug or a feature request, please create an issue.
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace PetApp | |
{ | |
public class Pets | |
{ |
using System; | |
namespace numberSorter | |
{ | |
class Program | |
{ | |
// the definition of the delegate function data type | |
delegate string sortingFunction(string[] a); | |
static void Main(string[] args) |
using System; | |
namespace Salary | |
{ | |
class Program | |
{ | |
//struct employee | |
//{ | |
//public string sName; |
using System; | |
using System.Timers; | |
namespace _3questions_clone | |
{ | |
class Program | |
{ | |
static bool bTimeOut = false; |