-
-
FRC – CSA Thumb Drive
In an effort to catalog what a CSA could/should have on a thumb drive I’ve started to compile the list of links below. FRC Game Manual – https://www.firstinspires.org/resource-library/frc/competition-manual-qa-system Game Tools (Driver Station / Rio Update) – https://www.ni.com/en-us/support/downloads/drivers/download.frc-game-tools.html WPILib Installer – https://github.com/wpilibsuite/allwpilib/releases Java Java Installer – https://java.com/en/download/win10.jsp OpenJDK – https://www.oracle.com/java/technologies/javase-jdk13-downloads.html#license-lightbox Uninstaller – https://javadl-esd-secure.oracle.com/update/jut/JavaUninstallTool.exe Robot Components CTRE…
-
Code | DNS | PowerShell | Windows | Windows Server
PowerShell – Compare Windows Server Host Files
If you maintain more than one Windows server sometimes you need a quick way to determine the host file differences on each server, the code below will help.
-
-
Java – FRC – Limelight Vision – Basic Information Read
The code below will help you to be able read basic information from your Limelight Vision camera. If you haven’t already read the documentation it’s a good idea to start there -> http://docs.limelightvision.io/en/latest/ Start with a new “Timed Robot” template project and add a few imports Within the “public void teleopPeriodic() {” put the below…
-
-
Code | PowerShell | Windows | Windows Reg | Windows Server
PowerShell – Open URL In Windows Default Browser
As I have found and lost this script from jkdba.com a few times I’m posting it here so I can remember it :) Reference: http://www.jkdba.com/powershell-open-url-in-default-browser/
-
-
Code | PowerShell | Windows
PowerShell – Script Timer
There are a few methods for this but my preference is below.
-
Code | PowerShell | Windows | Windows Server
PowerShell – Clear Temporary ASP.NET Files
If your Temporary ASP.NET Files directory is getting out of hand there are a few things you can do about it. First option I found was at https://sysadminspot.com/server-administration/powershell-cleanup-temp-asp-net-files/. This option works well and in some cases could be the safer option as it can’t delete files that are currently in use. I then found this…