- Track Active Item in Solution Explorer: auto jump to active file in Solution Explorer
C:\Program Files\BraveSoftware\Brave-Browser\Application\brave.exe
--profile-directory=dev --auto-open-devtools-for-tabs -incognito
# Credit: internet | |
Set-ExecutionPolicy RemoteSigned | |
# Install Chocolatey https://chocolatey.org/install | |
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
# Install Boxstarter: | |
. { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force |
[■,■,■,■].map(■→●) ⇒ [●,●,●,●] | |
[■,●,■,▲].filter(■→true) ⇒ [■,■] | |
[■,●,■,▲].find(●→true) ⇒ ● | |
[■,●,■,▲].findIndex(●→true) ⇒ 1 | |
[■,●,■,▲].fill(●) ⇒ [●,●,●,●] | |
[■,●,■,▲].some(●→true) ⇒ true | |
[■,●,■,▲].every(●→true) ⇒ false | |
[ ].some(●→true) ⇒ false | |
[ ].every(●→true) ⇒ true |
git log --topo-order --all --graph --date=local --pretty=format:'%C(green)%h%C(reset) %><(55,trunc)%s%C(red)%d%C(reset) %C(blue)[%an]%C(reset) %C(yellow)%ad%C(reset)%n'
namespace MyApp.Web.Security | |
{ | |
using System; | |
using System.Configuration; | |
using System.Reflection; | |
using System.Web; | |
using System.Web.Configuration; | |
public class MachineKeys | |
{ |
If the issue occurs in Safe Mode, try the methods listed below.
Reset the power plans to default and see if the shut down time is reduced.
Search CMD from the Start menu and choose Command Prompt (admin). Copy paste the following command and hit Enter: powercfg –restoredefaultschemes Once the command is executed, shut down the machine to see if the issue persists.
You'll find the talks here
Approaching frontend as a backend developer, Svelte feels surprisingly pythonic. Let's take a quick look at what's familiar, what's foreign, and how to explore the gap.
> Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
--Restart
> dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
> dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
--Restart