This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.
— Erik
| ######################### | |
| # .gitignore file for Xcode4 / OS X Source projects | |
| # | |
| # Version 2.0 | |
| # For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
| # | |
| # 2013 updates: | |
| # - fixed the broken "save personal Schemes" | |
| # | |
| # NB: if you are storing "built" products, this WILL NOT WORK, |
| jq '{ | |
| "issues": [ | |
| .vulnerabilities[] | | |
| { | |
| "engineId": "GitLabSDS", | |
| "ruleId": (.identifiers[] | select(.type == "cve") | .value), | |
| "severity": ( | |
| if .severity == "None" then "INFO" | |
| elif .severity == "Low" then "MINOR" | |
| elif .severity == "Medium" then "MAJOR" |
| jq '{ | |
| "issues": [ | |
| .vulnerabilities[] | | |
| { | |
| "engineId": .scanner.name, | |
| "ruleId": .cve, | |
| "severity": ( | |
| if .severity == "None" then "INFO" | |
| elif .severity == "Low" then "MINOR" | |
| elif .severity == "Medium" then "MAJOR" |