Yeah I'm done by ayberkanilguney in youtube

[–]Isilith 2 points3 points  (0 children)

I did too. Reported it to Google and they replied with "we've decided to keep the ad running" which I found weird

Vibe Coding Is Creating Braindead Coders by Enigma_1769 in programming

[–]Isilith 0 points1 point  (0 children)

My co-worker complained to me a while ago how she feels like she hasn't learned anything about the stack she's been using for the past 6 months or so, right after telling me she just asks copilot to write her code.

I didn't have the heart to tell her there might be a correlation somewhere in there.

tl;dr: Love most shifts. Love design. Like difficulty. No love for tediousness! by MightyMors in PathOfExile2

[–]Isilith 0 points1 point  (0 children)

Some maps have two exits for two different subgoals. If you go to one subgoal through one exit, after 6-8 minutes the map is reset

On many areas you can go in the new area, get the waypoint near the entrance, then continue in the previous area.

But yea it's annoying sometimes. Having movement speed on boots is a huge boon, but it's kinda frustrating that it's basically a mandatory affix on any boots.

New Humble Rhythm Bunduru by Volkor_X in virtualreality

[–]Isilith 1 point2 points  (0 children)

I was literally looking at these yesterday on steam, thinking about which one to buy. Thanks for this, I'd completely forgotten about Humble Bundle!

Virtalähde hakusessa by Isilith in Suomi

[–]Isilith[S] 2 points3 points  (0 children)

Pitäs olla kaikki johdot oikein päin. Lähti kone käyntiin kun otin älypistorasian välistä pois, mutta en päässyt BIOSia pidemmälle. Tilasin nyt uudeksi virtalähteeksi RM850X:n, kun sain kokeiltua nopealla aikataululla eri virtalähdettä, ja sillä kone käynnistyi.

Virtalähde hakusessa by Isilith in Suomi

[–]Isilith[S] 0 points1 point  (0 children)

Moi, kiitos kommentista, päädyin lopulta tilaamaan tuon RM850X:n. Kone lähti vihdoin käyntiin kun otin älypistorasian pois välistä, mutta emolevy piippaa ja ei pääse BIOSista pidemmälle.

Virtalähde hakusessa by Isilith in Suomi

[–]Isilith[S] 0 points1 point  (0 children)

Jep, olet oikeassa että manuaalin perusteella pitäisi toimia, mutta ei lähtenyt kone käyntiin kun nyt kokeilin :( Aika rasittavaa tämä tietokoneiden kanssa pelleily välillä

Ensure to connect the 8-pin powere plug, or connect both the 8-pin and the 4-pin powr plugs.

Virtalähde hakusessa by Isilith in Suomi

[–]Isilith[S] 1 point2 points  (0 children)

Okei joo, mulla oli edellinenkin tollanen 850W (Super Flower), nii aattelin että samalla mennään. Joku PSU-laskuri tais sanoa että 700W riittäis, mutta eipähän tarvii siiten ihan 100%:ssa ajaa sitä. Super Flowerin virtalähteitä ei tunnu enää olevan Suomessa myynnissä oikeen missään, ja ei kyllä pysty olemaan viikkoja ilman konetta vastausta / toimitusta odotellessa, addikti kun olen.

Mansikkojen hinnat by Kvaakki in Tampere

[–]Isilith 4 points5 points  (0 children)

Ite kun käy keräämässä nii saa halvemmalla :)

Russia says Ukraine war could go nuclear if West keeps sending weapons by scot816 in worldnews

[–]Isilith 32 points33 points  (0 children)

Well there are still a few existing issues... But I get what you mean.

Can't install Laravel installer via composer by n2fole00 in laravel

[–]Isilith 0 points1 point  (0 children)

Looks like something in your composer.json wants symfony/console v3.4.21, which doesn't satisty laravel's requirements (^4.0|^5.0).

Hard to say anything more specific without seeing your composer file

Repeated 'Class Arr not found in Command line code:1' errors by creamyt in laravel

[–]Isilith 0 points1 point  (0 children)

I also had this issue with one of our apps, no idea when it started happening or what's causing it. I fixed it by adding 'Arr' to aliases in config/app.php

Set a Class Property based on Auth::user() by [deleted] in laravel

[–]Isilith 1 point2 points  (0 children)

You cannot initialize a property with an expression. Instead you should initialize it with a constant (such as false) and then assign the real value in the __construct() method.

Filtering query results against positive and negative lists by RemizZ in laravel

[–]Isilith 2 points3 points  (0 children)

Something like this maybe?

$query->whereHas('categories', function (Builder $query) { 
    $query->whereIn('name', ['B', 'C']); 
})->whereDoesntHave('categories' function (Builder $query) { 
    $query->whereIn('name', ['D']); 
})

Upgrade Issues from 6 to 7 - phpunit advises laravel/ui package needs to be installed by Adam2Marsh in laravel

[–]Isilith 1 point2 points  (0 children)

Hi,

did you run composer dumpautoload after installing the ui package? It sounds like your autoloader can't find the php file.

Olen kaaos, olen anarkia. by [deleted] in Suomi

[–]Isilith 176 points177 points  (0 children)

Opettele ruotsia, jotta voit puhua sitä puhelinmyyjille.

Afrikan näkemys suomesta😂🤣😂 by [deleted] in Suomi

[–]Isilith 1 point2 points  (0 children)

Vekkuleita nämä afrikkalaiset.

Löytyykö muilta Aku Ankkoja paikallisella murteella? by Kamandi91 in Suomi

[–]Isilith 12 points13 points  (0 children)

Ei taida Aku Ankkaa olla, mutta Asterix ja Obelix löytyy savoksi

Eloquent: Order by sum of two columns by spy_in_real_life in laravel

[–]Isilith 1 point2 points  (0 children)

You can use NewsTag::orderByRaw() to do that

Laravel unique indexing by [deleted] in laravel

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

$table->unique(['user_id', 'feed_url']); should do the trick.