Posts

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?

skaverat,
@skaverat@skaverat.net avatar

@theseer das würde ja das zusammen-concatinierte SQL kaputt machen

maswaba,
@maswaba@mastodontech.de avatar

@skaverat @theseer Ja, und bei Maximallängen unter 1k gehe ich automatisch davon aus, dass das Passwort im Klartext gespeichert wird. Sonst gäbe es keinen Grund, das auf wie hier 20 Zeichen zu begrenzen.

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..

ramsey,
@ramsey@phpc.social avatar

@3f @theseer @michael I’ve noticed a cycle, over the years: the early releases within a year all suck, and then they fix those issues in the later releases, and we love it again. 🤷‍♂️

(I’ve noticed the problems you describe, too.)

michael,
@michael@thms.uk avatar

@zf2timo tried that. Still having the same issues 😩 @theseer

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.

bobmagicii,
@bobmagicii@phpc.social avatar

@theseer yeah. thats my problem too. i can send them, but everyone rejects them now.

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?

heiglandreas,
@heiglandreas@phpc.social avatar

@theseer @phpukconference would alao love to know.... 😁

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 :)

derickr,
@derickr@phpc.social avatar

@theseer @ConFooCa Will be there, but have nothing to trade!

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? ;-)

remi,
@remi@phpc.social avatar

@theseer perhaps an outdated mirror, please check which one is used.

P.S I have just disabled oxilion.nl which seems the only one out of sync

theseer,
@theseer@phpc.social avatar

@remi That seems to have fixed it. I just ran dnf clean all && dnf update and got 8.2.15 and 8.3.2

Thanks 😃

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 💔

shochdoerfer,
@shochdoerfer@phpc.social avatar

@theseer @phpugmrn just let me know when it matches your schedule :)

dseguy,
@dseguy@phpc.social avatar

@dpc_ibuildings @theseer Thanks for the attention to these... I might still show up anyway!

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? ;-)

derickr,
@derickr@phpc.social avatar

@theseer @timwolla There is also "sendmail" ;-)

theseer,
@theseer@phpc.social avatar
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,
@theseer@phpc.social avatar

@isotopp Basically because it's boring technology that exists already, is known conceptually and honestly just works flawlessly for the use cases they have.

I'm just trying to be paranoid and want an append-only backup. The account used to write already has no permissions to update or delete...

I guess, the backup doesn't even have to be stored in mysql...

isotopp,
@isotopp@chaos.social avatar

@theseer yeah, I mean a database is flexible and can store events, but Kafka has been built for that.

In any case, backup the binlogs for as many days as you want to go back and make daily snapshots with known binlog position. Restore the snapshot to an instance, add the binlogs and let the system catch up. When that finishes, you know Snapshot and logs match and how long catchup will take.

This will also give you a metric of how many days of binlog to keep is useful

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

heiglandreas,
@heiglandreas@phpc.social avatar

@theseer Aber wenn du pizza bei mehr als 230 grad bäckst, brauchst du warscheinlich auch keine Dauerbackmatte. Die wandert direkt auf den Stein....

theseer,
@theseer@phpc.social avatar

@heiglandreas okay, auch wieder wahr. Wäre allerdings für den Transport total praktisch gewesen ;-)

theseer, to random
@theseer@phpc.social avatar

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

bcremer,
@bcremer@phpc.social avatar

@theseer you might also have a look at mailpit. The same but with a more modern frontend and comes as go binary.

theseer,
@theseer@phpc.social avatar

@bcremer 🤯

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