tags | title |
---|---|
vscode, material,customize folder icons vscode material theme |
How to add custom folder icon in Material icons |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ref - https://superuser.com/questions/573602/chrome-not-saving-passwords-and-not-auto-filling-existing-login-passwords/1325741#1325741 | |
""" | |
If the settings to store passwords are enabled, but it still doesn't work, removing the password database might help. | |
Here are steps: | |
Quit Chrome. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ref : https://news.ycombinator.com/item?id=22672682 | |
You can also do a per-directory _global_ git configuration, e.g. | |
in .gitconfig, you say: | |
[user] | |
name = Me Myself | |
email = [email protected] | |
signingkey = D34DB44F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Python Configuration | |
====================== | |
Find all versions : ls -ls /usr/bin/python* | |
Manage Active Version | |
========================== | |
Ref: http://web.mit.edu/6.00/www/handouts/pybuntu.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To install all currently supported python versions (python 3.6 is already pre-installed) including pip for Ubuntu 18.04 do the following: | |
# Install Python 3.7 System wide | |
echo "Installing Python 3.7..." | |
sudo -S add-apt-repository ppa:deadsnakes/ppa -y | |
sudo -S apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ | |
python3.7 \ | |
python3.7-dev \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Install build libraries | |
sudo apt-get install build-essential libssl-dev libgflags-dev libreadline-dev libsqlite3-dev libsnappy-dev zlib1g-dev libbz2-dev liblz4-dev | |
#If using Python3.7 via Dead snakes PPA install python3.7-dev | |
sudo apt-get install python3.7-dev | |
#Clone repo | |
git clone https://github.com/facebook/rocksdb.git | |
#build locally (https://github.com/facebook/rocksdb/blob/master/INSTALL.md) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""gunicorn WSGI server configuration.""" | |
from multiprocessing import cpu_count | |
from os import environ | |
def max_workers(): | |
return cpu_count() * 2 + 1 | |
# Config Properties | |
bind = '0.0.0.0:' + environ.get('PORT', '8080') | |
max_requests = 1000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Save file as ~/.ssh/config | |
# Add permissions chmod 600 ~/.ssh/config | |
# Optional permissions chmod $USER ~/.ssh/config | |
##default for all hosts## | |
Host * | |
ForwardAgent No | |
ForwardX11 no | |
Compression yes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# pylint.rc file in workspace folder | |
======================================== | |
[MASTER] | |
# A comma-separated list of package or module names from where C extensions may | |
# be loaded. Extensions are loading into the active Python interpreter and may | |
# run arbitrary code. | |
extension-pkg-whitelist= | |
# Add files or directories to the blacklist. They should be base names, not |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# run on win computer / r version | |
setwd("C:/Users/pavan/RLibrary/") # or any other existing temp directory | |
packages <- installed.packages()[,"Package"] | |
save(packages, file="Rpackages") | |
# run on ubuntu computer / r version | |
setwd("/RLibrary") # or any other existing temp directory | |
load("Rpackages") | |
for (p in setdiff(packages, installed.packages()[,"Package"])) |
NewerOlder