Jump to content

flexo

Members
  • Posts

    49
  • Joined

  • Last visited

Profile Information

  • Gender
    Male

Recent Profile Visitors

1,266 profile views

flexo's Achievements

Apprentice

Apprentice (3/14)

  • Reacting Well Rare
  • Conversation Starter Rare
  • First Post Rare
  • Collaborator Rare
  • Week One Done Rare

Recent Badges

0

Reputation

  1. From my home IP, 73.180.xx.xx, either my domain, https://johnny.heliohost.org/, or even the login through the main web site times out, just as has happened before. I load a web page maybe once a day, but it might be triggered by use of a machine with Firefox ESR and Win11 beta channel. Beyond an unblock, please remediate this issue so it doesn't happen again. Also, no more discord chat icon on the heliohost site?
  2. I've logged in several times since service was restored. Might be worth seeing what's going on. had to "renew" just now, and the last time, this took recreating subdomains manually.
  3. Here's some pizza money for cranking up the monthly timeout to whatever that's worth! Thanks for donating $10.00 USD to Helio Networks Paypal Transaction ID: 7AJ82374VH548954P
  4. Thanks, I'll try to say hi to Plesk more often!
  5. I've gotten a few email reminders and had to log in to reactivate in the past months. I again visit plesk and find my sites still "inactive" and had to switch them to active. Still not working hours later, dns lookup of sites not working. Registrar still pointing to heliohost nameservers. server: johnny acct: flexo thanks for your attention!
  6. Thanks. `openai` should update ok (with the same level of function already present) I'll see if I can do "all that" as a shared host user on my own VM and move it over if I need to try out some chatbot chatting from another IP.?
  7. openai 0.27.4 -> 0.28.1 (to current) - all requirements satisfied this should be non-breaking for anyone, the old version is obsolete --- then -> tiktoken 0.5.1 (pip install tiktoken) - will need regex>=2022.1.18 tiktoken installation will download 3MB caches upon first use, run: >>> import tiktoken >>> encoding = tiktoken.get_encoding('p50k_base') >>> encoding = tiktoken.get_encoding('r50k_base') >>> encoding = tiktoken.get_encoding('cl100k_base') >>> encoding.encode("hello") [15339] hopefully the system cache can be made readable from user space, using os in the library and os.environ. self-documentation, from tiktoken's load.py: def read_file_cached(blobpath: str) -> bytes: if "TIKTOKEN_CACHE_DIR" in os.environ: cache_dir = os.environ["TIKTOKEN_CACHE_DIR"] elif "DATA_GYM_CACHE_DIR" in os.environ: cache_dir = os.environ["DATA_GYM_CACHE_DIR"] else: cache_dir = os.path.join(tempfile.gettempdir(), "data-gym-cache") if cache_dir == "": # disable caching return read_file(blobpath) cache_key = hashlib.sha1(blobpath.encode()).hexdigest() cache_path = os.path.join(cache_dir, cache_key) if os.path.exists(cache_path): with open(cache_path, "rb") as f: return f.read() contents = read_file(blobpath) os.makedirs(cache_dir, exist_ok=True) tmp_filename = cache_path + "." + str(uuid.uuid4()) + ".tmp" with open(tmp_filename, "wb") as f: f.write(contents) os.rename(tmp_filename, cache_path) return contents Otherwise the system installed code would download for each object instantiation or bork if no `os` is available. unmodified user code would also seem to need os.
  8. You have the left box that is taking two distinct types of data. Either only a "user account"-style subdomain, which will have the dropdown-selected Heliohost main domain name appended. Or, in opposition to that mechanism, a fully-qualified domain name if "custom" is selected. At face value, from hinting of the first choices, correct input appears like "mysite.com.custom" I think I would have a radio button selection above. () Create a new site using a custom heliohost-provided domain, or () I have my own domain name through a registrar. And then dynamically grey or display two different input areas. Thanks again for everything!
  9. UI fail then. One tries to follow the example of the pre-populated TLDs from heliohost being input into the right box.
  10. Thanks. If only one domain is supported for email, I'd like hotnova.com to be the primary site. A xxx.heliohost.us type domain I don't need, unless needed for internal management or as the virtual root. Don't see an option in "create email" for a wildcard catch-all email?
  11. Thanks! Flexo account created. Domains to add: <removed> <removed> (please edit account details out of posts after creation for security) Domains currently pointed to your nameservers. ("custom" domain dropdown in account creation did nothing but say "a dot is required", while not allowing input.)
  12. acct: "flexman" Got email 5 Feb. Tried the migration, and surprise, "server is down with drive corruption", so I'll have to wait. You didn't extend the shutdown time though. Now completely deactivated, and no more account at all? So looks like I'll need to ask for a server invite, if the account hasn't been moved elsewhere and was just tossed. "download your backup" still has my email address.
×
×
  • Create New...