This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Test using `$ pytest date_add.py ` | |
import calendar | |
import sys | |
import unittest | |
from datetime import date, timedelta | |
def parse_input_arithmetic(inputs): | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Output enumerated value of an input string | |
# | |
# Example usage: | |
# $ python code_enumerator.py | |
# Enter code to enumerate: 5LMJZJCBCTWU | |
# 1 = 5 | |
# 2 = L | |
# 3 = M | |
# 4 = J | |
# 5 = Z |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Output calendar for a given month showing: | |
# - Weekdays only | |
# - Zero padded single digit day numbers | |
# | |
# Example usage: | |
# $ python weekday_calendar.py | |
# Enter month (1 = January, 12 = December) [2]: | |
# Enter year [2024]: | |
# February 2024 | |
# Mon Tue Wed Thu Fri |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Open a browser and login to the Assetz Capital Investors portal | |
// In the investor portal, navigate to Statements -> Account balances | |
// Open a debug console and copy/paste the following code | |
// Set configutation variables | |
startDate = '2018-05-01' | |
numMonthsToAdd = 69 // Adjust the monthsToAdd as required. '2018-05-01' + 69 months = 2024-01-01 | |
timezone = 'Europe/London' | |
// Function to delay execution |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version='1.0' encoding='UTF-8'?> | |
<rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"> | |
<channel> | |
<title>The Unbelievable Truth</title> | |
<link>https://www.bbc.co.uk/programmes/b007mf4f</link> | |
<description>Game show in which panellists compete to see how many nuggets of truth they are able to to hide amongst their lies.</description> | |
<itunes:explicit>no</itunes:explicit> | |
<docs>http://www.rssboard.org/rss-specification</docs> | |
<generator>python-podgen v1.1.0 https://podgen.readthedocs.org</generator> | |
<lastBuildDate>Tue, 15 Feb 2022 21:04:05 +0000</lastBuildDate> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Do a ping and output results as CSV. | |
# | |
# [email protected] | |
# 2011-12-23 | |
# | |
if [ $# -lt 1 ]; then | |
echo "Usage: $0 [--add-timestamp] <ping host>" |