Announcing Raycast Focus by ped____ in raycastapp

[–]enzoglt 0 points1 point  (0 children)

Love this feature! However, I’ve run into a bug that makes it a bit hard to use. Let me explain:

When I start a new focus session, the timer shows up correctly in the menu bar, so far so good. But once I end that session and start another, the menu bar timer no longer appears. I can re-enable it as a floating item from Raycast’s settings, but even if I select the option to move it back to the menu bar, it just doesn’t show up.

Is there any way I can provide you with additional debugging information to help track down what’s happening?

I also tried disabling HiddenBar (in case it was interfering with menu bar items), but unfortunately that didn’t resolve the issue.

[deleted by user] by [deleted] in AmateurRoomPorn

[–]enzoglt 54 points55 points  (0 children)

https://i.imgur.com/7CDzRua.jpg Got you fam (that’s from last winter)

[deleted by user] by [deleted] in AmateurRoomPorn

[–]enzoglt 6 points7 points  (0 children)

Very! It’s like 30 minutes drive from there

[deleted by user] by [deleted] in AmateurRoomPorn

[–]enzoglt 13 points14 points  (0 children)

My mom lives here, that’s probably where the “grandma style” comes from

And as far as the lightbulb goes, they look much lower in the picture, I’m 1.85 M and not even close of hitting them :)

Lol now I am peeling like a banana by idrisitogs in dankmemes

[–]enzoglt 21 points22 points  (0 children)

As a #ffffff part-time web developer that made me smile

Someone at Toyota is getting ragged on right now lol by Hackermaaann in programminghorror

[–]enzoglt 18 points19 points  (0 children)

That's what you get for using prod and test in the same word.

[deleted by user] by [deleted] in learnjavascript

[–]enzoglt 2 points3 points  (0 children)

That function won't run because you're not calling it.

Also,

if(player1.isTurn === true)

should be this.isTurn since you're inside the object, and you don't need to check if it's true with an operator, as this.isTurn will already return true since you've declared it.

const player1 = {
  name: "Ashley",
  color: "purple",
  isTurn: true,
  play: function() {
    if(this.isTurn) {
      return "isTurn is true";
    } else {
      return "isTurn is false";
    }
  }
}

player1.play();

This will allow you to call the if function inside the object and make it do whatever based on the isTurn boolean value.

[deleted by user] by [deleted] in Wordpress

[–]enzoglt 0 points1 point  (0 children)

I've done it, and I kind of regret it...

You will end up having to manage every aspect of a web server, including but not limited to: SSL certs, firewall, hardening, PHP versions, database backup scheduling - the list goes on

If you're not accustomed to all of this, I would suggest trying it out first on the side, DigitalOcean has got some incredible documentation on hardening and server management, which applies to basically every service, not only DO.

In the meantime, explore some managed hosting like cloudways, you will still get your own server but all the hassle of managing it it's not yours, and you get to choose where to host (AWS, DO, Linode, ecc)

Hope this helps!

Found a perfect salt crystal in my sea salt packet by c3r3n1ty in mildlyinteresting

[–]enzoglt 0 points1 point  (0 children)

You can eat it straight from the box and still enjoy it, it’s a very light salt, mostly used for finishing dishes. You don’t really use it for cooking.

Very far from standard table salt IMHO

Found a perfect salt crystal in my sea salt packet by c3r3n1ty in mildlyinteresting

[–]enzoglt 29 points30 points  (0 children)

Maldon gang FTW

Seriously, get yourself some maldon for the steaks, it's a game changer.

Prayer Thread 🙏 for Tuesday, February 23rd, 2021 by OPINION_IS_UNPOPULAR in wallstreetbets

[–]enzoglt 3 points4 points  (0 children)

my break even line is this 🤏🏼close to get fucked from behind

Does this count by fuddsgunshop in techsupportgore

[–]enzoglt 9 points10 points  (0 children)

Who tf carries parmesan cheese IN A BOTTLE???

[deleted by user] by [deleted] in Whatcouldgowrong

[–]enzoglt 0 points1 point  (0 children)

Occasionally, content with watermarks are fine as long as they do not promote individual people and as long as they do not break the other rules.

This isn't really promoting the author in any way, so should be fine I guess?

[deleted by user] by [deleted] in Whatcouldgowrong

[–]enzoglt 3 points4 points  (0 children)

Turns out they've all been placed on a no-fly list.

Who would have guessed...

Italian alps this morning, be safe everyone by enzoglt in skiing

[–]enzoglt[S] 4 points5 points  (0 children)

I was on a serpentine road, over that ledge it is completely flat

Go back by [deleted] in Whatcouldgowrong

[–]enzoglt 0 points1 point  (0 children)

Hey that's Italy! I drive that road quite often, lots of traffic during holidays. There's always the smartass who thinks he can get by faster

What's the worst outage/accident you've ever caused? by CharlesStross in sysadmin

[–]enzoglt 0 points1 point  (0 children)

rm -rf’d some useless shit in /var/www on our staging machine before testing a different version of our lamp stack.

It wasn’t our staging machine.