Wednesday, October 05, 2016

Ruby Links

Great Ruby Tutorial:
https://www.tutorialspoint.com/ruby/

C42 Initiatives

  • Requirements Cross Referencing Via Ruby/Cucumber
  • JVM Usage In Conjunction With Ruby/Cucumber

Monday, September 19, 2016

Jasimine -- Bahavior Driven Javascript

Jasmine Base Link:
http://jasmine.github.io/

Jasmine on GitHub:
https://github.com/jasmine/jasmine

Example Java/Cuke Execution

C:\data\svn-work\proj-0014-jvm-cucumber-pmg>java -jar target/pmg-tests-1.0-SNAPSHOT.jar support/test-suites/mid-injection.json support/features
Test Suite File: [support/test-suites/mid-injection.json] Feature File Base Dir: [support/features] Run Dir: [support/run/20160919133009-885/]
Executing Feature File : [support/run/20160919133009-885/run.feature]
Cucumber Plugin Value 1: [junit:support/run/20160919133009-885/run-output.xml]
Cucumber Plugin Value 2: [json:support/run/20160919133009-885/run-output.json]

Tuesday, August 30, 2016

API Testing With Curl / Postman

Curl base link:
https://curl.haxx.se/

Curl Github link:
https://github.com/curl/curl

Postman (Chrome app) base link:
https://www.getpostman.com/

Monday, August 22, 2016

Adding Ubuntu Box To 802.1X Network Without Using GUI

Per: http://www.nowiressecurity.com/#!configure-8021x-authentication-linux/coxb -- add something like this to the /etc/network/interfaces file for wired eth0:

# The eth0 network interface
auto eth0
iface eth0 inet dhcp
pre-up wpa_supplicant -B -i eth0 -D wired -c /etc/wpa_supplicant.conf
post-down killall -q wpa_supplicant

The "pre-up" entry (above) will allow the interface to be brought up automatically on rebooting without the need to use a GUI dialog box.

Here are the key entries in the /etc/wpa_supplicant.conf file that I used:

ctrl_interface=/var/run/wpa_supplicant

eapol_version=2

ap_scan=0

network={
        key_mgmt=IEEE8021X
        eap=PEAP
        identity="ACCOUNT NAME HERE"
        password="PASSWORD HERE"
        eapol_flags=0
}

Monday, July 18, 2016

Friday, July 01, 2016

Monday, June 27, 2016

App Inventor (maintained by MIT now)

App Inventor (maintained by MIT now)
http://appinventor.mit.edu/explore/

Friday, June 03, 2016

Thursday, June 02, 2016

Android GPS Apps

One of the best Android apps for injecting GPS points into an emulated device and displaying via offline, tiled maps is:

"GPS Essentials"

A simple Android app to just display GPS coordinates is, you guessed it:

"GPS Coordinates"

Wednesday, May 25, 2016

Android Studio - Installation

Android Developer Base Link
https://developer.android.com/index.html

Android Studio Installation
https://developer.android.com/studio/install.html

Android Emulator

Howto Install and Run the Android Emulator
http://www.petefreitag.com/item/763.cfm

Howto Disable Authentication For Telnet To Android Emulator Console
https://developer.android.com/studio/run/emulator-commandline.html

Thursday, April 21, 2016

Auth0 Base Link

Auth0 Base Link
https://auth0.com/

Friday, April 08, 2016

Tuesday, April 05, 2016