Skip to content

Instantly share code, notes, and snippets.

View ramandeep-singh-1983's full-sized avatar
💭
Seems like a case of the Mondays Peter!

Ramandeep Singh ramandeep-singh-1983

💭
Seems like a case of the Mondays Peter!
View GitHub Profile
/// <summary>
/// Retrieves the access token required to access the Power BI Pro account data.
/// </summary>
/// <returns>Access token required to access Power BI reports</returns>
/// <response code="200">OK</response>
/// <response code="401">Unauthorized</response>
// GET: api/reports/accessToken
[HttpGet]
[Route("api/reports/accessToken")]
public async Task<IHttpActionResult> GetAccessToken()
@gitaarik
gitaarik / git_submodules.md
Last active April 22, 2025 19:46
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of usecases of submodules:

  • Separate big codebases into multiple repositories.