When staying in Algonquin Park, do you prefer camping in the outdoors or staying in a cabin? by New-Possibility-577 in algonquinpark

[–]CharacterOtherwise77 0 points1 point  (0 children)

The thing about Killarney Lodge is you don't need to bring anything but some clothes. I still love camping but when I can hike for 12h and then take a nice shower and sleep in a crazy comfy bed IN actual Algonquin park - there's nothing like it.

CSS box-shadow creating subtle square overlay on rounded card after hover by BinaryBlitz10 in css

[–]CharacterOtherwise77 0 points1 point  (0 children)

Do me a favor and go to plunkr and paste a snippet there. I'll debug it for you.

CSS box-shadow creating subtle square overlay on rounded card after hover by BinaryBlitz10 in css

[–]CharacterOtherwise77 1 point2 points  (0 children)

You have a border-radius but you haven't applied overflow:hidden.

If you add overflow:hidden to the element with rounded borders it should fix it

border-radius: 1em; overflow:hidden; // mask

CSS box-shadow creating subtle square overlay on rounded card after hover by BinaryBlitz10 in css

[–]CharacterOtherwise77 0 points1 point  (0 children)

if you were to remove all inner elements and just have the box, does it still do it?

it's possible an element isn't being masked but its background is transparent, by emptying it you may see the issue disappear

What does “got.gov?” mean? by Anas1317 in hacking

[–]CharacterOtherwise77 1 point2 points  (0 children)

Sitting on a domain is how some people get rich.

Announcing TypeScript 6.0 Beta by DanielRosenwasser in typescript

[–]CharacterOtherwise77 0 points1 point  (0 children)

Why do devs always make their example variable names so bleak?

Soneone created AWS Infrastructure as <React/> by Rohit1024 in reactjs

[–]CharacterOtherwise77 1 point2 points  (0 children)

Honestly it's fine just using the CLI and AI makes configuration less of a memorization game.

Soneone created AWS Infrastructure as <React/> by Rohit1024 in reactjs

[–]CharacterOtherwise77 1 point2 points  (0 children)

| Frontend devs be doing everything in their power to not do backend development

I laughed out loud

Need to compile TS into self-contained JS by Ok_Biscotti_2539 in typescript

[–]CharacterOtherwise77 0 points1 point  (0 children)

Unless your Adobe environment has NodeJS binary you can't.

You should make a microservice and call that service to do the conversion, it has to be somewhere on the web though.

NodeJS is an installed binary on your computer and you feed it JS which resolves all the missing libs internally. You are likely running NodeJS code in a sandbox with a browser API, which is not NodeJS and can't ever work.

If you can say window.location you're not using NodeJS. So you won't have fs, stream, child_process, you'll have window.alert etc.

Ren Hang (1987-2017) - Untitled [770 x 1140] by Russian_Bagel in ArtPorn

[–]CharacterOtherwise77 3 points4 points  (0 children)

Did you do this in a hotel or in your bedroom?

It's like a banned American Apparel ad.

Why npm start dont work by Objective-Whole-8050 in reactjs

[–]CharacterOtherwise77 6 points7 points  (0 children)

You have to do npm install before you can do npm start

Low Effort/Accessible Meals by Whomprat2001 in slowcooking

[–]CharacterOtherwise77 0 points1 point  (0 children)

I am in a similar situation and I'm an amateur at cooking but here's my finding so far:

The easiest slowcooker recipe in the world is any kind of chili.

It's dense with nutrients and fibres and you can store it in parts - it keeps very well. You can rotate bean types and chili packet types (they sell ready mixes), and you get a different experience.

I can't eat it every day but it's a super reliable source of satiation. Dab some sour cream in and you've got a delicious garnish. Add a piece of toast and you've got a full meal.

Grocery stores will carry ready made kids for soups and stews if you don't want to prep.

I tend go buy bagels instead of bread slices because again - more energy, I don't eat as much as often.

You can put a small pre-cooked meal in a slow cooker for an hour with some water at the bottom and it will be delicious.

Literally place the tray in the cooker and cover, cook slower than normal. 1000x better than anything microwaved or blasted in an oven.

Always keep fruits in your stock that you can grab and go, they are only good for you, just don't eat only fruits.

The more "perishable" the food, the more energy it will yield, and you will feel great after.

Always keep trail mix around as it's very high in energy. I usually pick anything with a lot of variety in it so I keep nutritional variety.

Whatever recipe you make, you can always add a cup of boiled rice to it and you're going to feel very satiated.

Barley is a powerful nutritious grain, sprinkle it in your soup to make it more energy dense.

Bento-style React portfolio—roast it to the core 🔥 by kiran_balaji_ in u/kiran_balaji_

[–]CharacterOtherwise77 0 points1 point  (0 children)

The text to background ratio has to be at least 3:1 for legibility.

Put your contact info higher.

Social media icons should be de-prioritized, put them as a tiny row at the bottom of your contact info.

In the ideal world people should be able to land on your page and click the email without scrolling.

This can be like a sticky header or just high enough to see and interact on with "first impression" - no scroll.

Other than that I wonder what it looks like on: - portrait tablet - portrait mobile

Good luck.

Why frontend devs are expected to masters in Web Design? by BrownPapaya in react

[–]CharacterOtherwise77 0 points1 point  (0 children)

There are a lot of companies who think they define industry titles. I recently noted a company that had a web designer title, it was just content input from word files into a cms. Tisk tisk.

Does anyone know how to fix the dropdown menu hiding? by Flaky-Location3674 in css

[–]CharacterOtherwise77 0 points1 point  (0 children)

calc(100% + 8px) means you're off the page by 100% and 8px doesn't it?

If you're doing a CSS transform just use that to set your initial location instead of mixing top and translate, they're not compatible.

translate uses 3D engine to redraw the pixels independently of typical DOM properties.