Parsing SharePoint RSS Feed
In an earlier post I explained how I was fetching an RSS feed from SharePoint behind an https layer using cURL and PHP. In this post I’ll show how I parsed the feed.
In an earlier post I explained how I was fetching an RSS feed from SharePoint behind an https layer using cURL and PHP. In this post I’ll show how I parsed the feed.
I came across a question on Stack Overflow in which an individual asked what using INCLUDE with your INDEX does.
Recently I encountered a table of astronomic size. The table is 27.7 GB with ~32.8 million rows. The table only had a single index and the query (below) fetches 4 columns using 3 aggregates filtering the last 6 months from… Continue Reading
I’ve always been an opponent of Mac. Mostly because of the fanaticism behind the brand. I still cannot get my head around paying an inflated price on identical hardware just because of a brand. Not to mention, the inability or… Continue Reading
Consumer.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 //Consumer.java public class Consumer extends Thread { private Test test; private… Continue Reading
The SharePoint instance that I needed to get an RSS feed out of was behind an https layer. To accomplish this task, I used cURL to fetch the list. In addition, I needed cURL to not verify the security certificate… Continue Reading
I needed a way to do a daily backup of tables individually from a database. I accomplished this with a Windows batch script.
I use PHPExcel to read and write Excel files. It is a very useful class. However, I ran into an issue with cells containing an IF formula. PHP 1 2 3 4 5 6 7 8 9 10 11 12… Continue Reading
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40… Continue Reading