Just went through this little primer on the R language for data analysis. Pretty good and worth 30 minutes of your time. Check it out. http://tryr.codeschool.com/
Author: bitsofinfo
Execute Powershell commands via Node.js, REST, AngularJS
Building on my last post on stateful-process-command-executor this post will cover how you can leverage that node.js module to expose the capabilities of Powershell cmdlets over a REST api presented through an AngularJS interface. Why would one want to do this you ask? Well I've covered this in my last post but I will briefly … Continue reading Execute Powershell commands via Node.js, REST, AngularJS
Encrypting and storing powershell credentials
Please see: https://github.com/bitsofinfo/powershell-credential-encryption-tools Recently I had the need to store some credentials for a powershell script (i.e. credentials that I ultimately needed in a PSCredential object). The other requirement is that these credentials be portable and "user" independent, meaning that they could not be encrypted using the DPAPI (windows data protection api) as that binds … Continue reading Encrypting and storing powershell credentials
Executing stateful shell commands with Node.js – powershell, bash etc
Hoping this will be useful for others out there, I've posted some code that could to serve as a lower level component/building block in a node.js application who has a need to mediate interaction with command line programs on the back-end. (i.e. bash shells, powershell etc.) The project is on github @ stateful-process-command-proxy and also … Continue reading Executing stateful shell commands with Node.js – powershell, bash etc
Configuring PowerShell for Azure AD and o365 Exchange management
Ahhh, love it! So you need to configure a Windows box to be able to utilize DOS, sorry PowerShell, to remotely manage your Azure AD / o365 / Exchange online services via "cmdlets". You do some searching online and come across a ton of seemingly loosely connected Technet articles, forum questions etc. Well I hope … Continue reading Configuring PowerShell for Azure AD and o365 Exchange management
Copying lots of files into S3 (and within S3) using s3-bucket-loader
Recently a project I've been working on had the following requirements for a file-set containing roughly a million files varying in individual size from one byte to over a gigabyte; and the file-set size in total being sized between 500gb and one terabyte Store this file-set on Amazon S3 Make this file-set accessible to applications … Continue reading Copying lots of files into S3 (and within S3) using s3-bucket-loader
Is the Jasypt project dead?
I'm posting this because I don't know where else to ask.... is the Jasypt project dead? I ask this because I have no idea where to ask questions or get community support for this Java JCE encryption library. The mailing lists seem dormant, the "forums" do not load and the issue tracker seems pretty idle.... … Continue reading Is the Jasypt project dead?
Generating Java classes for the Azure AD Graph API
NOTE: I've since abandoned this avenue to generate pojos for the GraphAPI service. The Restlet Generator simply has too many issues in the resulting output (i.e. not handling package names properly, generics issues, not dealing with Edm.[types] etc). However this still may be of use to someone who wants to explore it further Recently had … Continue reading Generating Java classes for the Azure AD Graph API
Logstash: Failed to flush outgoing items UndefinedConversionError workaround
If you have ever seen an error similar to this in Logstash it can be frustrating and can take your whole pipeline down (blocks). It appears that there are some outstanding tickets on this, one of which is here. This error can occur if you have an upstream input where the charset is defined as US-ASCII (such … Continue reading Logstash: Failed to flush outgoing items UndefinedConversionError workaround
Encrypting Logstash data
Note, the patch described below is now merged into the official logstash-filter-cipher plugin as of January 2016, version 2.0.3 UPDATE: Note the pending patch to fix various issues and add random IV support for encrypting logstash event messages is located here here: https://github.com/logstash-plugins/logstash-filter-cipher/pull/3 Logstash can consume a myriad of data from many different sources and … Continue reading Encrypting Logstash data