Great Article On Packer / Ansible Work Flow
https://blog.codeship.com/packer-ansible/
Wednesday, December 21, 2016
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
Subscribe to:
Posts (Atom)