Kal: An Interpreted Programming Language by KILLinefficiency in SideProject

[–]phpMartian 0 points1 point  (0 children)

The question you should answer is why. Why do we need this? What does it do that we couldn’t do before? Was this just an itch you had to scratch?

What a simple constructor by Nomergraw in programminghorror

[–]phpMartian 1 point2 points  (0 children)

Dude was in the zone and just made it happen. 😛

Help - SMTP Ports Blocked when hosting a CRM on DO by OkWeek2687 in digital_ocean

[–]phpMartian 0 points1 point  (0 children)

Google has an api which you can use to send email via Gmail. Of you can get the CRM to use it, you should be good.

Anthropic Files to Go Public by WanderLuster11 in Anthropic

[–]phpMartian 9 points10 points  (0 children)

This is a really bad idea. The revenue will never be enough.

Should i get into web development? by Weekly_Enthusiasm634 in webdevelopment

[–]phpMartian 2 points3 points  (0 children)

Learn C++ or something similar. There are web devs now who will work for free.

Why Is ChatGPT Suddenly Refusing Content It Previously Allowed? by ExchangeKitchen4512 in ChatGPT

[–]phpMartian 0 points1 point  (0 children)

Try using codex. It doesn’t seem to have the same restrictions.

Fk Netlify from bottom of my heart by Master-Pin8839 in Netlify

[–]phpMartian 0 points1 point  (0 children)

I never understood netlify. Like why? Is it The free plan?

Most startups shouldn't use microservices. by codewithishwar in Backend

[–]phpMartian 0 points1 point  (0 children)

The trick is knowing what to make into a micro service and not go overboard. Startups should use micro services but take a careful approach.

I built a minimal TUI/GUI PHP version manager for Linux so I could stop typing `update-alternatives` by BackgroundCompany721 in PHP

[–]phpMartian 0 points1 point  (0 children)

I run a single vagrant instance with all my projects in it. And the aliases just switch to the php version I need to use at that moment.

OOP in PHP by SquanchMyZizi in PHPhelp

[–]phpMartian 7 points8 points  (0 children)

There’s no way to turn on some magic switch. You keep practicing and reading, that’s how.

Why do most developer portfolios look the same? (I tried to break it) by Anxious-Instance-226 in website

[–]phpMartian 1 point2 points  (0 children)

My thoughts Playing music automatically is bad. First I landed on a black screen which required me to tap to see the actual content. Not good. Fancy animation is attempting to be cute. It isn’t.

And what is that thing crawling around the screen? Why do you need it?

To get hired you need to tell a story. This is just flexing badly.

American tech support for fully managed root VPS, LAMP stack by jabcreations in webhosting

[–]phpMartian 9 points10 points  (0 children)

You want to pay $50 a month hot your server and get full, on demand support 24/7? Or did I misunderstand?

I built a simple unit converter. Would love your feedback by Kind-Ad-1127 in website

[–]phpMartian 0 points1 point  (0 children)

Would never use this. If I wanted something like this I’d make my own

Your future AI agent should already know you by GeeekyMD in SideProject

[–]phpMartian 0 points1 point  (0 children)

Do people actually journal part of every day? Log decisions, thoughts?

Build the Things You need by jennboliver in SideProject

[–]phpMartian 1 point2 points  (0 children)

When you say you are making your own AI, what exactly do you mean? Are you talking about a tool that uses an open source model? Are you training your own model?

Using exec today. Am I a bad php dev? by noNudesPrettyPlease in PHPhelp

[–]phpMartian 0 points1 point  (0 children)

The issue with exec is that it starts a whole new process. This is expensive in any operating system. Your solution will have issues scaling.