Skip to content

Instantly share code, notes, and snippets.

@prmiguel
prmiguel / terraform-notes.md
Last active December 6, 2022 07:35
Terraform Notes
@prmiguel
prmiguel / my-vscode-extensions.md
Created January 2, 2021 04:59
List Of My Visual Studio Code Extensions

Java

  • Language Support for Java(TM) by Red Hat
@prmiguel
prmiguel / ResultSet to List
Created October 17, 2019 22:25 — forked from cworks/ResultSet to List
Java - Convert a ResultSet to a List of Maps, where each Map is a row of data
/**
* Convert the ResultSet to a List of Maps, where each Map represents a row with columnNames and columValues
* @param rs
* @return
* @throws SQLException
*/
private List<Map<String, Object>> resultSetToList(ResultSet rs) throws SQLException {
ResultSetMetaData md = rs.getMetaData();
int columns = md.getColumnCount();
List<Map<String, Object>> rows = new ArrayList<Map<String, Object>>();
@prmiguel
prmiguel / README
Last active August 31, 2018 00:49
* [seleniumframework](http://www.seleniumframework.com/)
* https://blog.testproject.io/
* http://www.seleniumtests.com/
* https://www.softwaretestingmaterial.com/
* https://www.swtestacademy.com/
* https://octoperf.com/blog/2018/03/22/api-testing-tools/
* automation testing hub.com
@prmiguel
prmiguel / README
Last active August 29, 2018 15:31
* [Extent Reports](http://extentreports.com/)
* [Allure](http://allure.qatools.ru/)
* [Real Time Report](https://github.com/startingwithseleniumwebdriver/RealTimeReport)
* [GHPReport](http://ghpreporter.github.io/)
* [Report Portal](http://reportportal.io/)
* [GoReporter](https://github.com/360EntSecGroup-Skylar/goreporter)
* [Clue Cucumber Report](https://github.com/trivago/cluecumber-report-plugin)
* [Zafira](https://github.com/qaprosoft/zafira)
wget --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u171-b11/512cd62ec5174c3487ac17c61aaa89e8/jdk-8u171-linux-x64.rpm
sudo yum localinstall jdk-8u171-linux-x64.rpm
export JAVA_HOME=/usr/java/jdk1.8.0_171/
export JRE_HOME=/usr/java/jdk1.8.0_171/jre
PATH=$PATH:$HOME/bin:$JAVA_HOME/bin
export PATH