Skip to content

Instantly share code, notes, and snippets.

View cesartalves's full-sized avatar

César t. Alves cesartalves

View GitHub Profile
require 'nokogiri'
require 'open-uri'
# Get a Nokogiri::HTML:Document for the page we're interested in...
doc = Nokogiri::HTML(open('http://www.google.com/search?q=tenderlove'))
# Do funky things with it using Nokogiri::XML::Node methods...
####
@cesartalves
cesartalves / install-sonar-scanner.sh
Created January 22, 2020 18:44
Install sonar-scanner on server
#!/bin/bash
# run as sudo to have access to /opt or change the directory
# check docks for additional info
# https://docs.sonarqube.org/latest/analysis/scan/sonarscanner/
curl -o /opt/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.2.0.1873-linux.zip
cd /opt/
@cesartalves
cesartalves / uninstall_gems.sh
Created November 28, 2019 21:28 — forked from IanVaughan/uninstall_gems.sh
Uninstall all rbenv gems
#!/usr/bin/env bash
uninstall() {
list=`gem list --no-versions`
for gem in $list; do
gem uninstall $gem -aIx
done
gem list
gem install bundler
}
@cesartalves
cesartalves / new_app.py
Created October 8, 2019 18:06 — forked from ianschenck/new_app.py
Run your flask app under twisted wsgi, ALWAYS.
if __name__ == "__main__":
reactor_args = {}
def run_twisted_wsgi():
from twisted.internet import reactor
from twisted.web.server import Site
from twisted.web.wsgi import WSGIResource
resource = WSGIResource(reactor, reactor.getThreadPool(), app)
site = Site(resource)
Concatenating filters: "deck:name" "is:new" "-is:suspended" //- == !