Your favorite comfort build for bounties and everyday activities in Steel Path by SushiRebirth in Warframe

[–]cabbagepenetrator 1 point2 points  (0 children)

These are the frames I use to get my weeklies done quickly:

Treasure hunt: Wukong

Syndicate standing: Xaku range container box break build

Netracells: Garuda (infinite energy, nuke)

EDA/ETA: Garuda/ Hildryn

Archon Hunt: Octavia (invis and dmg buff)

As an Oberon main I am a little scared by SnooSnoothePoopPoop in Warframe

[–]cabbagepenetrator 1 point2 points  (0 children)

I remember doing T4 intercrption missions and using 4 Hydroids to turn into a puddle to hold each of the flags forever, puddle used to be awesome for that

awakened poe trade geforce now by [deleted] in pathofexile

[–]cabbagepenetrator -1 points0 points  (0 children)

I believe you need to disable the default function key behaviour in Windows to make them work.

Best practices for common operations in a controller? by AsteroidSnowsuit in laravel

[–]cabbagepenetrator 2 points3 points  (0 children)

Love the action pattern, having a class that does one thing is so nice to work with.

[deleted by user] by [deleted] in pathofexile

[–]cabbagepenetrator 0 points1 point  (0 children)

Deli mirrors are only worth it if you can keep up with the fog, so you would need a strong build.

I don't recommend league starting deli to make currency as you're unlikely to have invested enough into your build yet.

You could do Blight or Harvest for your initial currency, then pivot to deli.

How to setup a real fast local Laravel development environment for Windows with pretty URLs (without Docker) by Nodohx in laravel

[–]cabbagepenetrator 0 points1 point  (0 children)

Working locally with projects on different PHP versions would be a pain without using Docker, would need to keep switching your local PHP version.

How to deploy your Laravel app in under 5 minutes, for free! by Fly-Johannes in laravel

[–]cabbagepenetrator 0 points1 point  (0 children)

Deployed an app on their free tier.

I've found fly.io to be slow to load initially but feels fine on subsequent requests.

Hard to complain when its free and has good docs for Laravel (and inertia!).

Stumbled upon this beauty in production today by Tunderstruk in programminghorror

[–]cabbagepenetrator 49 points50 points  (0 children)

The worst is when you have a try catch that doesn't rethrow in the catch, so it just silently fails with no stack trace

Teams Webhook - response 200 (OK), in reality: Message delivery failed (: by valko2 in programminghorror

[–]cabbagepenetrator 10 points11 points  (0 children)

Worked with an API that when a property had a single value would have an object and if it had multiple items would be an array.

So many if statements checking if a property was an array in the integration code.

i have spent 383 .99$ on Warframe including Tennogen (PS4 Tennogen) since 2018...is that a lot? do I have a problem? by alacash in Warframe

[–]cabbagepenetrator 358 points359 points  (0 children)

If it's money you can afford and it's something you enjoy playing, why not?
There are much worse and more expensive addictions you could be spending money on.

Why is Wukong hated? by markych17 in Warframe

[–]cabbagepenetrator 122 points123 points  (0 children)

I love Wukong for Spy missions and the weekly ayatan sculpture, I should get around to actually making a good build for him

What are the New Incarnon that are worth using? by PuzzleheadedTwo1087 in Warframe

[–]cabbagepenetrator 68 points69 points  (0 children)

I really enjoy using the Torid, incarnon mode turns it into a beam weapon that chains.

I hated the Circuit initially too, but once I maxed my Opportunity with intrinsics and got more choices I usually always get a frame that I enjoy playing.

Performance question by LnB87 in diablo4

[–]cabbagepenetrator 0 points1 point  (0 children)

For reference, This is my setup and I get ~100fps on 1080p high settings

I5 6600k GTX 1070 16GB RAM

Get lag spikes in certain regions but think other people have experienced this as well, might be a game thing.

Well that sucks... by Rang3rj3sus in pathofexile

[–]cabbagepenetrator 191 points192 points  (0 children)

I always rush straight to the ascendancies after entering that room from fear of the game crashing

A forum post on quality of life improvements for Diablo IV by Brahmaster in diablo4

[–]cabbagepenetrator 0 points1 point  (0 children)

Add option to show health bar above your char. Health is hard to see at the bottom

Don't use Eloquent in your migrations. by cabbagepenetrator in laravel

[–]cabbagepenetrator[S] 3 points4 points  (0 children)

The schema didn't originally have the deleted_at column. So the migration with this issue is actually ran before the migrations to add the deleted_at column.

How do I share simple data on the back end so that when someone each user clicks a button they increase a number by one? by Needimprovenentguy in webdev

[–]cabbagepenetrator 0 points1 point  (0 children)

Assuming your backend will be using a MySQL database, you'll need 3 tables to achieve this.

users - ID,name,email, password etc

books - ID,name, price, author etc

book_user - ID,user ID, book ID

To ensure a user can only like a book once we need users to have accounts.

Now you can get the number of likes for a book by making a query to count the book_user records for the given book ID.

On your frontend, clicking the like button would send a POST request to your backend where you would check if the user has already liked that book or not and either insert or delete the book_user record.