Skip to content

Instantly share code, notes, and snippets.

View JeremyNevill's full-sized avatar
🎯
Focusing

Jeremy Nevill JeremyNevill

🎯
Focusing
View GitHub Profile
@sysboss
sysboss / sonar.md
Last active April 21, 2022 15:24
SonarQube on AWS EC2 - Installation and integration with Jenkins

This article will briefly describe how to install SonarQube as Docker container on Amazon EC2 and integrate it with Jenkins.

Create database instance and user

Go to RDS > Parameter Groups
Create a new Parameter Group with the following parameter:

max_allowed_packet = 268435456

We need to create a new RDS database for SonarQube (you may use an existing MySQL instance)

  1. Go to RDS Instances
# A little Meteor CheatSheet about Iron-Router. (updated on a weekly basis)
# Check our Studio: https://gentlenode.com/
meteor add iron:router
meteor update iron:router
# Iron Router > Configuration
@NigelThorne
NigelThorne / gist:4718832
Created February 5, 2013 23:48
composing parslet parsers
require 'rubygems'
require 'parslet'
#This needs a few more 'as' calls to annotate the output
class JSONParser < Parslet::Parser
def initialize(number_parser)
@number_parser
end
rule(:space) { match('[\s\n]').repeat(1)}