I hereby claim:
- I am gagarine on github.
- I am perdrisat (https://keybase.io/perdrisat) on keybase.
- I have a public key ASDCDme3531K0n5Y30Urub_ld7T8w3Nu4-msaTcuqTNqQgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
### Packages | |
install.packages(c( "rstudioapi", "corrplot")) | |
suppressWarnings( | |
suppressMessages({ | |
library(rstudioapi) | |
library(readr) | |
library(psych) |
Fish is a smart and user-friendly command line (like bash or zsh). This is how you can instal Fish on MacOS and make your default shell.
Note that you need the https://brew.sh/ package manager installed on your machine.
brew install fish
https://docs.google.com/presentation/d/1a5dlL01Nh5tnV3isrRC1Hl2DFPci97MLHF5xKhiEv80/edit?usp=sharing | |
https://docs.google.com/presentation/d/1YxeXNqGYyXbpnA_3N8G7VXGcTLDj_vO_YPFL03f-gdk/edit?usp=sharing |
In the terminal launch the following command and restart Firefox: | |
sudo defaults write /Library/Preferences/org.mozilla.firefox EnterprisePoliciesEnabled -bool FALSE | |
To know more about policies => https://support.mozilla.org/en-US/products/firefox-enterprise/policies-customization-enterprise/policies-overview-enterprise |
#!/bin/sh | |
echo 'Cleanup...' | |
rm MyProject-package.zip | |
rm -r node_modules | |
echo 'Build...' | |
npm install | |
npm run build | |
zip -r MyProject-package.zip . -x '.git/*' -x 'src/*' -x '.idea/*' -x '.env' | |
echo 'Deploy...' | |
az webapp deployment source config-zip --resource-group MyGroup --name MyProject --src MyProject-package.zip |
Chose between natural mode like MacOS or Windows default mode.
You can do this by going to Start Menu, type PowerShell, and click Run as Administrator.
$mode = Read-host "How do you like your mouse scroll (0 or 1)?"; Get-PnpDevice -Class Mouse -PresentOnly -Status OK | ForEach-Object { "$($_.Name): $($_.DeviceID)"; Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Enum\$($_.DeviceID)\Device Parameters" -Name FlipFlopWheel -Value $mode; "+--- Value of FlipFlopWheel is set to " + (Get-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Enum\$($_.DeviceID)\Device Parameters").FlipFlopWheel + "`n" }