Skip to content

Instantly share code, notes, and snippets.

View ebanner's full-sized avatar

Edward Banner ebanner

View GitHub Profile
[18:03:09.471][info] [REDIS] Successfully issued command "SELECT 1"
[18:03:09.471][info] [STATEDB] Persistent state DB created
[18:03:09.480][info] [TASKEXE...] TaskExecutor started
[18:03:09.481][info] [RPC] RPC thread started at address: tcp://*:7000
[18:03:09.485][info] [REDIS] Successfully issued command "CONFIG SET notify-keyspace-events AKE"
[18:03:09.485][info] [REDIS] SUBSCRIPTION STRING: __keyspace@2__:*
[18:03:09.485][info] [REDIS] SUBSCRIPTION STRING: __keyspace@3__:*
[18:03:09.485][info] [TIMERS] Starting timer thread
[18:03:09.485][info] [TIMERS] Timer thread started
[18:03:09.485][info] [QUERYPR...] Query Processor started
{
"name": "tampadevs-eleventy",
"version": "0.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "tampadevs-eleventy",
"version": "0.0.1",
"license": "ISC",
# @param {String} s
# @param {String} t
# @return {Boolean}
def is_isomorphic(s, t)
numeric_s = convert_to_numeric(s)
numeric_t = convert_to_numeric(t)
numeric_s == numeric_t
# More explicit version
# isomorphic = numeric_s == numeric_t
# isomorphic