Ubuntu 20.04.3 LTS
- Power > When the Power Button is pressed
- Displays > Night Light on
- Nautilus > Hamburger Menu > Show Hidden Files
| # 3D Models | |
| *.3dm filter=lfs diff=lfs merge=lfs -text | |
| *.3ds filter=lfs diff=lfs merge=lfs -text | |
| *.blend filter=lfs diff=lfs merge=lfs -text | |
| *.c4d filter=lfs diff=lfs merge=lfs -text | |
| *.collada filter=lfs diff=lfs merge=lfs -text | |
| *.dae filter=lfs diff=lfs merge=lfs -text | |
| *.dxf filter=lfs diff=lfs merge=lfs -text | |
| *.fbx filter=lfs diff=lfs merge=lfs -text | |
| *.glb filter=lfs diff=lfs merge=lfs -text |
| /** | |
| * Callback whenever a property in the object changes | |
| * @callback onChangeCallback | |
| * @param {*} newValue | |
| * @param {*} oldValue | |
| * @param {String} path | |
| */ | |
| /** | |
| * Creates a new object that is watched for changes |
| module.exports = { | |
| "parserOptions": { | |
| "ecmaVersion": 2017, | |
| "sourceType": "module", | |
| }, | |
| "env": { | |
| "browser": true, | |
| }, |
| # Magikarp Jump | |
| # Master League Automated Clicker | |
| # | |
| # Notes: | |
| # | |
| # All tap positions are hardcoded to my OnePlus3. | |
| # Please re-adjust positions if phone resolution is different. | |
| # | |
| # Any league-triggered event will interrupt this script. | |
| # |
| # Magikarp Jump | |
| # Date Settings Exploit Automated Clicker | |
| # | |
| # Instructions: | |
| # | |
| # Connect Android USB Debugging and run in "adb shell". | |
| # Open Android Settings to the Date page and have it be the most recent app. | |
| # Adjust values marked "VARIABLE" accordingly. | |
| # Adjust the number of repetitions as you like. | |
| # |
| # Magikarp Jump | |
| # Expert League 3 Automated Clicker | |
| # | |
| # Notes: | |
| # | |
| # All tap positions are hardcoded to my OnePlus3. | |
| # Please re-adjust positions if phone resolution is different. | |
| # | |
| # Any league-triggered event will interrupt this script. | |
| # It is best that level is maxed out before starting the league. |
| /** | |
| * The ultimate split path. | |
| * Extracts dirname, filename, extension, and trailing URL params. | |
| * Correct handles: | |
| * empty dirname, | |
| * empty extension, | |
| * random input (extracts as filename), | |
| * multiple extensions (only extracts the last one), | |
| * dotfiles (however, will extract extension if there is one) | |
| * @param {string} path |
| var basename = function(path) { | |
| return path.replace(/\\/g, "/").replace( /.*\//, ""); | |
| }; | |
| var dirname = function(path) { | |
| return path.replace(/\\/g, "/").replace(/\/[^\/]*$/, ""); | |
| }; |