-
jq — https://jqlang.org/ — "like sed for JSON data"
There are several options available for installing jq. I prefer to use Homebrew:
brew install jq
Source: https://gist.github.com/findepi/04c96f0f60dcc95329f569bb0c44a0cd .
This should build the project. In case of problems, retry without the -T flag.
This is not the fastest way to build the project though. See below.
./mvnw -T1C clean install -DskipTests
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
| # Mupen64Plus Configuration File | |
| # This file is automatically read and written by the Mupen64Plus Core library | |
| [Audio-OMX] | |
| Version = 1 | |
| OUTPUT_PORT = "1" | |
| # Frequency which is used if rom doesn't want to change it | |
| DEFAULT_FREQUENCY = 33600 | |
| # Swaps left and right channels |
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
| ; InputAutoCfg.ini for Mupen64Plus SDL Input plugin | |
| ; Keyboard_START | |
| [Keyboard] | |
| plugged = True | |
| plugin = 2 | |
| mouse = False | |
| DPad R = key(100) | |
| DPad L = key(97) | |
| DPad D = key(115) |
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
| ; InputAutoCfg.ini for Mupen64Plus SDL Input plugin | |
| [Keyboard] | |
| plugged = True | |
| plugin = 2 | |
| mouse = False | |
| DPad R = key(100) | |
| DPad L = key(97) | |
| DPad D = key(115) | |
| DPad U = key(119) |
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
| curl https://api.github.com/repos/atom/atom/stargazers -H 'Accept: application/vnd.github.v3.star+json' |
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
| import java.io.File; | |
| import java.io.IOException; | |
| import java.net.URL; | |
| import org.apache.commons.io.FileUtils; | |
| import org.springframework.core.io.Resource; | |
| import org.springframework.core.io.support.PathMatchingResourcePatternResolver; | |
| import org.springframework.core.io.support.ResourcePatternResolver; | |
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
| Moved to README within Vim Environment repo | |
| http://github.com/actaneon/VimEnv/blob/master/README |