@theseer@phpc.social avatar

theseer

@theseer@phpc.social

This profile is from a federated server and may be incomplete. Browse more on the original instance.

theseer, to random
@theseer@phpc.social avatar

Ach Accor, wie schwer kann es sein?

theseer,
@theseer@phpc.social avatar

Scheinbar sind Sonderzeichen nicht gleich Sonderzeichen: Ein Komma oder auch ein backtick sind scheinbar sehr böse..

Schrank, to random German
@Schrank@phpc.social avatar

TIL that https://github.com/phar-io/phive is part of @ddev 😳 How AWESOME is that!? <3

cc @theseer

theseer,
@theseer@phpc.social avatar

@Schrank @ddev I didn't know either.

Very nice 😄

Glad it's still helping a lot of people even though it's suffering under neglect currently 💔

theseer, to random
@theseer@phpc.social avatar

I just got pointed to this awesome blog post: https://blog.glyph.im/2024/05/grand-unified-ai-hype.html

Thanks @sebastian, couldn't agree more... Not sure if the post gives hope or increases the desperation.

theseer, to random
@theseer@phpc.social avatar

Is it just me or is getting worse by the day?

I'm runnig 2024.1 (Build -241.14494.237, built on March 27, 2024) but have to constantly restart the IDE to fix bizarre errors like PHPStorm claiming a property or parameter isn't used while highlighting the very use a line later, inconsistently resolving asserts with instanceof checks - e.g. claiming a method doesn't exist in the class referenced in a different assert and not seeing a parameter that is clearly there...

PHPStorm claiming a parameter is missing that is clearly there..

theseer,
@theseer@phpc.social avatar

@michael Yeah, noticed that just deleting the line and repasting the very same code sometimes fixes it.

It's beyond me, why that even works ;)

theseer, to random
@theseer@phpc.social avatar

Is it just me or is anyone else running their own mailserver experiencing a lot servers being blocked by zen.spamhaus.org currently that one would assume not to be considered offensive?

Like github.com, outlook.com or google/gmail?

theseer,
@theseer@phpc.social avatar

@bobmagicii thanks for the pointers, i didn't have any issues sending mails. My trouble was receiving them.

As it turnwd out and what I already feared, entirely my fault. I tried using spamhaus' RBL via public resolver which is explicitly not supported.

heiglandreas, to random
@heiglandreas@phpc.social avatar

I hate VPN!

It never worked out of the box for me. There are soooooo many moving parts.

Debugging is difficult.

And it's always the clients fault...

theseer,
@theseer@phpc.social avatar

@heiglandreas Interestingly, the VPN in question works on mac, windows and linux all over the world ;)

theseer, to random
@theseer@phpc.social avatar

So, @phpukconference, is it long enough after the 2024's edition to start begging for an Eddie? ;-)

What does one have to do?

theseer, to random
@theseer@phpc.social avatar

Sooo, anyone already around for Confoo? 🙂

theseer, to random
@theseer@phpc.social avatar

So who's going to be at @ConFooCa next week and wants to trade ?

https://elephpant.me/herd/arneblankerts

Check my herd and what i'm missing ;) I can bring my duplicates along! 🙂 (But only those to trade :-p )

I might also be willing to buy :)

theseer, to random
@theseer@phpc.social avatar

Following the steps documented using https://rpms.remirepo.net/wizard/ for getting PHP 8.3 as default on Fedora 39 (after removing the default 8.2) I only get PHP 8.3.0-RC.1...?

@remi What do I do wrong? ;-)

theseer, to random
@theseer@phpc.social avatar

It's 2024 and the year starts with rejections. I wonder why it's so hard to deal with those ,)

This time, @dpc_ibuildings rejected my proposals. Wonder what I might have done to them, because @dpc_ibuildings and @phptek are the only ones that almost constantly reject me 💔

theseer, to random
@theseer@phpc.social avatar

Slowly getting there: Just released the 2nd RC for the next major version of my templating engine Templado.

https://github.com/templado/engine

Docs, of course, are work in progress - but quite some stuff is already documented:

https://docs.templado.io

theseer, to random
@theseer@phpc.social avatar

Is it just me doing something wrong or is @plausible (self hosted) having issues all of a sudden with the google search console integration? I cannot re-link anymore - it used to work before like charm, but now always fails: "Your Search Console account hasn't been connected successfully. Please unlink your Google account and try linking it again."

Anyone following me having any idea? ;)

theseer, to random
@theseer@phpc.social avatar

So apparently there is a RCE bug in exim - details yet to be disclosed (https://www.zerodayinitiative.com/advisories/ZDI-23-1469/). No updated version available yet.

Suggested Mitigation: Do not expose Exim to the internet.

How not helpful. It's an MTA!

But not doing anything feels wrong. So I put exim behind NGINX using its mail proxy. Took about 20 minutes of RTFM and ~10 lines of nginx / exim config changes.

Does it help? No idea, we don't have details of the exploit. But it feels better. Does that count? ;-)

theseer, to random
@theseer@phpc.social avatar

Is there a way to replicate changes in an append-only fashion to a secondary/backup mysql/mariadb server? So pretty much, only INSERT statements.

This is an event store, so once written, events will never change.

For added security and data protection, I want to ensure that the backup can not ever loose anything by accident or due to an attack.

I know about "replication-with-restricted-privileges", but that will break when checks fail. I'm not sure I want this, or do I?

/cc @isotopp

theseer, to pizza
@theseer@phpc.social avatar

Hey , coole Idee diese Matten, aber +230° max? Echt jetzt? Wozu soll das denn gut sein? Zum aufwärmen von ner Tiefkühlpizza? Denn für ne sinnvolle, selbstgemachte wie abgebildet reicht das jedenfalls mal kein Stück... Schade.

image/jpeg

theseer, to random
@theseer@phpc.social avatar

Why did I only today learn about the awesome https://mailcatcher.me/ project?

theseer, to random
@theseer@phpc.social avatar

Sometimes, summer vacation has benefits: Given many of our clients are on vacation, I finally have time to work on my open source projects 🙂

This week's output:I believe to have finished implementing Templado 5 (https://github.com/templado/engine).

100% Line Coverage
100% Branch Coverage
Almost 100% Mutation Score (the last ones will be killed later today)

Next Up: Write Documentation and Migration guide ;--)

Oh, and update the project website https://templado.io - anyone interested in helping?

theseer, to random
@theseer@phpc.social avatar

I have an question: The _Throws-Mutation effectively removes my exit condition to avoid an endless recursion loop and thus runs into a Timeout.

The Timeout though apparently is considered bad, given it's not considered a "killed" mutation.

So, how do I make infection happy? I don't know how to avoid an endless recursion when infection would mutate my exit condition away ;)

theseer, to random
@theseer@phpc.social avatar

Google completely lost it: https://github.com/RupertBenWiser/Web-Environment-Integrity/blob/main/explainer.md

What a complete and utter bllshit.

For the sake of the open web, you might have a look at the "DON`T"-Issue : https://github.com/RupertBenWiser/Web-Environment-Integrity/issues/28 and react appropriately.

theseer, to Dom
@theseer@phpc.social avatar

Working on my templating engine Templado this afternoon - but getting frustrated.

How did PHP - the language of the web - manage to lack behind DOM Standards so badly? Apart from bizarre bugs, basic things are just missing: DOMNode::isConnected or at least DOMNode::compareDocumentPosition are just missing. PHPStorm claims the latter exists, but that's just a lie... sigh

Can't we just throw away libxml2 and use a modern standard supporting implementation from someone else?

theseer, to random
@theseer@phpc.social avatar

Liebe OLB Bank, Euer Online-Banking ist kaputt.

  • Was genau soll ich denn bitte anders machen?

  • Warum ein MAX Limit?

  • Warum nur bestimmte Sonderzeichen?

  • Wie können alle Checks grün sein, aber das Passwort wird dennoch als unsicher markiert?

  • Und wieso darf ich das Passwort nicht pasten?

Wer schreibt so was? Und, wie sah dazu bitte die Userstory aus?

  • All
  • Subscribed
  • Moderated
  • Favorites
  • normalnudes
  • Durango
  • kavyap
  • thenastyranch
  • everett
  • osvaldo12
  • rosin
  • mdbf
  • DreamBathrooms
  • khanakhh
  • magazineikmin
  • InstantRegret
  • Youngstown
  • slotface
  • JUstTest
  • Leos
  • ngwrru68w68
  • modclub
  • anitta
  • tacticalgear
  • ethstaker
  • GTA5RPClips
  • cubers
  • megavids
  • provamag3
  • cisconetworking
  • tester
  • lostlight
  • All magazines