https://towardsdatascience.com/all-you-need-to-know-to-build-your-first-llm-app-eb982c78ffac
https://www.josean.com/posts/terminal-setup
http://www.darwinbiler.com/openstack-creating-and-attaching-a-volume-into-an-instance/
xinput --list-props 13 | |
Device 'Elan Touchpad': | |
Device Enabled (169): 1 | |
Coordinate Transformation Matrix (171): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000 | |
libinput Tapping Enabled (306): 1 | |
libinput Tapping Enabled Default (307): 0 | |
libinput Tapping Drag Enabled (308): 1 | |
libinput Tapping Drag Enabled Default (309): 1 | |
libinput Tapping Drag Lock Enabled (310): 0 | |
libinput Tapping Drag Lock Enabled Default (311): 0 |
xinput --set-prop 15 171 4.000000, 0.000000, 0.000000, 0.000000, 5.000000, 0.000000, 0.000000, 0.000000, 1.000000 |
# increase the trackpad tracking speed ( increase it by 4 times ) | |
xinput --set-prop 13 171 4.000000, 0.000000, 0.000000, 0.000000, 5.000000, 0.000000, 0.000000, 0.000000, 1.000000 | |
# increase the apple mouse tracking speed ( increase it by 4 times ) | |
xinput --set-prop 18 171 4.000000, 0.000000, 0.000000, 0.000000, 5.000000, 0.000000, 0.000000, 0.000000, 1.000000 | |
## enable tap-to-click | |
xinput --set-prop 13 306 1 |
global | |
log /dev/log local0 | |
log /dev/log local1 notice | |
chroot /var/lib/haproxy | |
user haproxy | |
group haproxy | |
daemon | |
defaults | |
log global |
global | |
log /dev/log local0 | |
log /dev/log local1 notice | |
chroot /var/lib/haproxy | |
user haproxy | |
group haproxy | |
daemon | |
defaults | |
log global |
set -o vi | |
#stty erase ^H | |
alias xb="xterm -fg lightgreen -bg black -sl 5000 -sb -T dark &" | |
alias xg="xterm -fg lightgreen -bg grey20 -sl 5000 -sb -T dark &" | |
alias xa="xterm -fg black -bg white -sl 5000 -sb -T white &" | |
alias xc='xterm -fg black -bg bisque -sl 5000 -sb -T white &' | |
alias function="typeset -f" |
sudo apt update | |
sudo apt install firefox python3-pip xvfb x11-utils --yes | |
sudo -H pip3 install bpython selenium | |
export DISPLAY=:2 | |
Xvfb $DISPLAY -ac & | |
export GECKO_DRIVER_VERSION='v0.24.0' | |
wget https://github.com/mozilla/geckodriver/releases/download/$GECKO_DRIVER_VERSION/geckodriver-$GECKO_DRIVER_VERSION-linux64.tar.gz | |
tar -xvzf geckodriver-$GECKO_DRIVER_VERSION-linux64.tar.gz |
[tool.poetry] | |
name = "nlp_fasttext" | |
version = "0.1.0" | |
description = "" | |
authors = ["Nambi Sankaran <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "3.7.0" | |
fasttext = "0.9.2" | |
flask_restx = "0.2.0" |