A Data Gman
Toggle navigation
  • Home
  • Resources
  • About

Linux Equivalent on Windows

By Aaron Grossman • July 27, 2019 • 0 Comments

Reading about tools more commonly used on *nix than Windows such as Python and Ruby, there's often references to command line utilities on Linux. These often have a Windows equivalent, and I'm going to compile the list of references I use here to make them easier to find.

  • Windows Commandline
Continue Reading
Quick Reference

Start PowerShell script from one window in another

By Aaron Grossman • June 25, 2019 • 0 Comments

To call a PowerShell (PS) script from another PowerShell script and have it run in a second terminal window without exiting, you can use a script similar to:
Start-Process PowerShell.exe -ArgumentList "-noexit", "-command .\local_path\start_server.ps1"

When developing in Visual Studio Code, I

Continue Reading
PowerShell,Quick Reference

Check for Open Firewall Port

By Aaron Grossman • April 06, 2019 • 0 Comments

If you need to figure out whether a port is open between two machines in the firewall, Telnet is a useful program commonly referenced at my employer.

The format for the command in Windows is: telnet <address> <port>. A successful connection is just a blank command

Continue Reading
Quick Reference

Installing Microsoft Visual C++ 14.0 Offline

By Aaron Grossman • November 13, 2018 • 0 Comments

To install Microsoft Visual C++ 14.0 offline requires a few steps. This was part of the process for getting SQL Server 2017 with Machine Learning / Python running at work.

  1. Download the Build Tools executable from the network installation page.
  2. Set up a folder on a drive where you have
Continue Reading
SQL Server,Python

Using PyHive in EMR

By Aaron Grossman • October 31, 2018 • 0 Comments

Using PyHive on AWS (Amazon Web Services) has been a real challenge, so I'm posting all the pieces I used to get it working.

Components Installed

PyHive

python3 -m pip install --user pyhive

SASL

sudo yum install cyrus-sasl-devel - Courtesy of Stack Overflow
python3 -m pip install --user sasl

Thrift

Continue Reading
Quick Reference,Python,AWS,EMR,Hive
Page 2 of 4

Find me on

  • Aaron Grossman's DEV Profile

Tags

Amazon WorkSpaceAWSDAXDockerEMRETLGetting StartedGuideHivePower BIPower QueryPowerShellPresentationPythonQuery FoldingQuick ReferenceSecuritySQL ServerVSCodeWeb DevelopmentWSL

Twitter

Tweets by ADataGman

Recent Post

Copy files from Windows to Devcontainers
April 21, 2022
Cursor Offset & Multi Monitors on Amazon WorkSpaces
October 16, 2021
Filter Table by Another in Power Query
January 25, 2020

Tags

Amazon WorkSpaceAWSDAXDockerEMRETLGetting StartedGuideHivePower BIPower QueryPowerShellPresentationPythonQuery FoldingQuick ReferenceSecuritySQL ServerVSCodeWeb DevelopmentWSL
Copyright © 2025, A Data Gman. All right Reserved.