Notices by hypolite (hypolite@friendica.mrpetovan.com), page 6
-
hypolite (hypolite@friendica.mrpetovan.com)'s status on Saturday, 11-Feb-2023 19:43:25 CET hypolite
@utzer @heluecht The addon currently supports only one API key, so individual users applying for their own won’t do any good. -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Thursday, 02-Feb-2023 13:59:14 CET hypolite
@heluecht Did you bring your own chocolate? In Belgium? Rude! -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Wednesday, 18-Jan-2023 07:00:50 CET hypolite
So you have a hole in your body, right? It's used to breathe in and out. But wait, it's also used to eat and drink, but you should never do both at the same time! Fortunately, there's a nifty switcher between the esophagus and the trachea. Of course sometimes it fails, leading to extremely uncomfortable fits of cough and possibly death.
But wait, you have another couple of holes! These are made for breathing too, but you should never ever attempt to eat or drink from them. Oh and they merge with the main hole before the switch as well.
Whoever coined the term "intelligent" design should be slapped across the face. -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Tuesday, 10-Jan-2023 00:25:24 CET hypolite
Me: I may be a little bit on the autistic spectrum, haha.
Also me: *listens to the same song on repeat for two weeks and counting*
#Music #NowPlaying #NP
Helpless [Mix Cut] - Monster Mix -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Wednesday, 04-Jan-2023 22:43:23 CET hypolite
@kingu_platypus_gidora I’m looking at this image on a device in the palm of my hand while I [REDACTED]! -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Wednesday, 04-Jan-2023 15:02:46 CET hypolite
@heluecht Are these links intended? -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Wednesday, 04-Jan-2023 14:50:21 CET hypolite
@heluecht Huh? -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Tuesday, 27-Dec-2022 05:30:40 CET hypolite
@heluecht Some ORM systems have resolved this particular issue by saving the values as they were when the Entity was instantiated from the database as “clean”, and setting the fields that have been updated as “dirty”. Then when persisted, they only use the “dirty” fields. I do think we’d easily be able to implement a version of this clean (coming straight from the DB)/dirty (needs to be persisted) concept. -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Monday, 26-Dec-2022 23:20:52 CET hypolite
@heluecht The status values are Entity constants, the dismiss() is an Entity method (don't forget to call Repository->save() after!). I want to avoid get* and set* methods in the Entity classes. Just create methods for the use-cases we have. Do we dismiss reports? dismiss(). Do we reopen them if they were dismissed? reopen().
Querying a list of reports based on conditions is in the Repository since it's interacting with the database. You can create a joined query, then use Factory->createFromTableRow to obtain Report entities, and you can use the rest of the row fields for what you want. -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Monday, 26-Dec-2022 23:06:54 CET hypolite
@heluecht @jakob @pvagner @hamiller_friendica In what circumstances? I know about fetching the parent when we receive a comment on a conversation we don't have the ascendants, and the direct search on a post URL. Anything else? -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Monday, 26-Dec-2022 22:59:48 CET hypolite
@heluecht Entity-related constants are placed in the Entity. What kind of return data are we talking about? To update the status of a report, it would be in the Entity. -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Tuesday, 20-Dec-2022 21:53:19 CET hypolite
@finickydesert I like to think we would try, but it's mostly a @heluecht question, he's been taking point on protocol support. -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Monday, 19-Dec-2022 19:14:35 CET hypolite
@tux @heluecht I love receiving thanks for fixing something I broke myself. 🥰 -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Monday, 19-Dec-2022 17:24:37 CET hypolite
@heluecht @tux Interestingly, static analysis in your IDE will tell you everything is OK with it. It was my mistake not to check earlier but it was straightforward to fix thanks to all the explicit types used. -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Monday, 19-Dec-2022 17:02:27 CET hypolite
@tux @heluecht Waiting for merge: github.com/friendica/friendica… -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Friday, 16-Dec-2022 07:51:06 CET hypolite
@xy This might be the cause: stackoverflow.com/questions/69…
WebP image support is spotty in GD, with newer version (WEBPV8X) not currently supported. -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Thursday, 15-Dec-2022 14:26:15 CET hypolite
Patiently waiting for the German side of the #Friendica #Development team to wake up to this #Git nonsense. -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Thursday, 15-Dec-2022 14:26:07 CET hypolite
@fabrixxm Now it does look like one. -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Saturday, 10-Dec-2022 20:41:35 CET hypolite
@heluecht @tobias @nupplaphil It looks fine to me, don’t bother trying to take this merge back. -
hypolite (hypolite@friendica.mrpetovan.com)'s status on Saturday, 10-Dec-2022 20:41:35 CET hypolite
@heluecht @tobias @nupplaphil You can reset to the previous commit before the merge and force-push but it will break installs who do automatic develop pulls, or revert the merge commit and push it. You’ll have to create a new branch where you’ll have to revert the revert to be able to submit the same changes again.
Before you do any of these, let me review the change.