Which Way Do Your Slashes Face in PHP?

4 minute readWhen writing out filepaths and URLs, should you use forward slashes / or backslashes \? Windows expects one, whereas Unix-style operating systems (Linux and Mac OSs, primarily) expect another. PHP has two built-in solutions, but both have problems, especially if you’re working with WordPress. Backstory At work, I’ve recently had some trouble getting my linux […]

Read More Which Way Do Your Slashes Face in PHP?

My Takeaways from "Gutenberg for Plugin Owners" Crowdcast

2 minute readToday I watched “Gutenberg for Plugin Owners“, an online discussion between Brian Hogg, Kyle Maurer, and Daniel Bachhuber, where they discussed and answered questions about how WordPress plugin owners can better prepare for the new editor, Gutenberg. You can watch the replay, but here’s my notes. I was admittedly doing some somewhat noisy house-chores while […]

Read More My Takeaways from "Gutenberg for Plugin Owners" Crowdcast

Penpals Explanation of PHP/cURL/openSSL/TLS/SSL/PayPal Handshake Issues

5 minute readToday I spent a few hours wrapping my head around an issue where some websites weren’t able to connect properly to PayPal.com. I found it pretty tricky to understand because it involved quite a few technologies and programs: PHP: a programming language, and a program to interpret lines of code written in that programming language […]

Read More Penpals Explanation of PHP/cURL/openSSL/TLS/SSL/PayPal Handshake Issues

Troubleshooting iPhone App Communication with Fiddler

2 minute readWhile troubleshooting an iPhone app, it’s sometimes helpful to see exactly what HTTP requests its sending. Enabling Fiddler to View iPhone HTTP Traffic I managed to do that with Fiddler by following these steps: https://www.pluralsight.com/blog/tutorials/using-fiddler-with-an-iphone-ipad I found my laptop’s IP by doing this: Click on the Start menu and type cmd. When you see the […]

Read More Troubleshooting iPhone App Communication with Fiddler

Line Ending Troubles with Git, a Virtual Machine, and Windows

4 minute readThis is some technical stuff I learned today using Git, VVV with a Linux virtual machine, and Windows. I recently started getting these annoying messages again whenever I’d commit anything using Git: warning: LF will be replaced by CRLF in payment_methods/Paypal_Standard/help_tabs/payment_methods_overview_paypalstandard.help_tab.php. The file will have its original line endings in your working directory. I had […]

Read More Line Ending Troubles with Git, a Virtual Machine, and Windows

SQS Queues and more Simple DB

2 minute readApparently I need to send json to an SQS queue. It’s described at http://globalconstant.scnay.com/2011/03/02/programming-sqs-with-python-and-boto/, and http://classes.windley.com/462/wiki/index.php/SQS_Queues.So I replaced the necessary fields with content specific to the ‘commentprocess’ in sqs. Still, while it doesn’t throw any errors, I’m not seeing my messages being posted into the queue, so I’m not sure if it’s working. Yuck—————————————————-SO I […]

Read More SQS Queues and more Simple DB