- Open 'Settings' -> 'Universal Access' -> 'Pointing and clicking' -> 'Mouse keys'
- Turn that option ON
- Now you will be able to move cursor with numpad but the speed will be extremely slow.
- Run the following commands in terminal to set a good to do speed :
sudo apt-get install xkbset
xkbset ma 60 10 10 5 2
This file contains 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
---------------------------------------------------TEAM-CURIE------------------------------------------------------------ | |
!/bin/bash | |
actual_dir=$PWD | |
git clone https://github.com/Jairohc/team-curie.git | |
cd team-curie | |
cd submission_scripts | |
#BASH | |
bash 1_bash.sh > bash_tmp | |
bash 1_bash_tiffany.sh > bash_2_tmp | |
#ruby |
This file contains 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
/* | |
This is the script which can find cost spent on Zomato.com | |
Step 1: Visit Zomato.com, 'Profile' and click on 'Order History' | |
Step 2: Load all the orders by scrolling down and clicking on 'Load more' until it appears | |
Step 3: Run below script in Console (CTRL + SHIFT + I or CTRL + ALT + I) by copying/pasting after '>>' and press ENTER | |
*/ | |
costs = $('.cost b').get() | |
cost_regex = /\d+.\d*/g | |
total_cost = 0 |
This file contains 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
#!/usr/bin/env node | |
/* | |
Submit code from stdin to carbon.now.sh and return a url to a new tweet containing a screenshot | |
carbon.now.sh authors: https://dawnlabs.io/ | |
carbonify author: Nick Sweeting <[email protected]> | |
MIT License 2017 | |
*/ |