Author: jbmurphy
-
jQuery to remove mailto
I wanted to remove a mailto and leave just the email address:
-
Problems with TweetDeck and Enterprise Deployment (SCCM)
Been working with @xrobx99 on this one. We had a request for TweetDeck to be installed on a couple of user’s machines. We feared that word would get out and everyone would have to have it. So we have been looking into deploying TweeDeck silently through SCCM. Using my SCCM PowerShell install script (which is basically just a…
-
How to see delegate calendars with your google apps account & an IOS device setup as “Exchange”
I can never remember this. More of a note to myself. I just got the new iPad (thanks wife!) and when I added my google apps account as an Exchange server, my delegate calendars did not show (for example, the shared family calendar). All I needed to do was to visit m.google.com/sync from the iPad,…
-
My Debian/Raspberry Pi cheat sheet (translations from CentOS)
I have worked on Solaris and RedHat/CentOS (although Solaris was many years ago, so I should just admit that I no longer know where anything is). I find Debian to be a different dialect than RedHat. This post is going to serve as my translation cheat sheet. I use the bash complete string below with…
-
RSS feed for a vBulletin forum
I am constantly having to look this up. What is a vBulletin’s form’s rss feed? http://www.myforum.com/external.php?type=rss&forumids=1 Obviously the admin has to enable it. Have not tested against all versions
-
Server ran out of space and not accepting connections after freeing up space
I was away on vacation, and a dev box ran out of space. Once I got back, I cleaned it up, rebooted and still could not connect to it. @xrobx99 noticed an IPSec message in the event logs: The IPSec driver has entered Block mode. IPSec will discard all inbound and outbound TCP/IP network traffic that is…
-
How to add custom JavaScript code to all SharePoint 2010 pages (DelegateControl)
As I said in this post, there are plenty of articles on how to do this. This is more of a note for myself, as I have to “re-learn” this every time I need to customize SharePoint. There are 2 ways (that I know of) that you can add code to every page in SharePoint…
-
‘b’ is null or not an object
This is a reminder to my self that this blog post has the solutoin to the “b” error when working with the Client Object Model. Basically I need to change this: createDelegate(this, this.onSuccessMethod) to this: createDelegate(this, onSuccessMethod)
-
Move the “Add new item” to the top of a list page in SharePoint 2010
We did not like how SharePoint 2010’s “Add new item” was on the bottom of the page. we wanted to move it to the top. The following jQuery code moves it to the top of the page: $(“#s4-mainarea”).prepend($(“td.ms-addnew”)) hope that helps someone.
-
PowerShell script to set the State of a record in Microsoft CRM 2011 (SOAP)
I wanted to mark a meeting/appointment as completed via code. I came up with the PowerShell script below. Maybe it will be of use to some one?
