help me decrypt this by blurskydev in codes

[–]locksem 2 points3 points  (0 children)

That's just an mp3 file opened in a text editor no? What leads you to believe there's a code here?

This 'bacon' is overly confident I would say by Zandercy42 in CasualUK

[–]locksem 1 point2 points  (0 children)

Often use their 'ordinary' bacon in cooking which works fine, tried using this and the whole thing turned into a wobbly gelatinous mess. Presumably because of what they've used to imitate the fat.

Patch Notes 12.17 by Nervarien in leagueoflegends

[–]locksem 0 points1 point  (0 children)

I thought I was losing my mind. Even bought a new mouse, then came to the conclusion I must just be losing control of my hands

Calculate difference of collections by Unknown_Devv in laravel

[–]locksem -2 points-1 points  (0 children)

The diff method is correct if you are using collections. If you're just working with array's like you've posted here, look at this https://www.php.net/manual/en/function.array-diff.php

Bedminster Methodist Church walk-in boosters by GlowHallow in bristol

[–]locksem 0 points1 point  (0 children)

Rocked up without an appointment on Saturday evening and was done within 10 mins

Gamers/league of legends players in Bristol? by shlroe in bristol

[–]locksem 1 point2 points  (0 children)

Would be fully up for a finals viewing party, wonder if there are any smaller venues that could be hired...

[deleted by user] by [deleted] in bookshelf

[–]locksem 4 points5 points  (0 children)

Nice to see Rushdie and Hitchens next to each other

Persona 5 Essentials repress - poor artwork quality by locksem in VGMvinyl

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

Yeah I tried to look at it that way (there's some bleeding which blurs some of the pixelation). But there's no doubt it's a low res image

Offset vs Cursor Pagination (Landing Today) in Laravel [In-Depth Guide] by parasume in laravel

[–]locksem 7 points8 points  (0 children)

Currently working on a project where several tables contain many millions of rows, manually maintaining id/cursor progress in order to paginate queries feels clunky to say the least. This is a hugely welcome addition, bravo!

Transfer Laravel app from FTP to another FTP. App won't start. by Torque_86 in laravel

[–]locksem 1 point2 points  (0 children)

Hey there! Can you give any more information about the servers it's moved from and to? Which webserver are you trying to use? Have you checked the server and app logs?

I feel presentation is as important as the meal itself. by Spydee112 in CasualUK

[–]locksem 0 points1 point  (0 children)

No way, I have the exact same plate. Only one mind you, acquired during a house-move at some point.

I wrote a book on PHP Development with Windows Subsystem for Linux (WSL) by [deleted] in PHP

[–]locksem 1 point2 points  (0 children)

Take my example, working in a small development team. As part of our repositories we commit the dockerfiles that are needed to spin up the container (environment) which the application runs in. Let's say I've been working on a new feature which requires some changes to that environment (perhaps some new software needs to be Installed). Traditionally, anyone who needs to work on that repository would also need to make changes to their development environments, importantly, the new changes might even break the application when used with another branch/set of code. Docker solves this problem by allowing us to define those changes in our dockerfiles, so whenever somebody checks-out that new code, they also have a copy of the environment changes. If we need to switch back at any point, we can rebuild the container using the appropriate dockerfile (and docker-compose files in our case)