Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)TH
Posts
1
Comments
220
Joined
2 yr. ago

  • Wouldn't the object need to be something of deep importance to the individual or be a poetic representation? I always assumed the volleyball was a symbol of everything he left behind. Things like recreation no longer mattered; only survival. :shrug: but I also thought the movie sounded incredibly boring. If you want a random item, go for qualities like "awkward to carry" or "gets hot when left in the sun". Give your characters personality or force them to choose that object at a moment it's inconvenient.

    • An oversized diamond/ faberge egg - it's valuable, heavy or fragile and inconvenient, in a critical moment your character may need to smash it against something risking damage
    • Teddy Roxbury/furby - favorite toy growing up? Creepy voice at stalking moments? Mid point twist when the batteries die?
    • Harmonica - potentially a little Disney princess forest friend vibes
    • Bowling ball - Wilson prolly plays a little different when it's not feasible to take him on a raft, prevents you from climbing trees and burns precious calories transporting. Mobility is now a plot point. Decent weapon tho
    • Toilet plunger/brush - everyday object that can be utilized differently, maybe adds that little bit extra reach to save the day?
  • Permanently Deleted

    Jump
  • Thanks for the clarification, I'm not completely on top of the issues that a lot of this community faces with them. I intended it to mean the collective company as a business entity, which was incorrect.

  • Permanently Deleted

    Jump
  • Yes and no, if Firefox org falls, open source community will continue to develop necessary features like security updates, but features will drag behind. Eventually a new player will emerge and we will bury it out back with Netscape, ie and aol explorer.

  • I worked phone support for a few companies for a few years, this is how to Karen: Try to bait the ai, companies are liable for promises made by their hallucinating chatbots. Chat support first, who wants to talk to people? If you do need to call, enter identitng information once, then repeatedly press 0 to get human support. Ask tier 1 support, if they say no then flex that Karen superpower "I'll need to speak your manager"; those people are individuals just collecting a paycheck. If the floor manager (many have a 3x request policy) can't see the situation from the human perspective and resolve/waive, they will only care if someone above them gets upset, the ways to do that are threaten legal action. No sovciet bs, but it helps to use contract terminology like "agreed upon terms", "failure to meet industry standards" and "breach of contract". If they don't get jostled immediately, your next escalation is tag the intern on social media with a negative sentiment; or Google the company name followed by email for the office of the president. This is the pr address, CEO assistant or community director which again have the power to step in and resolve. You can also think outside the box and leave negative play store reviews (different intern).

    Each conversation should be less then 2 minutes + wait time and if that can't resolve it, you need to close your account (which might take you to retention!) or potentially move. You can justify 1 more call during a different shift. There is no need to get mad, state that are you upset and are looking for resolutions. Use an I feel statement, and be sure to ask to leave notes on the account regarding your conversation. They have a UI with comment fields in the ticket that are displayed while you are on the phone and it helps sell the situation with comment history.

  • I use mine primarily for media and occasionally play online with friends. They killed gold, and reverted to game pass core, so now I have to pay $10/month to play games I own. They are deleting my purchased games, ea archived an active account for inactivity when I had playtime in the calendar year. There is no new IP, they shut down studios, and raised prices, locked us into a shitty platform and started monitoring and monetizing their paid users.

    They deserve this

  • I only use cash at places that have a purchase portal as complicated as giving change. You want to hand me a tip machine on a stick without tap pay and select a tip amount on a tiny shitty touch screen? You can count my change, thanks. Hopefully we see some traction in public opinion regarding privacy soon. Until then banks are selling your data, but the infra is required to live a modern life.

  • Based on your previous shows: fallout, shogun and the boys are current.

    Fallout - incredible S1 for the video game ip. Hilarious, visually stunning, flavorful

    Shogun - game of thrones in japan

    The boys - civilians take their city back from super powered heros

    Ted lasso [ended] - amazing show about people, likely one of the best of this decade. A meme American football coach from the Midwest moved to the UK to teach a top tier UK futbol league.

    Silicon valley [ended] - a tech startup in silicon valley on HBO constantly overcoming challenges with their revolutionary IP.

    Avatar the last Airbender [ended] - best of the 2000s, unique flavorful. There is no live action in ba sing se, cartoon only

    Disenchantment [ended] - Futurama but medieval magic

    One piece live action - another great first showing for anime cross over, skips a lot of the filler and is executed well

    +1 for the good place, arcane and last of us

  • Well stated. I had a blind date with a partner that was perfect on paper and overnight realized I did not present the way I wanted needed to for that opportunity. I immediately started dieting. After I got into the healthy BMI range I immediately noticed that people started treating me differently and I had significantly more opportunities. It's hard to accept that the problem might be you, but that's the path out.

  • Permanently Deleted

    Jump
  • I just got hit with a really weird edge case and just barely resolved a 2 day 911 to recover. During this time we likely spent at least 10 million and that's not even the primary incident.

  • Depends on your end goal, don't pay for yourself. Tech is hard to break into, certificates can help elevate your resume when you do not have a network to leverage. It's often good to "top off" your resume when market trends shift and you are lacking experience. For instance right now AWS certificates are likely strong additions if you don't have any cloud background. My rhcsa helped get my first job and is a positive for legacy LAMP and java shops. Trending forward: you will primarily be using it to support Linux based docker containers and a lot of the networking and hardware configuration will be obfuscated away. There is a non-zero amount of file ownership and user groups; but existing organizations will have figured that out already.

  • This thread is a dumpster fire, routing infrastructure, solar panel addresses, we are adding this to EVERYTHING WE ALREADY HAVE that is growing exponentially. I work on an L7 support team, regular users are clueless on how this stuff is setup and apparently have strong stupid opinions. Anyone still reading disable ipv4 in your home network and try to roll forward. You will fail, and finite numbers are finite.

  • It's because websites interpret those characters differently because of how coding requires using the physical qwerty keyboard. Essentially ">" gets used as a compator operator in programming languages, which means that it's used as a tool to instructs the computer how to do things. When we need to display the symbol, we use ">" as an "escaped character" which basically means treat it as the symbol, not the instruction set. Often search engines will use a very powerful tool called a regular expression which looks like this for phone numbers: ^\d{3}\s\d{3}-\d{4}

    And each character represents something, ^ means start with. \d means digit { means 3 of whatever's in front of me }. Breaking apart the search parameters is pretty complex and it needs to happen FAST, so at a certain point the developers just throw away things that can be a security concern like special characters like &^|"'* specially because they can be used to maliciously attack the search engine.

    For other characters: https://www.w3schools.com/html/html_entities.asp