node: Platform built on V8 to build network applications
git: Distributed revision control system
wget: Internet file retriever
yarn: JavaScript package manager
| #!/bin/bash | |
| # IMPORTANT: Don't forget to logout from your Apple ID in the settings before running it! | |
| # IMPORTANT: You will need to run this script from Recovery. In fact, macOS Catalina brings read-only filesystem which prevent this script from working from the main OS. | |
| # This script needs to be run from the volume you wish to use. | |
| # E.g. run it like this: cd /Volumes/Macintosh\ HD && sh /Volumes/Macintosh\ HD/Users/sabri/Desktop/disable.sh | |
| # WARNING: It might disable things that you may not like. Please double check the services in the TODISABLE vars. | |
| # Get active services: launchctl list | grep -v "\-\t0" | |
| # Find a service: grep -lR [service] /System/Library/Launch* /Library/Launch* ~/Library/LaunchAgents |
| // https://gist.github.com/danydodson/def9372092dcbcb10b1cddec018db3c5 | |
| // Dany Dodson <danydodson@gmail.com> | |
| ljs.addAliases({ | |
| jQuery:'https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js', | |
| copy:'https://cdn.jsdelivr.net/gh/zenorocha/clipboard.js@master/dist/clipboard.min.js', | |
| juicer:'https://cdnjs.cloudflare.com/ajax/libs/juicer/0.6.14/juicer-min.js', | |
| timeago:'https://cdnjs.cloudflare.com/ajax/libs/timeago.js/2.0.3/timeago.min.js', | |
| iframe:'https://cdn.jsdelivr.net/gh/jae-jae/iframe-sandbox@main/iframe-sandbox.js', | |
| vue:'https://cdnjs.cloudflare.com/ajax/libs/vue/2.4.2/vue.js', | |
| psl:'https://cdn.jsdelivr.net/gh/wrangr/psl@master/dist/psl.min.js', |
| [ | |
| { | |
| "title": "Oil onkey Script telegram exchange group", | |
| "url": "https://t.me/UserscriptPlus" | |
| } | |
| ] |
I hereby claim:
To claim this, I am signing this object:
If you want your terminal vim to open files you double click, follow the following steps (MacOS only):
Multiple files are opened in vim tabs. If there is already a vim instance running, files are opened in it.
Some stats: - Total number of links: 24459
| # Build & install Lua on macOS | |
| # We will compile Lua 5.1 because it is compatible with openresty/lapis. | |
| # Replace the variables from line 30 ff to install a diffrent version. | |
| # See: https://www.lua.org/manual/5.1/ | |
| # NOTE: | |
| # We create a dedicated directory for the Lua stuff to putt all the stuff in. |
| #!/bin/bash | |
| # This scripts installs Lua, LuaRocks, and some Lua libraries on macOS. | |
| # The main purpose is to install Busted for testing Neovim plugins. | |
| # After the installation, you will be able to run test using busted: | |
| # busted --lua nlua spec/mytest_spec.lua | |
| ################################################################################ | |
| # Dependencies | |
| ################################################################################ |