User jasonrm - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T14:32:59Z http://stackoverflow.com/feeds/user/31341 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/383777/php-function-to-get-facebook-status/383805#383805 1 Answer by jasonrm for PHP function to get Facebook status? jasonrm 2008-12-20T22:09:07Z 2008-12-20T22:09:07Z <p>I never seem to get along with PEAR, but if you have better luck than I, then the PEAR solution seems the best route long term.</p> <p>Another idea is to explore the <a href="http://developers.facebook.com/get_started.php" rel="nofollow">Facebook Developer API</a> library and see if that might give you anything you are looking for.</p> <p>Lastly, there used to be a way to get an RSS feed... but I can't seem to find any instructions that work anymore, but you might poke around Facebook help if that interests you. Mine ends up looking something like this:</p> <p><code>http://www.new.facebook.com/feeds/status.php?id=[idnumber]&amp;viewer=[viewer]&amp;key=[key]&amp;format=rss20</code></p> http://stackoverflow.com/questions/307448/how-can-i-encrypt-my-website-traffic/383774#383774 0 Answer by jasonrm for How can I encrypt my website traffic? jasonrm 2008-12-20T21:42:25Z 2008-12-20T21:42:25Z <p>You don't always require root access to setup Apache to use SSL, but you will likely need to modify config files, which is either done thru your providers interface, or via files via a shell account. Either way you will need a server certificate; either self-signed, from a major company like Verisign, or one of the smaller free places like <a href="http://www.cacert.org/" rel="nofollow" title="cacert.org">cacert.org</a>. As noted by others, this does require a dedicated IP to your server or instance on the server.</p> <p>I would recommend SSL first, but mod_auth_digest isn't a bad backup idea.</p> http://stackoverflow.com/questions/129601/am-i-a-bad-developer-because-i-cant-answer-99-of-the-questions-here/367301#367301 3 Answer by jasonrm for Am I a bad developer because I can't answer 99% of the questions here? jasonrm 2008-12-15T01:57:38Z 2008-12-15T01:57:38Z <p>Despite the awe that we have for most of the high rep folks, I imagine that a lot of us "normal" folks are here because we are desperate to learn more than is required of us. We all know those people that don't have to be better at what they are required to do. However, based on what I've seen here, we are the ones that want to be better. So much so, we risk coming here and looking like a complete fool because we don't know 5 languages inside and out.</p> <p>As for myself, I am not challenged at my current job, and I won't be for some time, so I have needed something like SO and Project Euler to be encouraged to learn new material and concepts that are most times way over my current skill level. Being told just how clueless I am is great encouragement to learn more.</p> <p>I think the best thing about feeling like you know nothing, is that you're not to proud to admit that you have more to learn, that you can be taught.</p> <p>Only once you know it all is when you become a truly bad developer.</p> http://stackoverflow.com/questions/351297/can-i-use-google-apps-for-domain-email-and-still-use-a-sendmail-server-to-send/351333#351333 1 Answer by jasonrm for Can I use Google Apps for domain Email and still use a "sendmail" server to send emails? jasonrm 2008-12-08T23:33:16Z 2008-12-08T23:33:16Z <p>Haven't done exactly what you're asking, but since when does that stop folks from giving advice? ;)</p> <p>1) So long as you add the MX records for your "send only" servers with really low priority (50 for example, where all the gmail servers are less than 20), unless there is a badly implemented mailer or gmail is down, no mailer should ever try and talk to your low priority servers. If all you care about is MX records, port block inbound SMTP to those servers as well to further ensure the mail never goes to the wrong spot. That might throw off some spam detection schemes if they actively try and connect back to the source sendmail, but I don't think that is common. You always could run a local redirect also, so if mail does come in for some reason, you can then push it right back out to gmail as soon as possible.</p> <p>2) Can't see any reason why not. If you never allow email to be delivered to your outgoing servers and do the low priority, should work just fine.</p> <p>Also, make sure to include all the servers that might send mail in your SPF text record. A spam filter should be checking and trusting that at least as much as MX records, as not all companies use the same inbound server for outbound.</p>