[heydon]Don’t know if anyone would be interested in this, but I’ve created an experimental router system. It lets you create single-page applications without depending on monolithic and opinionated frameworks like Angular, so independent++ ? It just enhances standard browser behavior RE hash fragments and provides hooks via the `hashchange` event. It’s called Xiao (because it’s just 1.4KB minified). Here’s a demo: https://heydon.github.io/
ZegnatYeah, I understand that. Just wondering why. It seems to me like the same thing should have been possible without the #. But I guess that would have broken the URLs for non-JS UAs.
Zegnat!tell jeremycherfas if you have ssh tools accessible on the commandline, can’t you use exec() and related functions within PHP to call it that way?
Loqi[jeremycherfas]: Zegnat left you a message 59 minutes ago: if you have ssh tools accessible on the commandline, can’t you use exec() and related functions within PHP to call it that way?
[jeremycherfas]I get confused about where I need to be to use which version of php. MAMP has them all but I don’t really understand how to force the use of one of them. Even with MAMP running, php -v shows the default one almost always.
petermolnarthe webserver either integrates an interpreter (apache with mod_php) or connects to a php-as-a-service over fastcgi protocol, running daemon
aaronpkif you want to run a specific version of php from the command line you have to find where it's installed. just typing "php" will use whichever one is in your default path, but if you have more than one installed you'd have to type the full path to it, like /usr/local/php-5.6/bin/php or whatever
aaronpkdreamhost does something clever and names all the different versions things like "php-5.6" so you can just type that on the command line to run that version
[jeremycherfas]It’s that difference between running it on the command line and running it in a browser that gets me confused. My mindset is that if I don’t need to display the results, I don’t need a browser.
petermolnarimage it as: the webserver, when the webserver starts, grabs a version of php, the one you told it to use. when the webserver gets a request, it takes this php out of it's pocket, pushed the request through it and gives you the results; but that php doesn't change unless the webserver is restarted
[jeremycherfas]The other thing is that even the most basic beginner tutorials don’t tell you much about this sort of thing. They tell you how to do things, but not how to set things up to make doing them easier.
[jeremycherfas]That’s exactly my point. Where do I go to learn about a good setup? Seems to me that’s not easy to find. I know people have individual preferences but it would be good to see what those are and adapt.
aaronpkbut then they mostly work for 90% of the use cases and when you want to do something they didn't plan for, like run a different PHP version, it's often more difficult than if you had not used it in the first place
aaronpkthat'll mostly include stuff about deploying to production servers but the knowledge gained from that can apply to dev environments and even mac dev setups as well
[jeremycherfas]Thanks aaronpk. I really like MAMP for the other things that I do and now that I’ve got a bit of a better understanding of browser vs command line I will probably be able to make better progress. Will search for deploy too. Tomorrow.
aaronpkit's taken a while but i finally have a good setup on my mac for development, including SSL certificates, the ability to run php and ruby apps, and an environment nearly identical to the production servers i run things on
snarfedaaronpk++ for good local dev setup. important investment, takes work but pays off. not breaking prod, being able to work with flaky or no network, etc
aaronpkyeah! it's kind of magical being able to do a full test of logging in to stuff via my local indieauth.com, posting from micropub clients to my local website, all on a plane with no wifi.
blueyedRegarding the "The authentication provider replied with an error: csrf_detected" error I still have with using GitHub as OpenID provider might be related to having a yubico u2f key registered with them.
snarfed[miklb]: if you're on wordpress, micropub.php has some example curl lines near the top for testing locally. (also it skips checking tokens if it's serving on localhost.)