Skip to content

Instantly share code, notes, and snippets.

View eduuh's full-sized avatar
🎯

dushg eduuh

🎯
  • Nairobi
  • 15:59 (UTC +03:00)
View GitHub Profile
@eduuh
eduuh / zshrc
Created February 15, 2020 22:55 — forked from aquaductape/zshrc
# Luke's config for the Zoomer Shell
# Enable colors and change prompt:
autoload -U colors && colors
PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magenta]%}%~%{$fg[red]%}]%{$reset_color%}$%b "
# History in cache directory:
HISTSIZE=10000
SAVEHIST=10000
HISTFILE=~/.cache/zsh/history
{"lastUpload":"2020-07-26T00:18:46.167Z","extensionVersion":"v3.4.3"}
@eduuh
eduuh / README-Template.md
Created November 10, 2019 03:39 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@eduuh
eduuh / program.cs
Last active November 8, 2019 05:23
Migrate the database automatically to the latest Migrations
public static void Main(string[] args)
{
var host = CreateWebHostBuilder(args).Build();
using (var scope = host.Services.CreateScope())
{
var Services = scope.ServiceProvider;
try
{
var context = Services.GetRequiredService<DataContext>();