import IPython
IPython.embed_kernel(local_ns={**globals(), **locals()})
This file contains 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
import string | |
import random | |
letters = random.sample(string.ascii_uppercase, 7) | |
central_letter, word_flower_letters = letters[0], letters[1:] | |
print(central_letter) | |
print(','.join(word_flower_letters)) |
This file contains 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
javascript:(function(){ | |
document.querySelectorAll("div.mt-2x.mt-md-3x").forEach(element => element.remove()); | |
})(); |
This file contains 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
# @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 |
This file contains 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
{ | |
"name": "tampadevs-eleventy", | |
"version": "0.0.1", | |
"lockfileVersion": 2, | |
"requires": true, | |
"packages": { | |
"": { | |
"name": "tampadevs-eleventy", | |
"version": "0.0.1", | |
"license": "ISC", |
This file contains 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
[1m[18:03:09.471][info] [REDIS] Successfully issued command "SELECT 1" | |
[00m[1m[18:03:09.471][info] [STATEDB] Persistent state DB created | |
[00m[1m[18:03:09.480][info] [TASKEXE...] TaskExecutor started | |
[00m[1m[18:03:09.481][info] [RPC] RPC thread started at address: tcp://*:7000 | |
[00m[1m[18:03:09.485][info] [REDIS] Successfully issued command "CONFIG SET notify-keyspace-events AKE" | |
[00m[1m[18:03:09.485][info] [REDIS] SUBSCRIPTION STRING: __keyspace@2__:* | |
[00m[1m[18:03:09.485][info] [REDIS] SUBSCRIPTION STRING: __keyspace@3__:* | |
[00m[1m[18:03:09.485][info] [TIMERS] Starting timer thread | |
[00m[1m[18:03:09.485][info] [TIMERS] Timer thread started | |
[00m[1m[18:03:09.485][info] [QUERYPR...] Query Processor started |