Skip to content

Instantly share code, notes, and snippets.

View Mic-360's full-sized avatar
😵
I'm slow to respond.

Bhaumic Singh Mic-360

😵
I'm slow to respond.
View GitHub Profile
@Mic-360
Mic-360 / Emulator.md
Last active March 1, 2023 13:23
Android sdk

Android Emulator Setup in Windows without Android Studio | Flutter - Dev

Android SDK Commandline Tools

Commandline Tools

Extract the file.

Open PowerShell as Administrator and run:

@Mic-360
Mic-360 / settings.json
Last active June 12, 2023 07:39
winget
{
"$schema": "https://aka.ms/winget-settings.schema.json",
// For documentation on these settings, see: https://aka.ms/winget-settings
"source": {
"autoUpdateIntervalInMinutes": 3,
"autoUpdate": true,
"experimentalFeatures": true
},
@Mic-360
Mic-360 / Powershell$Profile
Last active June 12, 2023 07:40
Powershel Profile
oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH\zash.omp.json" | Invoke-Expression
Import-Module -Name Terminal-Icons
Import-Module -Name posh-git
Set-GithubCopilotAliases
function Set-PoshGitStatus {
$global:GitStatus = Get-GitStatus
$env:POSH_GIT_STRING = Write-GitStatus -Status $global:GitStatus
}