Installation Download the Citrix Workspace app from the official website.Install using dpkg: $ cd Downloads $ sudo dpkg -i Citrix-Workspace.deb Installing a CA Certificate The pre-installed certificates might work for you. If you get errors when trying to use Citrix, then you'll likely need to install a CA certificate. Go to the VPN website you … Continue reading Installing Citrix Workplace on Ubuntu Linux
Category: code
Forecasting a Cryptocurrency’s Price
April 20, 2022 Update: I'm noticing a bit of traffic for this post. Two corrections need to be made to the text below. The emissions contract for Ergo is sent to be changed so it extends emissions out a few decades. This will change the total Ergo in circulation to about half in this time … Continue reading Forecasting a Cryptocurrency’s Price
bash: TOTP From the Terminal With oathtool
TOTP is Time-based One Time Password. Most people use applications on their phone for TOTP, such as andOTP, Google Authenticator, and related apps. But, as we move from using a phone as a second factor for what we are doing on a computer to a phone being the primary way we interact with the Internet, … Continue reading bash: TOTP From the Terminal With oathtool
bash: Number of Days Between Today and Some Future Date
#!/bin/bash printf -v date '%(%Y-%m-%d)T\n' -1 echo $(( ($(date -d $1 +%s) - $(date -d $date +%s)) / 86400 )) days Above is a bash script to output the number of days between today and some future date. Copy it into a file, e.g., diffdate.sh, into a directory, e.g., ~/bin/scripts. Then, enter the directory you … Continue reading bash: Number of Days Between Today and Some Future Date
Forecasting in R: Probability Bins for Time-Series Data
This time-series.R script, below, takes a set of historical time series data and does a walk using the forecast period to generate probabilistic outcomes from the data set. Input file is a csv file with two columns (Date, Value) with dates in reverse chronological order and in ISO-8601 format. Like so: 2019-08-06,1.73 2019-08-05,1.75 2019-08-02,1.86 Output … Continue reading Forecasting in R: Probability Bins for Time-Series Data
Forecasting with R Script: Graph of WHO Flu Data
# flu.R # Original: November 2, 2018 # Last revised: December 3, 2018 ################################################# # Prep: Go to the WHO Flumart website: # http://apps.who.int/flumart/Default?ReportNo=12 # Select Year 2000 Week 1 to current year, week 52. # Save file to the data directory. Change weeks below. ################################################# # Description: # Script parses cvs file and provides … Continue reading Forecasting with R Script: Graph of WHO Flu Data
