yarn add bootstrap
yarn add @popperjs/core
import "bootstrap"
import "../stylesheets/application"
Disable Laptop Keyboard in Ubuntu | |
Taken From :- https://blog.hostonnet.com/laptop-keyboard-ubuntu | |
To disable laptop built in keyboard in Ubuntu, first you need to identify the device id for keyboard. | |
Now run xinput –list command to get list of all input devices | |
hostonnet@pc4:~$ xinput --list | |
⎡ Virtual core pointer id=2 [master pointer (3)] |
["{\"twitter\":\"katyperry\",\"domain\":\"katyperry.com\",\"name\":\"KATY PERRY\",\"type\":\"celebrity\",\"twitter_user_id\":21447363}", "{\"twitter\":\"justinbieber\",\"domain\":\"smarturl.it\",\"name\":\"Justin Bieber\",\"type\":\"celebrity\",\"twitter_user_id\":27260086}", "{\"twitter\":\"taylorswift13\",\"domain\":\"grmypro.co\",\"name\":\"Taylor Swift\",\"type\":\"celebrity\",\"twitter_user_id\":17919972}", "{\"twitter\":\"rihanna\",\"domain\":\"rihannanow.com\",\"name\":\"Rihanna\",\"type\":\"celebrity\",\"twitter_user_id\":79293791}", "{\"twitter\":\"ladygaga\",\"domain\":null,\"name\":\"The Countess\",\"type\":\"celebrity\",\"twitter_user_id\":14230524}", "{\"twitter\":\"jtimberlake\",\"domain\":\"justintimberlake.com\",\"name\":\"Justin Timberlake\",\"type\":\"celebrity\",\"twitter_user_id\":26565946}", "{\"twitter\":\"TheEllenShow\",\"domain\":\"ellentube.com\",\"name\":\"Ellen DeGeneres\",\"type\":\"celebrity\",\"twitter_user_id\":15846407}", "{\"twitter\":\"britneyspears\",\"domain\":\"britney.lk\ |
/* | |
Anaconda default settings | |
*/ | |
{ | |
/* | |
Anaconda Tooltip Options | |
Sublime Text 3 supports tooltips since build 3070; if anaconda | |
runs in a ST3 installation equal to or newer than build 3070, it | |
can be configured to show tooltips for documentation and signatures. |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
The single most useful thing in bash SHELL CLI UNIX BASH Create ~/.inputrc and fill it with this:
"\e[A": history-search-backward "\e[B": history-search-forward This allows you to search through your history using the up and down arrows … i.e. type "cd" and press the up arrow and you'll search through everything in your history that starts with "cd".
It's a little bit like ctrl-r (mentioned in many of the comments below), but anchored to the start of the line, and the arrow keys allow you to scroll back and forth between matches.
sudo apt install curl | |
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - | |
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
sudo apt-get update | |
sudo apt-get install git-core zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev nodejs yarn | |
cd | |
git clone https://github.com/rbenv/rbenv.git ~/.rbenv |