whatco.me

askryan, to quarks in Episode Discussion | Doctor Who | 1x01 "Space Babies" and 1x02 "The Devil's Chord"

I just finished watching Space Babies - I have to say, I missed this. It’s been a long time since Doctor Who was fun - I love all Doctor Who, even the bad ones (especially the bad ones) but my heart is really with the bizarre, campy, man-in-a-rubber-suit style episodes like this one. If anyone was worried this was going to get Disney-fied, this is RTD at the most RTD. I might as well have been watching the Ninth Doctor take Rose to the End of the World. Ncuti is the Doctor the very instant he steps on screen, and the Doctor/Ruby chemistry is absolutely perfect. I don’t love her being a mystery box but as long as the explanation is suitably weird I’ll go with it.

A bit of a new experience for me in that this time I got to watch it with my daughter — she’s nine and a huge Trek fan. She liked Church on Ruby Road and we watched a bit of other doctors, but I wasn’t sure she’d take to this, but she was just beaming the whole time. Bit of a new experience for me because other than some Tom Baker episodes on old VHS tapes, I was an adult by the time I came to DW. It’s fun to see it through the eyes of a child.

Also, uh, did the Doctor just suggest that the world of Star Trek is real in his universe?

ValueSubtracted,
@ValueSubtracted@startrek.website avatar

My least favourite type of RTD episode is the Goofy RTD Episode, and this was definitely that. I doubt it will end up ranking too highly on my list by the end of the season.

That said, I always appreciate social commentary that’s about as subtle as a sledgehammer, and the episode delivered on that. And Ncuti Gatwa’s physical presence is something special - I don’t think we’ve seen that kind of physicality since Matt Smith.

Also, uh, did the Doctor just suggest that the world of Star Trek is real in his universe?

This is obviously a sign that setting up this discussion thread was the right decision.

ValueSubtracted, to quarks in Episode Discussion | Doctor Who | 1x01 "Space Babies" and 1x02 "The Devil's Chord"
@ValueSubtracted@startrek.website avatar

I’m not sure when I’m actually going to be able to watch them, but I’m looking forward to the full Ncuti Gatwa experience!

monomon, to php in I have suddenly inherited a PHP project. What VSCode extension or server is best for developing it locally? I’m down with any other suggestions too!
@monomon@programming.dev avatar

ddev saved my life when I inherited a drupal project.

dbx12, (edited ) to php in Help installing PHP on Ubuntu (Solved. Thank you!)

Looks like your php code is wrong, try this (and just this) for index.php


<span style="color:#323232;"><?php
</span><span style="color:#323232;">phpinfo();
</span>

You also had Test Text1 inside the php block which is a syntax error. Maybe that’s the cause why you don’t get anything.

Edit corrected the filename to lowercase extension.

GardenVarietyAnxiety,

I wiped and reinstalled everything php and apache… It still didn’t work, so I tried your suggestion and simply put

<?php phpinfo();

It works now? And reverting to my original file works too…

I don’t know how, but your idea worked. Thanks~

dbx12,

Great that it worked out, did you use apt remove or apt purge?

You might want to put your code in triple back ticks so it renders as code block :) Currently isn’t visible on some clients (boost for Lemmy in my case)

sloppy_diffuser, to php in Help installing PHP on Ubuntu (Solved. Thank you!)

I don’t have a solution, but wanted to comment this is a reason to use docker. Instead of tinkering with your host system in ways you’ll probably forget, declare all the steps in a nice containerized system that does one thing: hosts a php website as you develop.

Expose your project through a volume for a mostly seamless file sharing experience between the host and container.

GardenVarietyAnxiety,

I’ve seen a lot about docker, and it looks pretty awesome.

I’ll definitely get to it eventually, I’m just trying to learn the basics for now.

hitmyspot, to php in Help installing PHP on Ubuntu (Solved. Thank you!)

Have you tried a html file to ensure Apache is ok? Or no files and Apache should show a server page.

Also, the test file can just be

<?php phpinfo(); ?>

GardenVarietyAnxiety,

I wiped and reinstalled everything php and apache… It still didn’t work, so I tried to simply put

<?php phpinfo();

as suggested by someone else …and it works now? I reverted my .php file to what I listed in my op and that works now, too.

Oi.

hitmyspot,

Lol, turn it off and back on!

GardenVarietyAnxiety,

Basically, lol

raoul, to php in Help installing PHP on Ubuntu (Solved. Thank you!)
@raoul@lemmy.sdf.org avatar

Maybe there is a conflict between libapache2-mod-php and php-cgi?

According to your doc, it seems to be one or the other.

GardenVarietyAnxiety,

I wiped and reinstalled everything php and apache… It still didn’t work, so I tried to simply put

<?php phpinfo();

as suggested by someone else …and it works now? I reverted my .php file to what I listed in my op and that works now, too.

Oi.

littleme, to php in Help installing PHP on Ubuntu (Solved. Thank you!)

Have you tried enabling php with the a2enmod command ? serverlab.ca/…/installing-php-for-apache-on-ubunt…

GardenVarietyAnxiety,

It returned: Module php8.1 already enabled

onlinepersona,

Was that the output of sudo a2enmod php ?

GardenVarietyAnxiety,

I wiped and reinstalled everything php and apache… It still didn’t work, so I tried to simply put

<?php phpinfo();

as suggested by someone else …and it works now? I reverted my .php file to what I listed in my op and that works now, too.

Oi.

onlinepersona,

😂 welcome to the wonderful world of computing.

If it shan’t dance to your flute, reboot

Anti Commercial AI thingyCC BY-NC-SA 4.0

lemmy_in, to php in I have suddenly inherited a PHP project. What VSCode extension or server is best for developing it locally? I’m down with any other suggestions too!

Jetbrains Phpstorm is probably best in class, but you’ll have to pay for it.

sjpwarren,

I don’t do PHP. But I used other JetBrains tools for Go, Python and Java and they are very helpful. The AI Assistant is pretty good for explaining code. I am not in anyway paid by them. Good Luck

rikudou, to php in I have suddenly inherited a PHP project. What VSCode extension or server is best for developing it locally? I’m down with any other suggestions too!
@rikudou@lemmings.world avatar

I recommend using PhpStorm - nothing else even approaches it in terms of features and code analysis.

JDubbleu,

I’ve become the primary maintainer of a jumbled mess of a PHP/Laravel project we use as our"mission control" at work and I’ve been dying due to lack of dev tools. Might have to take a look at this (pester my manager for a license) assuming it has Laravel support.

rikudou,
@rikudou@lemmings.world avatar

Not sure if natively, but there will definitely be a plugin for Laravel if not.

You can try it for 30 days for free and see for yourself. Or you can always use the early access builds for free.

tsonfeir, to php in I have suddenly inherited a PHP project. What VSCode extension or server is best for developing it locally? I’m down with any other suggestions too!
@tsonfeir@lemm.ee avatar

A lot depends on how the PHP site was set up. Does it have requirements? Apache? What version? MySQL? Is it using a framework? Composer, hopefully?

Theoretically all you need is PHP installed. You can run it from the command line with -S… maybe.

More information would be helpful.

gofsckyourself,

Seconded.

Also, what OS are you on?

For Windows, Laragon is super easy and convenient.

Or Devpod might be a good choice, too.

shnizmuffin, to php in I have suddenly inherited a PHP project. What VSCode extension or server is best for developing it locally? I’m down with any other suggestions too!
@shnizmuffin@lemmy.inbutts.lol avatar

Here’s hoping you have Docker installed, because Laradock rules. (It’s not just for Laravel.)

If the project is a Laravel project, Laravel Herd just came out. If you’re on a Mac, there’s also Valet. If you prefer a VM, there’s Homestead - a PHP Vagrant config.

ThuleanSneed, to quarks in StarTrek.website has updated to Lemmy version 0.19.3 (Clear cache/cookies in browser or remove+re-add account in app if experiencing login issues)

I CAN’T PARK AVENUE MANICURE CHUCK’S CLEAN IT UP SNEED’S ON LEMMY FLOYD SUCK SUCK SNEED CLEAN IT UP SEETHE PARK AVENUE MANICURE HOT POCKETS FLOYD FOR FREE JANNIES FEED ON LEMMY FOR FREE DILATE PARK AVENUE MANICURE SUCK PARK AVENUE MANICURE I CAN’T COPE PARK AVENUE MANICURE CHUCK AND CHUCK SUCK HOT POCKETS JANNY GUCCI LOAFERS SEED SNEED’S FUCK SEETHE GUCCI LOAFERS CHUCK SEETHE FANCY GERMAN CAR FANCY GERMAN CAR FOR FREE JANNY FOR FREE FLOYD FANCY GERMAN CAR FLOYD FEED

https://lemmygrad.ml/pictrs/image/d0f23042-9f46-42fb-86bd-2a08538c6bc1.pnghttps://lemmygrad.ml/pictrs/image/d89a4c13-1e16-4021-a5af-08927279297b.pnghttps://czchan.org/uploads/1710961305917656.pnghttps://czchan.org/uploads/1710961306111010.gifhttps://czchan.org/uploads/1710961307845375.png

ThuleanSneed, to quarks in StarTrek.website has updated to Lemmy version 0.19.3 (Clear cache/cookies in browser or remove+re-add account in app if experiencing login issues)

HOT POCKETS FUCK GUCCI LOAFERS AND SNEED JANNY JANNY I CAN’T COPE AND JANNIES ON LEMMY SNEED FUCK SEED AND FANCY GERMAN CAR FLOYD I CAN’T CLEAN IT UP COPE SNEED’S JANNIES AND CITY SLICKER PARK AVENUE MANICURE FUCK FUCK FUCK SNEED SEED I CAN’T SEETHE FUCK GUCCI LOAFERS COPE SEETHE SNEED HOT POCKETS AND SNEED’S AND COPE AND PARK AVENUE MANICURE FEED AND AND JANNIES FOR FREE

https://lemmygrad.ml/pictrs/image/d0f23042-9f46-42fb-86bd-2a08538c6bc1.pnghttps://lemmygrad.ml/pictrs/image/d89a4c13-1e16-4021-a5af-08927279297b.pnghttps://czchan.org/uploads/1710961305917656.pnghttps://czchan.org/uploads/1710961306111010.gifhttps://czchan.org/uploads/1710961307845375.png

ThuleanSneed, to quarks in StarTrek.website has updated to Lemmy version 0.19.3 (Clear cache/cookies in browser or remove+re-add account in app if experiencing login issues)

CHUCK’S AND FEED FANCY GERMAN CAR FLOYD CLEAN IT UP CITY SLICKER FEED JANNY HOT POCKETS DILATE CHUCK’S ON LEMMY FOR FREE FEED JANNY FANCY GERMAN CAR CHUCK’S HOT POCKETS FEED PARK AVENUE MANICURE SEETHE SNEED’S CLEAN IT UP SUCK GUCCI LOAFERS ON LEMMY I CAN’T FLOYD I CAN’T ON LEMMY JANNY ON LEMMY FANCY GERMAN CAR JANNY CLEAN IT UP FOR FREE FANCY GERMAN CAR GUCCI LOAFERS FANCY GERMAN CAR FLOYD GUCCI LOAFERS I CAN’T COPE COPE SEED CHUCK PARK AVENUE MANICURE ON LEMMY FLOYD

https://lemmygrad.ml/pictrs/image/d0f23042-9f46-42fb-86bd-2a08538c6bc1.pnghttps://lemmygrad.ml/pictrs/image/d89a4c13-1e16-4021-a5af-08927279297b.pnghttps://czchan.org/uploads/1710961305917656.pnghttps://czchan.org/uploads/1710961306111010.gifhttps://czchan.org/uploads/1710961307845375.png

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • meta
  • Macbeth
  • All magazines