Some stats: - Total number of links: 24459
This file contains hidden or 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
| #!/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 | |
| ################################################################################ |
This file contains hidden or 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
| # 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. |
If you want your terminal vim to open files you double click, follow the following steps (MacOS only):
- Open Automator
- Select Application
- Copy the attached file
- Save and set as default for opening files
Multiple files are opened in vim tabs. If there is already a vim instance running, files are opened in it.
I hereby claim:
- I am danydodson on github.
- I am igore (https://keybase.io/igore) on keybase.
- I have a public key ASCCqBENYZouBsa2-lyDCyNm_2hKsV3ht2m-F8fBkKapIAo
To claim this, I am signing this object:
This file contains hidden or 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
| [ | |
| { | |
| "title": "Oil onkey Script telegram exchange group", | |
| "url": "https://t.me/UserscriptPlus" | |
| } | |
| ] |
This file contains hidden or 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
| // 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', |
- Does the code work?
- Description of the project status is included.
- Code is easily understand.
- Code is written following the coding standarts/guidelines (React in our case).
- Code is in sync with existing code patterns/technologies.
- DRY. Is the same code duplicated more than twice?
This file contains hidden or 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
| #!/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 |
NewerOlder