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
| require 'nokogiri' | |
| html = ' | |
| <html> | |
| <body> | |
| <p>foo banana 1</p> | |
| this text | |
| <p>bar</p> | |
| <p>foo banana 2</p> | |
| <p>foo banana 3</p> |
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 | |
| sudo mkdir /tmp/ramdisk; sudo chmod 777 /tmp/ramdisk | |
| sudo mount -t tmpfs -o size=400M tmpfs /tmp/ramdisk/ | |
| cp -R /home/vitor.mussatto/dev/jdk1.8.0_45 /tmp/ramdisk |
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
| export MAVEN_OPTS="-Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8787" |
OlderNewer