<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Tech on Gooseyman's Blog</title><link>https://gooseyman.com/categories/tech/</link><description>Recent content in Tech on Gooseyman's Blog</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Thu, 12 Aug 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://gooseyman.com/categories/tech/index.xml" rel="self" type="application/rss+xml"/><item><title>Windows CMD Command to Display All IP Addresses</title><link>https://gooseyman.com/post/2021-08-12_find-all-ip-addresses-on-network-with-windows/</link><pubDate>Thu, 12 Aug 2021 00:00:00 +0000</pubDate><guid>https://gooseyman.com/post/2021-08-12_find-all-ip-addresses-on-network-with-windows/</guid><description>for /L %i in (0,1,255) do ping -n 1 -w 250 192.168.1.%i&amp;gt;&amp;gt;ipaddress.txt
The above scans all the IP address on the subnet 192.168.1.XXX and saves them to a file named ipaddress.txt.
Thanks to Clifford on the thread here for pulling this together.
I often remote desktop into my mining PC. However my ATT router is spotty at best so there are times I failover to a backup network which renews my PCs IP address according to its DHCP.</description></item><item><title>Excel to Pandas Cheat Sheet</title><link>https://gooseyman.com/post/excel-to-pandas-cheat-sheet/</link><pubDate>Mon, 02 Nov 2020 00:00:00 +0000</pubDate><guid>https://gooseyman.com/post/excel-to-pandas-cheat-sheet/</guid><description>Translating Common Excel Functions to Python Pandas Methods.
This is my cheat sheet for commonly used Excel functions roughly translated to their Python Pandas equivalents.
Over the last 3 years I have increasingly found myself booting up a Jupyter Notebook to perform data analysis using Python Pandas rather than relaying on Excel. A few factors play into that:
speed when performing data analysis tasks: what one loses in GUI ability one can often make up for in speed of executing extractions, transformations, filters, calculations, etc.</description></item><item><title>How to Password Protect a Hugo Website</title><link>https://gooseyman.com/post/2020-05-26_password_protect_hugo_site/</link><pubDate>Mon, 25 May 2020 00:00:00 +0000</pubDate><guid>https://gooseyman.com/post/2020-05-26_password_protect_hugo_site/</guid><description>Hugo is a static website generator that ships without a database which adds security, simplicity, and speed. But, no database means that Hugo doesn&amp;rsquo;t have a built-in solution for password protection or user management.
Luckily, your web server does have the ability to perform basic user management. This is a good solution for making a Hugo site private.
I use this very basic .htaccess configuration to prompt a user for credentials before they can access my site.</description></item><item><title>How to Delete a Local Git Branch</title><link>https://gooseyman.com/post/2020-05-24_delete_git_brnach-copy/</link><pubDate>Sun, 24 May 2020 00:00:00 +0000</pubDate><guid>https://gooseyman.com/post/2020-05-24_delete_git_brnach-copy/</guid><description>I&amp;rsquo;m posting this here as a reference for myself, but know that this may help others in a similar situation.
I don&amp;rsquo;t often delete branches in Git, but when I do I like to make sure that I am doing so correctly.
The below guide to How to Delete a Git Branch is directly from the highest rated answer on StackOverflow.
If one wishes to delete a branch named &amp;ldquo;Test_Branch.&amp;rdquo; Switch to some other branch to avoid any errors when attemtping to delete.</description></item><item><title>SSH into NextCloudPi Without a Password</title><link>https://gooseyman.com/post/2020-05-18_ssh-into-nextcloudpi-without-password/</link><pubDate>Mon, 18 May 2020 21:39:01 -0700</pubDate><guid>https://gooseyman.com/post/2020-05-18_ssh-into-nextcloudpi-without-password/</guid><description>I recently set up a NextCloudPi (NCP) server on my Raspberry Pi to use on my LAN. Initially, I used a monitor to configure NextCloudPi. However, as this setup is now sitting on a shelf several feet from my desk, I set up SSH to allow me to connect remotely from my main PC.
I wanted to remove the password requirement everytime I SSHed in. Here&amp;rsquo;s how.
Part 1 - Enabling SSH on NextCloudPi Part 2 - Setting Up SSH Without Requiring a Password on NextCloudPi</description></item></channel></rss>