New issues in Oracle APEX Team Development all of sudden started coming up in Chinese for all users in the workspace and I can't figure out how to change it back. I've checked all the language settings and they're in English. Any #oracle people have any ideas of how to fix this?
# Unzip a word docx:
import shutil
from pathlib import Path
from zipfile import ZipFile
p = Path("my-doc.docx")
z = p.with_suffix(".zip")
d = Path("output")
d.mkdir(parents=True, exist_ok=True)
shutil.copy(p, z)
with ZipFile(z, 'r') as zf:
zf.extractall(d)
@chrisminnick Then, it goes on to say:
You can also find more information about the xsl-fo library and its usage in the documentation: https://t.co/aC0lW2aWBO
There is no such URL and no such library. It appears to just be bs-ing.
I asked ChatGPT a Python question and it seemed to make up the answer based on what it thought should exist in Python, and not what actually does exist. Notice this at the end: "The xsl-fo library that I mentioned in my previous response is not a real library."
@chrisminnick I just asked. Part of its answer is below:
Note that the xsl-fo library is not a built-in Python library and must be installed separately. You can install it using pip:
pip install xsl-fo
I'm playing with data for a course I'm working on. The blue slices in these two pie charts tell the stories of two athletes' careers. Any guesses as to the athletes (and what the charts capture)?
I often copy and paste emails into Django Admin to search for users. Sometimes, the "mailto:" gets included when copying. If this happens to you, overriding get_search_results takes care of this: 1/2
Just learned about https://t.co/d83utF4Wmx - a search engine for finding info about R programming. Interesting idea. Do similar search engines exist for other languages or is the need unique to R b/c of the one-letter name?