Gradle Shadow Plug-In Link:
https://plugins.gradle.org/plugin/com.github.johnrengelman.shadow
Great Article On Getting The Gradle "Shadow" Plug-In Working:
https://kousenit.org/2016/03/14/the-shadow-knows-gradle/
Object Partners Link:
https://objectpartners.com/2013/07/16/creating-self-contained-executable-jars-with-gradle-and-shadow/
Monday, July 10, 2017
Monday, June 19, 2017
Tuesday, June 06, 2017
Wednesday, March 29, 2017
Sunday, March 26, 2017
Monday, March 20, 2017
Page Object Model (POM)
Page Object Model (POM)
http://toolsqa.com/selenium-webdriver/page-object-model/
Site Prism: Page Object Model (POM) for Capybara
https://github.com/natritmeyer/site_prism
http://toolsqa.com/selenium-webdriver/page-object-model/
Site Prism: Page Object Model (POM) for Capybara
https://github.com/natritmeyer/site_prism
Just Some Links 20170320
Friday, March 17, 2017
Postman and Postman Interceptor Module
To debug REST requests:
Postman + Postman Interceptor Extension
As Google Chrome is navigation, activate the Postman Interceptor and watch web requests flow into Postman.
Postman + Postman Interceptor Extension
As Google Chrome is navigation, activate the Postman Interceptor and watch web requests flow into Postman.
Thursday, March 16, 2017
More Git Tips
##### To include (e.g. "add") in what will be committed
git add
##### Determine your current branch and display local branches
git branch
##### Create a new local branch and switch to it
git checkout -b
Where "BN" is "engineer//" (example)
NOTE: git apparently doesn't like like branch names with leading "/" characters
##### Switch to an existing branch using checkout command
git checkout
##### To discard changes in the working directory to an individual file
git checkout --
##### To commit to current branch with comment
git commit -m ""
##### To show commit history on a branch, use variations of this base command
git log
##### To merge from one branch to another, use this base command
##### The command below merges the specified branch into the current branch
git merge
##### To push local branch up to the origin repo, use this base command
git push
##### Determine your Git status (what branch, untracked files, etc.)
git status
git add
##### Determine your current branch and display local branches
git branch
##### Create a new local branch and switch to it
git checkout -b
Where "BN" is "engineer/
NOTE: git apparently doesn't like like branch names with leading "/" characters
##### Switch to an existing branch using checkout command
git checkout
##### To discard changes in the working directory to an individual file
git checkout --
##### To commit to current branch with comment
git commit -m "
##### To show commit history on a branch, use variations of this base command
git log
##### To merge from one branch to another, use this base command
##### The command below merges the specified branch into the current branch
git merge
##### To push local branch up to the origin repo, use this base command
git push
##### Determine your Git status (what branch, untracked files, etc.)
git status
Friday, March 10, 2017
Ruby Resources
AWS SDK for Ruby: http://docs.aws.amazon.com/sdk-for-ruby/v2/developer-guide/
The Book Of Ruby (online somewhere)
Little Book Of Ruby (online somewhere)
Ruby Style Guide: https://github.com/bbatsov/ruby-style-guide
Ruby Gems Guides: http://guides.rubygems.org/
The Book Of Ruby (online somewhere)
Little Book Of Ruby (online somewhere)
Ruby Style Guide: https://github.com/bbatsov/ruby-style-guide
Ruby Gems Guides: http://guides.rubygems.org/
Wednesday, December 21, 2016
Great Article On Packer / Ansible Work Flow
Great Article On Packer / Ansible Work Flow
https://blog.codeship.com/packer-ansible/
https://blog.codeship.com/packer-ansible/
OTP encryption
To achieve OTP:
Use Linux /dev/urandom OR
Java crypto Random generator
Good OTP papers:
http://www.cryptomuseum.com/manuf/mils/files/mils_otp_proof.pdf
http://www.mils.com/fileadmin/user_upload/Broschüren/TEC-OTP-03E-01-H.pdf
http://users.telenet.be/d.rijmenants/en/onetimepad.htm
Use Linux /dev/urandom OR
Java crypto Random generator
Good OTP papers:
http://www.cryptomuseum.com/manuf/mils/files/mils_otp_proof.pdf
http://www.mils.com/fileadmin/user_upload/Broschüren/TEC-OTP-03E-01-H.pdf
http://users.telenet.be/d.rijmenants/en/onetimepad.htm
Friday, December 16, 2016
Thursday, December 15, 2016
Friday, October 21, 2016
Wednesday, October 05, 2016
C42 Initiatives
- Requirements Cross Referencing Via Ruby/Cucumber
- JVM Usage In Conjunction With Ruby/Cucumber
Wednesday, September 28, 2016
Some PN Gathered Links
PN Links
Monday, September 19, 2016
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]
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/
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
}
# 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
Drone / Quadcopter / UAV
3D Robotics
https://3dr.com/
DJI Phantom 4
https://www.dji.com/product/phantom-4
TEAL Drones
https://tealdrones.com/
https://3dr.com/
DJI Phantom 4
https://www.dji.com/product/phantom-4
TEAL Drones
https://tealdrones.com/
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/
http://appinventor.mit.edu/explore/
Friday, June 24, 2016
Some Android Mock Location Provider Links
Some Android Mock Location Provider Links:
http://stackoverflow.com/questions/2531317/android-mock-location-on-device
https://mobiarch.wordpress.com/2012/07/17/testing-with-mock-location-data-in-android/
https://blog.testmunk.com/testing-location-mocking-on-android-devices-calabash-open-source/
https://androidcookbook.com/Recipe.seam?recipeId=1229
Good Project For PROGRAMMATICALLY Injecting Points
https://github.com/paulhoux/Android-MockProviderGPS
http://stackoverflow.com/questions/2531317/android-mock-location-on-device
https://mobiarch.wordpress.com/2012/07/17/testing-with-mock-location-data-in-android/
https://blog.testmunk.com/testing-location-mocking-on-android-devices-calabash-open-source/
https://androidcookbook.com/Recipe.seam?recipeId=1229
Good Project For PROGRAMMATICALLY Injecting Points
https://github.com/paulhoux/Android-MockProviderGPS
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"
"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
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
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
Monday, May 23, 2016
Install And Use Android Debug Bridge (ADB) Utility
Thursday, April 21, 2016
Friday, April 08, 2016
Tuesday, April 05, 2016
Monday, March 14, 2016
Spring Boot
Spring Boot Base Link
http://projects.spring.io/spring-boot/
Spring State Machine Reference
http://docs.spring.io/autorepo/docs/spring-statemachine/1.0.0.M3/reference/htmlsingle/
http://projects.spring.io/spring-boot/
Spring State Machine Reference
http://docs.spring.io/autorepo/docs/spring-statemachine/1.0.0.M3/reference/htmlsingle/
Saturday, February 20, 2016
Backups Using OTP
Here's how we roll:
- 00000-clear.dat (ZIP) consists of
- md5sum.txt (of data.ZIP)
- data.ZIP
- 00000-ct.dat (cipher text of 00000-clear.dat)
- 00000-otp.dat (one time pad used to create 00000-ct.dat)
Example Implementation:
Cryptomni 1.1
Friday, February 19, 2016
Gradle
Gradle Base Link
https://gradle.org/
Getting Started With Gradle
http://www.jayway.com/2013/05/12/getting-started-with-gradle/
Gradle Shadow Plugin
https://objectpartners.com/2013/07/16/creating-self-contained-executable-jars-with-gradle-and-shadow/
Gradle Wrapper (interesting, a lot of magic for you)
https://docs.gradle.org/current/userguide/gradle_wrapper.html
https://gradle.org/
Getting Started With Gradle
http://www.jayway.com/2013/05/12/getting-started-with-gradle/
Gradle Shadow Plugin
https://objectpartners.com/2013/07/16/creating-self-contained-executable-jars-with-gradle-and-shadow/
Gradle Wrapper (interesting, a lot of magic for you)
https://docs.gradle.org/current/userguide/gradle_wrapper.html
Thursday, February 04, 2016
GPX Parser (Java)
GPX Base Link:
http://www.topografix.com/gpx.asp
A search on the Maven Central Repository shows this:
GroupId ArtifactId
---------------------------------------------------------
org.vesalainen.gpx GPX11
ca.carleton.gcrc nunaliit2-gpx
ca.carleton.gcrc nunaliit2-gpx-jaxb
com.revolsys.open com.revolsys.open.gis.gpx
Tuesday, February 02, 2016
GPS Logger for Android
GPS Logger for Android
http://code.mendhak.com/gpslogger/
NOTE - The Garmin GLO can evidently update position location information 10 times per second.
One reviewer claimed that the Windows version of OziExplorer could keep up with the 10Hz update rate of the Garmin GLO.
Here is the base link for OziExplorer:
http://www.oziexplorer.com/
I installed a trial version on my Nexus II Android tablet
http://code.mendhak.com/gpslogger/
NOTE - The Garmin GLO can evidently update position location information 10 times per second.
One reviewer claimed that the Windows version of OziExplorer could keep up with the 10Hz update rate of the Garmin GLO.
Here is the base link for OziExplorer:
http://www.oziexplorer.com/
I installed a trial version on my Nexus II Android tablet
Friday, January 15, 2016
Java Concurrency in Practice (online listings)
Java Concurrency in Practice (online listings)
http://jcip.net.s3-website-us-east-1.amazonaws.com/listings.html
http://jcip.net.s3-website-us-east-1.amazonaws.com/listings.html
Tuesday, December 01, 2015
LittleProxy Github Repo
LittleProxy Github Repo
https://github.com/adamfisk/LittleProxy
Setting Up Target IP and Port
http://stackoverflow.com/questions/27039042/in-littleproxy-how-to-set-proxy-ip-and-port
https://github.com/adamfisk/LittleProxy
Setting Up Target IP and Port
http://stackoverflow.com/questions/27039042/in-littleproxy-how-to-set-proxy-ip-and-port
Monday, November 30, 2015
Dataprobe iBoot-G2+ Support Page
Dataprobe iBoot-G2+ Support Page
http://dataprobe.com/support_iboot-g2-plus.html
http://dataprobe.com/support_iboot-g2-plus.html
Thursday, November 12, 2015
Friday, October 09, 2015
Sunday, October 04, 2015
Friday, September 04, 2015
Monday, August 31, 2015
Thursday, July 02, 2015
Tuesday, June 30, 2015
American / Euro Truck Simulator
American Truck Simulator (supposed to come out in 2016)
https://en.wikipedia.org/wiki/American_Truck_Simulator
American Truck Simulator (on STEAM)
http://store.steampowered.com/app/270880/ (Base Game)
http://steamcommunity.com/app/270880/discussions/ (Discussions)
American Truck Simulator (base link on web)
http://www.americantrucksimulator.com/
Euro Truck Simulator
http://www.eurotrucksimulator2.com/
Forum (Message Board)
http://forum.scssoft.com/index.php
Modding
http://www.eurotrucksimulator2.com/mod_tools.php
Telemetry Access Via The SDK
http://blog.scssoft.com/search/label/SDK
Telemetry Access Via The SDK (Github Repo)
https://github.com/nlhans/ets2-sdk-plugin
https://en.wikipedia.org/wiki/American_Truck_Simulator
American Truck Simulator (on STEAM)
http://store.steampowered.com/app/270880/ (Base Game)
http://steamcommunity.com/app/270880/discussions/ (Discussions)
American Truck Simulator (base link on web)
http://www.americantrucksimulator.com/
Euro Truck Simulator
http://www.eurotrucksimulator2.com/
Forum (Message Board)
http://forum.scssoft.com/index.php
Modding
http://www.eurotrucksimulator2.com/mod_tools.php
Telemetry Access Via The SDK
http://blog.scssoft.com/search/label/SDK
Telemetry Access Via The SDK (Github Repo)
https://github.com/nlhans/ets2-sdk-plugin
Thursday, June 04, 2015
Wednesday, June 03, 2015
Saturday, May 23, 2015
Android Test Frameworks
- Robotium
- uiautomator
- Expresso
- Calabash
- Appium
http://testdroid.com/tech/top-5-android-testing-frameworks-with-examples
Friday, May 22, 2015
J1939 Links
Affordable CAN Tools
http://spin.atomicobject.com/2014/02/28/affordable-can-bus-tools/
CAN Tools By LAWICEL AB
http://www.can232.com/
CANCapture
http://www.cancapture.com/
Intrepid Control Systems, Inc.
http://store.intrepidcs.com/
http://www.intrepidcs.com/technologies/j1939.html (nice J1939 link)
Kvaser J1939 Introduction
http://www.kvaser.com/about-can/higher-layer-protocols/j1939-introduction/
Simma Software
http://www.simmasoftware.com/j1939.html
SocketCAN
http://en.wikipedia.org/wiki/SocketCAN
http://spin.atomicobject.com/2014/02/28/affordable-can-bus-tools/
CAN Tools By LAWICEL AB
http://www.can232.com/
CANCapture
http://www.cancapture.com/
Intrepid Control Systems, Inc.
http://store.intrepidcs.com/
http://www.intrepidcs.com/technologies/j1939.html (nice J1939 link)
Kvaser J1939 Introduction
http://www.kvaser.com/about-can/higher-layer-protocols/j1939-introduction/
Simma Software
http://www.simmasoftware.com/j1939.html
SocketCAN
http://en.wikipedia.org/wiki/SocketCAN
Thursday, May 07, 2015
Wednesday, May 06, 2015
Selenium Info
Selenium (Official Documentation)
http://docs.seleniumhq.org/
Selenium (WikiPedia)
http://en.wikipedia.org/wiki/Selenium_(software)
http://docs.seleniumhq.org/
Selenium (WikiPedia)
http://en.wikipedia.org/wiki/Selenium_(software)
Tuesday, April 14, 2015
J1939 Simulator Research
Dafulai Electronics
http://www.dafulaielectronics.com
Ozen Elektronik
https://www.ozenelektronik.com/j1939-obd-ecu-simulator-p.html
Wednesday, April 08, 2015
Wednesday, March 25, 2015
Node.js Related
Express (minimalist web framework for Node.js)
http://expressjs.com/
Node.js Home Page
https://nodejs.org/
http://expressjs.com/
Node.js Home Page
https://nodejs.org/
Thursday, March 05, 2015
Wednesday, February 25, 2015
Thursday, February 19, 2015
Adding Custom JARs To A Maven Project
Mkyong - How To Include Custom Library Into Maven Local Repository?
(seems like one of the easiest techniques)
http://www.mkyong.com/maven/how-to-include-library-manully-into-maven-local-repository/
Guide to installing 3rd party JARs (Apache Maven Project)
http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html
Maven External Dependencies (another valid technique)
http://www.tutorialspoint.com/maven/maven_external_dependencies.htm
Stackoverflow Link:
http://stackoverflow.com/questions/5692256/maven-best-way-of-linking-custom-external-jar-to-my-project
Adding external/custom jars into Maven project
Excellent link, especially "Installing jar into local Maven repository".
http://softwarecave.org/2014/06/14/adding-external-jars-into-maven-project/
In case content changes, screenshot of important snippet here:
(seems like one of the easiest techniques)
http://www.mkyong.com/maven/how-to-include-library-manully-into-maven-local-repository/
Guide to installing 3rd party JARs (Apache Maven Project)
http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html
Maven External Dependencies (another valid technique)
http://www.tutorialspoint.com/maven/maven_external_dependencies.htm
Stackoverflow Link:
http://stackoverflow.com/questions/5692256/maven-best-way-of-linking-custom-external-jar-to-my-project
Adding external/custom jars into Maven project
Excellent link, especially "Installing jar into local Maven repository".
http://softwarecave.org/2014/06/14/adding-external-jars-into-maven-project/
In case content changes, screenshot of important snippet here:
Wednesday, February 18, 2015
Virtual Hard Disk Link(s)
Virtual Hard Disk - Backup Emphasis
http://www.pcworld.com/article/2465848/virtual-hard-drives-the-it-pro-trick-that-lets-you-back-up-your-data-for-free.html
Virtual Hard Disk (VHD) File Format (WikiPedia)
http://en.wikipedia.org/wiki/VHD_(file_format)
Windows 7 - How To Create a VHD of a Physical Hard Disk
http://www.sevenforums.com/tutorials/213652-vhd-create-physical-hard-disk.html
http://www.pcworld.com/article/2465848/virtual-hard-drives-the-it-pro-trick-that-lets-you-back-up-your-data-for-free.html
Virtual Hard Disk (VHD) File Format (WikiPedia)
http://en.wikipedia.org/wiki/VHD_(file_format)
Windows 7 - How To Create a VHD of a Physical Hard Disk
http://www.sevenforums.com/tutorials/213652-vhd-create-physical-hard-disk.html
Thursday, February 05, 2015
Docker
Docker
https://docs.docker.com/
Docker User Guide
https://docs.docker.com/userguide/
https://docs.docker.com/
Docker User Guide
https://docs.docker.com/userguide/
Docker YouTube Channel
https://www.youtube.com/user/dockerrun
https://www.youtube.com/user/dockerrun
Quoting from the Docker website:
https://www.docker.com/whatisdocker/
"Docker is an open platform for developers and sysadmins to build, ship, and run distributed applications."
WikiPedia Docker Entry
http://en.wikipedia.org/wiki/Docker_(software)
YouTube Docker Networking
https://www.youtube.com/watch?v=uq8ZEYEYk1Q
https://www.docker.com/whatisdocker/
"Docker is an open platform for developers and sysadmins to build, ship, and run distributed applications."
WikiPedia Docker Entry
http://en.wikipedia.org/wiki/Docker_(software)
YouTube Docker Networking
https://www.youtube.com/watch?v=uq8ZEYEYk1Q
Saturday, January 31, 2015
GIT Workflow Links
"A successful Git branching model" by Vincent Driessen
http://nvie.com/posts/a-successful-git-branching-model/
Excellent Article by "End Point"
http://blog.endpoint.com/2014/05/git-workflows-that-work.html
http://nvie.com/posts/a-successful-git-branching-model/
Excellent Article by "End Point"
http://blog.endpoint.com/2014/05/git-workflows-that-work.html
Sunday, January 18, 2015
Encryption For Business (e.g. Medical Billing)
7-Zip (can also AES encrypt files)
http://www.7-zip.org/
AES Crypt (individual files)
https://www.aescrypt.com/
GNU Privacy Guard
https://www.gnupg.org/
List Of Top 24 Free Tools For Data Encryption
http://www.gfi.com/blog/the-top-24-free-tools-for-data-encryption/
TrueCrypt Final Release Repository
https://www.grc.com/misc/truecrypt/truecrypt.htm
http://www.7-zip.org/
AES Crypt (individual files)
https://www.aescrypt.com/
GNU Privacy Guard
https://www.gnupg.org/
List Of Top 24 Free Tools For Data Encryption
http://www.gfi.com/blog/the-top-24-free-tools-for-data-encryption/
TrueCrypt Final Release Repository
https://www.grc.com/misc/truecrypt/truecrypt.htm
Monday, January 12, 2015
Friday, January 09, 2015
Some Dynamic Java Class Loading Links
Dynamic Class Loading Links
http://viralpatel.net/blogs/java-dynamic-class-loading-java-reflection-api/
http://www-h.eng.cam.ac.uk/help/tpl/languages/java/javaplugins.html
http://www.javaworld.com/article/2071777/design-patterns/add-dynamic-java-code-to-your-application.html
http://en.wikipedia.org/wiki/Java_Classloader
http://viralpatel.net/blogs/java-dynamic-class-loading-java-reflection-api/
http://www-h.eng.cam.ac.uk/help/tpl/languages/java/javaplugins.html
http://www.javaworld.com/article/2071777/design-patterns/add-dynamic-java-code-to-your-application.html
http://en.wikipedia.org/wiki/Java_Classloader
Wednesday, December 24, 2014
The Upcoming Year (2015) Of The Java Ecosystem With Test Automation
Tools:
- JDK
- Maven (consider transitioning to Gradle)
- Git / GitHub
- IntelliJ (JetBrains)
- Cucumber
- Jenkins (?)
Monday, December 22, 2014
Gradle Links
Gradle Documentation
http://www.gradle.org/documentation
Gradle Home Link
http://www.gradle.org/
Gradle Wikipedia Link
http://en.wikipedia.org/wiki/Gradle
http://www.gradle.org/documentation
Gradle Home Link
http://www.gradle.org/
Gradle Wikipedia Link
http://en.wikipedia.org/wiki/Gradle
Tuesday, December 09, 2014
Cassandra Links
Cassandra Query Language (CQL) v3.1.7
https://cassandra.apache.org/doc/cql3/CQL.html
Cassandra Wiki (Client Options)
https://wiki.apache.org/cassandra/ClientOptions
Datastax Cassandra Ruby Driver (As of 20141209, this is current Ruby driver to use)
https://github.com/datastax/ruby-driver
Datastax Cassandra Ruby Driver Documentation
http://datastax.github.io/ruby-driver/
Up and Running With Cassandra (like Google's BigTable)
http://blog.evanweaver.com/2009/07/06/up-and-running-with-cassandra/
https://cassandra.apache.org/doc/cql3/CQL.html
Cassandra Wiki (Client Options)
https://wiki.apache.org/cassandra/ClientOptions
Datastax Cassandra Ruby Driver (As of 20141209, this is current Ruby driver to use)
https://github.com/datastax/ruby-driver
Datastax Cassandra Ruby Driver Documentation
http://datastax.github.io/ruby-driver/
Up and Running With Cassandra (like Google's BigTable)
http://blog.evanweaver.com/2009/07/06/up-and-running-with-cassandra/
Wednesday, October 29, 2014
Tuesday, October 28, 2014
Ruby MQTT Resources
Pure Ruby Gem
https://github.com/njh/ruby-mqtt
https://rubygems.org/gems/mqtt
http://www.rubydoc.info/gems/mqtt/frames (better doc presentation)
Install: gem install mqtt
https://github.com/njh/ruby-mqtt
https://rubygems.org/gems/mqtt
http://www.rubydoc.info/gems/mqtt/frames (better doc presentation)
Install: gem install mqtt
Wednesday, October 15, 2014
Capybara - (Ruby Library)
Capybara (Ruby Library) -- Something to look into:
http://jnicklas.github.io/capybara/
SitePrism -- is used to supply a Page Object Model that can be used with Capybara.
https://github.com/natritmeyer/site_prism
http://jnicklas.github.io/capybara/
SitePrism -- is used to supply a Page Object Model that can be used with Capybara.
https://github.com/natritmeyer/site_prism
Wednesday, September 17, 2014
Minimalist HTTP Server Links C#
Embedded .NET HTTP Server
http://www.codeproject.com/Articles/25050/Embedded-NET-HTTP-Server
Simple HTTP Server in C#
http://www.codeproject.com/Articles/137979/Simple-HTTP-Server-in-C
http://www.codeproject.com/Articles/25050/Embedded-NET-HTTP-Server
Simple HTTP Server in C#
http://www.codeproject.com/Articles/137979/Simple-HTTP-Server-in-C
Sunday, September 14, 2014
PowerShell Links
Run PowerShell Scripts From Task Scheduler
http://community.spiceworks.com/how_to/show/17736-run-powershell-scripts-from-task-scheduler
Weekend Scripter: Use the Windows Task Scheduler to Run a Windows PowerShell Script
http://blogs.technet.com/b/heyscriptingguy/archive/2012/08/11/weekend-scripter-use-the-windows-task-scheduler-to-run-a-windows-powershell-script.aspx
Windows PowerShell 2.0 Commands
http://ss64.com/ps/
http://community.spiceworks.com/how_to/show/17736-run-powershell-scripts-from-task-scheduler
Weekend Scripter: Use the Windows Task Scheduler to Run a Windows PowerShell Script
http://blogs.technet.com/b/heyscriptingguy/archive/2012/08/11/weekend-scripter-use-the-windows-task-scheduler-to-run-a-windows-powershell-script.aspx
Windows PowerShell 2.0 Commands
http://ss64.com/ps/
Thursday, September 11, 2014
Apache Derby / H2 / H20 Database Engines
Apache Derby
http://db.apache.org/derby/
H2 Database Engine
http://www.h2database.com/html/main.html
H20 Database Engine
http://blogs.cs.st-andrews.ac.uk/h2o/
https://code.google.com/p/h2o-database/
http://db.apache.org/derby/
H2 Database Engine
http://www.h2database.com/html/main.html
H20 Database Engine
http://blogs.cs.st-andrews.ac.uk/h2o/
https://code.google.com/p/h2o-database/
Sunday, August 17, 2014
Developing Android Apps Using Ruby
Learn Ruby The Hard Way
http://ruby.learncodethehardway.org/
Ruboto
http://ruboto.org/
Ruby Learning
http://rubylearning.com/
Ruby (base link; English)
https://www.ruby-lang.org/en/
Ruby Conferences
https://www.ruby-lang.org/en/community/conferences/
http://ruby.learncodethehardway.org/
Ruboto
http://ruboto.org/
Ruby Learning
http://rubylearning.com/
Ruby (base link; English)
https://www.ruby-lang.org/en/
Ruby Conferences
https://www.ruby-lang.org/en/community/conferences/
Friday, August 15, 2014
Calabash Links
Calabash Android Tutorial
http://referenceforu.blogspot.com/2013/08/calabash-android-tutorial.html
Google Groups calabash-android
https://groups.google.com/forum/#!forum/calabash-android
Linux and Windows Installation
http://knowledgestack.wordpress.com/2013/05/25/calaba-sh-automated-acceptance-test-for-mobile-apps/
http://referenceforu.blogspot.com/2013/08/calabash-android-tutorial.html
Google Groups calabash-android
https://groups.google.com/forum/#!forum/calabash-android
Linux and Windows Installation
http://knowledgestack.wordpress.com/2013/05/25/calaba-sh-automated-acceptance-test-for-mobile-apps/
Wednesday, July 23, 2014
Android Resources
App Inventor for Android - MIT Link
http://appinventor.mit.edu/explore/
App Inventor for Android - Wikipedia
http://en.wikipedia.org/wiki/App_Inventor_for_Android
Android - Rooting
http://en.wikipedia.org/wiki/Rooting_(Android_OS)
Android Software Development - Wikipedia
http://en.wikipedia.org/wiki/Android_software_development
Android Studio
http://en.wikipedia.org/wiki/Android_Studio
http://appinventor.mit.edu/explore/
App Inventor for Android - Wikipedia
http://en.wikipedia.org/wiki/App_Inventor_for_Android
Android - Rooting
http://en.wikipedia.org/wiki/Rooting_(Android_OS)
Android Software Development - Wikipedia
http://en.wikipedia.org/wiki/Android_software_development
Android Studio
http://en.wikipedia.org/wiki/Android_Studio
Thursday, June 12, 2014
Some Good Behavior Driven Development (BDD) Links
Behavior Driven Development (Wikipedia)
http://en.wikipedia.org/wiki/Behavior-driven_development
Business Readable DSL
http://www.martinfowler.com/bliki/BusinessReadableDSL.html
Cucumber Wiki
https://github.com/cucumber/cucumber/wiki
Cucumber (Official Site)
http://cukes.info/
Dan North - What's In A Story?
http://dannorth.net/whats-in-a-story/
Gherkin Wiki
https://github.com/cucumber/cucumber/wiki/Gherkin
Given, When, Then
https://github.com/cucumber/cucumber/wiki/Given-When-Then
http://en.wikipedia.org/wiki/Behavior-driven_development
Business Readable DSL
http://www.martinfowler.com/bliki/BusinessReadableDSL.html
Cucumber Wiki
https://github.com/cucumber/cucumber/wiki
Cucumber (Official Site)
http://cukes.info/
Dan North - What's In A Story?
http://dannorth.net/whats-in-a-story/
Gherkin Wiki
https://github.com/cucumber/cucumber/wiki/Gherkin
Given, When, Then
https://github.com/cucumber/cucumber/wiki/Given-When-Then
Wednesday, June 11, 2014
Google Test Automation
Google Test Automation Conference
https://developers.google.com/google-test-automation-conference/
Google Testing Blog
http://googletesting.blogspot.com/
https://developers.google.com/google-test-automation-conference/
Google Testing Blog
http://googletesting.blogspot.com/
Test Android Mobile Apps With Appium
Appium base link
http://appium.io/index.html?lang=en
Sauce Labs
https://saucelabs.com
Slide Show Comparing Various Android Automation Frameworks
http://www.slideshare.net/bitbar/different-android-test-automation-framework-what-works-you-the-best
http://appium.io/index.html?lang=en
Sauce Labs
https://saucelabs.com
Slide Show Comparing Various Android Automation Frameworks
http://www.slideshare.net/bitbar/different-android-test-automation-framework-what-works-you-the-best
Thursday, June 05, 2014
Saturday, May 10, 2014
Sunday, April 27, 2014
Developing Android Apps Using Python
Linux Journal Article: "Python for Android" (lot's of tips)
http://www.linuxjournal.com/article/10940?page=0,0
PyCon PL 2013 "Developing Android Applications with Python"
https://www.youtube.com/watch?v=CWyUgn8oAaQ
Presentation: "Writing Standalone Qt & Python Applications for Android
http://www.modrana.org/pyconpl2013/python_and_qt_for_android.pdf
Python Download Site:
https://www.python.org/download
http://www.linuxjournal.com/article/10940?page=0,0
PyCon PL 2013 "Developing Android Applications with Python"
https://www.youtube.com/watch?v=CWyUgn8oAaQ
Presentation: "Writing Standalone Qt & Python Applications for Android
http://www.modrana.org/pyconpl2013/python_and_qt_for_android.pdf
Python Download Site:
https://www.python.org/download
Thursday, April 17, 2014
Garmin Nuvi 2555 Stuff (esp GPX files)
Editor for GPX files
http://sourceforge.net/projects/gpxeditor/
Extracting Track Log (gpx) from Garmin
http://home.comcast.net/~ghayman3/garmin.gps/page6.htm
GPX files are in the following location on this Garmin: Internal Storage\GPX
More generalized, useful conversion (GPSBabel)
http://www.gpsbabel.org/
http://sourceforge.net/projects/gpxeditor/
Extracting Track Log (gpx) from Garmin
http://home.comcast.net/~ghayman3/garmin.gps/page6.htm
GPX files are in the following location on this Garmin: Internal Storage\GPX
More generalized, useful conversion (GPSBabel)
http://www.gpsbabel.org/
Friday, April 11, 2014
Cool Android Apps
AutoGuard Blackbox
https://play.google.com/store/apps/details?id=com.hovans.autoguard
GPSLogger (by "mendhak")
https://play.google.com/store/apps/details?id=com.mendhak.gpslogger
http://code.mendhak.com/gpslogger/
https://play.google.com/store/apps/details?id=com.hovans.autoguard
GPSLogger (by "mendhak")
https://play.google.com/store/apps/details?id=com.mendhak.gpslogger
http://code.mendhak.com/gpslogger/
Thursday, April 10, 2014
Python Related Web Technologies
HTTP Methods: GET vs. POST
http://www.w3schools.com/tags/ref_httpmethods.asp
Python WebFrameworks
https://wiki.python.org/moin/WebFrameworks
http://www.w3schools.com/tags/ref_httpmethods.asp
Python WebFrameworks
https://wiki.python.org/moin/WebFrameworks
Tuesday, April 08, 2014
Lighttpd
How To Run lighttpd as a Windows Service
http://www.coretechnologies.com/products/AlwaysUp/Apps/RunLighttpdAsAService.html
Lighttpd - light-weight HTTPD
http://www.lighttpd.net/
Simple Common Gateway Interface (replacement for CGI and similar to FastCGI)
http://www.python.ca/scgi/protocol.txt
Web Development With Python
http://www.fredshack.com/docs/pythonweb.html
Wikipedia link
http://en.wikipedia.org/wiki/Lighttpd
Windows Download
http://en.wlmp-project.net/downloads.php?cat=lighty
WSGI org Home Page Docs
http://wsgi.readthedocs.org/en/latest/
WSGI (Howto with Lighttpd2)
http://redmine.lighttpd.net/projects/lighttpd2/wiki/Howto_WSGI
WSGI (PEP 333)
http://legacy.python.org/dev/peps/pep-0333/
WSGI - Python's Secret Web Weapon
http://www.xml.com/pub/a/2006/09/27/introducing-wsgi-pythons-secret-web-weapon.html
http://www.coretechnologies.com/products/AlwaysUp/Apps/RunLighttpdAsAService.html
Lighttpd - light-weight HTTPD
http://www.lighttpd.net/
Simple Common Gateway Interface (replacement for CGI and similar to FastCGI)
http://www.python.ca/scgi/protocol.txt
Web Development With Python
http://www.fredshack.com/docs/pythonweb.html
Wikipedia link
http://en.wikipedia.org/wiki/Lighttpd
Windows Download
http://en.wlmp-project.net/downloads.php?cat=lighty
WSGI org Home Page Docs
http://wsgi.readthedocs.org/en/latest/
WSGI (Howto with Lighttpd2)
http://redmine.lighttpd.net/projects/lighttpd2/wiki/Howto_WSGI
WSGI (PEP 333)
http://legacy.python.org/dev/peps/pep-0333/
WSGI - Python's Secret Web Weapon
http://www.xml.com/pub/a/2006/09/27/introducing-wsgi-pythons-secret-web-weapon.html
Subscribe to:
Posts (Atom)
