Jump to content

flexo

Members
  • Posts

    46
  • Joined

  • Last visited

Posts posted by flexo

  1. 29 minutes ago, wolstech said:

    It's because you let your account get archived. When an account gets archived, its DNS zones get deleted. Unarchiving does not restore the DNS zones for any domain except your main domain. As a result, added domains using our DNS will not function after unarchiving unless you ask us to recreate the zones.

    I've recreated these for you and they should be working shortly.

    The "disabled" status on your added domains was because the domains are not resolvable. If a domain does not resolve to our server, the system disables it automatically after a period of time to improve server performance.

     

    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
     

     

  2. 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.

  3. 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!

  4. 7 hours ago, wolstech said:

     

     

    7 minutes ago, Krydos said:

    It's worked just fine for hundreds of other people. I just tested it and it's working for me too.

    image.png.967f7c7c1f141f7d8cbd4e60e5826718.png

    What browser are you using?

    The domains have been added to your account.

     

    UI fail then. One tries to follow the example of the pre-populated TLDs from heliohost being input into the right box.

  5. 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.)

  6. 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.

  7. On 7/20/2021 at 9:30 PM, esn024 said:

    And most of the others funnel it right to the NSA, as Snowden revealed, so pick your poison. If you live in the West, presumably the KGB's a better option (and vice versa).

    How about https://criptext.com/ ? Open-source, double-end encrypted and stored locally... 3 free email accounts, but you can use it together with AnonAddy (a good option for "signing up for spammy sites"). Even if they close your account, your emails will still be on your device. Then you can just open up a new account, change the receiving address at AnonAddy and continue as usual.

    Thanks. They only create a @criptext.com email for you, not your domain, and the non-standards "encryption" only works between two of their own accounts.

    They are also disingenuous about "open source"; there's no code for desktop or server. They are also disingenuous about the effects of a national security order with gag protection.

    Website where text doesn't stay within box elements, and you can't click links or copy text from their re-collapsing Javascript drop-down boxes. Don't make websites like this.

  8. 41 minutes ago, Krydos said:

    You were sent an email. Perhaps check your spam folder? If it's not there complain to Comcast I guess.

    Finally found it by using webmail; indeed marked spam by Comcast instead of delivered; their spam filter folder apparently doesn't IMAP sync.

    Here's things that might have triggered it https://postmaster.comcast.net/avoidblocks.html; you might craft a new email for Comcasters avoiding these rules.

    Here's headers that have some spam ratings:

    X-Xfinity-VMeta: sc=349.00;st=spam
    X-Xfinity-Message-Heuristics: IPv6:N;TLS=1;SPF=1;DMARC=P
    Authentication-Results: resimta-po-21v.sys.comcast.net;
        dkim=pass header.d=cody.heliohost.org header.b=2IU9rz5J;
        dkim=pass header.d=heliohost.org header.b=Tj43rPph
    DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed;
        d=cody.heliohost.org; s=default; h=Date:Message-Id:Content-type:
        List-Unsubscribe:From:MIME-Version:Subject:To:Sender:Reply-To:Cc:
        Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date:
        Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:
        References:List-Id:List-Help:List-Subscribe:List-Post:List-Owner:List-Archive
        ; bh=y3Ylo1DoGeo53BCSUbhrdwQEQXZ1ojegrr3b1zT1Shg=; b=2IU9rz5JS+0J/bdJzF+jPIyv

       

     

    heliospam2.jpg

  9. Just looked at some options from another thread:

    Yandex: funnels your mail right to the KGB

    Zoho: has a terrible deceptive website where the only call-to-action is "sign up for free". Do not make websites like this.
    One has to do Google searching of site:zoho.com to come up with minimum fee $12/yr per user, and no pop/imap at free tier with max 5 users and no wildcard https://www.zoho.com/mail/zohomail-pricing.html

    ...might just use registrar's free email forwarding for up to 10 accounts per domain. Will miss having unlimited wildcard to sign up for spammy sites.

  10. I've gotten no emails about the impending doom...it's only happenstance that I just logged in to see this news. (don't need a backup tho).

    Might need to blast out another warning to every email you have.

  11. Was just looking into keeping my email up through all this, as mail, being on the host servers, would also be going down.

    My domain's DNS is via Heliohost. I'm guessing that DNS being un-configurable, I'll need to pull back DNS to my registrar's DNS service too...

    For other's reference, discovered that Dynadot.com has a passable cheap plan for unlimited email accounts (but limited yearly data cap per $$) and webhosting, $16/year. Only one domain name per account. Only webmail and POP3 (mail does not stay mirrored on web server). The web hosting included is static, FTP. The shared 30MB of disk space could be quickly burned through just by emails, so a software client regularly checking and downloading emails is almost mandatory anyway.

    Dynadot has a refer-a-friend program, both referrer and new account get $5 credit after $10+ purchase. I'd have to email a link to recipient though, quite stupid..

    Any other ideas for cheap mail that only needs MX pointed to it? I'd just spin up a VM on my own server except for the port interference by the ISP and lack of rDNS and dynamic IP blocking by recipients.

  12. This seems to be recurring again, but with multiple retries I wasn't able to bypass. It took a few repeated attempts a week ago.

     

    Steps to reproduce:

    - Visit https://www.heliohost.org/#

    - login button, username & password for Tommy account

    - password error

    - Firefox ESR, uBlock

     

    Bookmarked cPanel at https://tommy.heliohost.org:2083 got me on, but probably doesn't register as a once-a-month login.

     

    Now logon works, but perhaps because I'm already in cPanel session with another tab.

     

    edit: after that login, "continue to cPanel", got me a web server error instead. Core dump.

     

    Internal Server Error

    500

    No response from subprocess (cpanel (cpanel)): The subprocess reported error number 72,057,594,037,927,935 when it ended. The process dumped a core file.

    cpsrvd Server at tommy.heliohost.org

     

    Too many cPanel accounts?

  13. Hi, the change domain tool (with three boxes), launched from the login welcome screen, flat out says "you did not enter the correct password" for me, besides apparently being deprecated/poorly supported.

     

    I have a heliohost.org subdomain that I've publicized, for an account on Ricky that's apparently not coming back anytime soon. I created a Tommy account but only .us was available on setup.

     

    Can the existing .org be moved to my Tommy account, please (and is it possible to just add the org subdomain instead of changing my new "main domain"?)

     

    domain: heliohost.org

    subdomain: taurus

    cpanel account: flexman

    old cpanel account: flexo

    thanks!

     

    (I bought a domain, now just need to host redirects with the old domain..)

  14. Did you clean your cache?

     

    I checked again to see if the ip I wrote in was wrong, still cant find it

    I just tried on a different browser. same.

     

    Also get to see a terrible scam ad that has buttons "direct deposit account" "bank checking account" "create a free website"...

×
×
  • Create New...