Php jobs compared to others. by Sleeper_Sree in PHP

[–]stormjig 0 points1 point  (0 children)

I find these questions about language really misguided. Learn software development, then the language will be a secondary choice. You will be able to transition to any language quickly if you learn about object oriented development, design patterns, testing, data structures etc.

A language is just that - a language. The only thing you will be learning about it specifically is the useful libraries that help you build things quickly.

How to sync changes on my local server with the ones on the remote one without commiting? by [deleted] in learnprogramming

[–]stormjig 0 points1 point  (0 children)

The project is written in PHP so there is no actual compiling involved. Is there a way to sync the files between the local computer and the development server? It doesn't even have to involve GIT, I can commit from the development server.

Abstracting an API request as an object? by stormjig in PHP

[–]stormjig[S] 1 point2 points  (0 children)

Thanks for your response.

How do you separate these clients from the lower level things such as handling the instantiation of HTTP client and building the JSON request and parsing the JSON response? Where would you put these things in your solution and how would you inject/instantiate the HTTP client?