Skip to content

Instantly share code, notes, and snippets.

View explorest's full-sized avatar

Mumtaz Ali Shah explorest

  • Pakistan
View GitHub Profile
@explorest
explorest / dotnetlayout.md
Created June 24, 2021 04:58 — forked from davidfowl/dotnetlayout.md
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/
@explorest
explorest / markdown-syntax-basics.md
Created June 1, 2021 21:42 — forked from luvuong-le/markdown-syntax-basics.md
Markdown Basic Syntax Sheet

Headings

Heading 1

Heading 2

Heading 3

Heading 6
@explorest
explorest / git.migrate
Created May 9, 2020 21:16 — forked from niksumeiko/git.migrate
Moving git repository and all its branches, tags to a new remote repository keeping commits history
#!/bin/bash
# Sometimes you need to move your existing git repository
# to a new remote repository (/new remote origin).
# Here are a simple and quick steps that does exactly this.
#
# Let's assume we call "old repo" the repository you wish
# to move, and "new repo" the one you wish to move to.
#
### Step 1. Make sure you have a local copy of all "old repo"
### branches and tags.
@explorest
explorest / clone_remote_branch.md
Created May 9, 2020 21:09 — forked from ff6347/clone_remote_branch.md
clone remote branch with git
@explorest
explorest / SqliteDemoClass
Last active August 29, 2015 14:13
Demo of connecting to , writing to , and reading from an embedded sqlite3 database
/*
Dated: 10 January 2015
Reference dlls: System, System.Data, Mono.Data.Sqlite
Resources: Platform specific sqlite3 binary executable should be there in the application directory