Tag: GitHub

Syncing a GitHub Fork with the Upstream Repo

GitHub provides some documentation on how to keep your fork in sync with the original (i.e. “upstream”) repo that you forked from. This is essential if you are working on some changes for a long time and the original repo is getting updated with other pull requests in the meantime. There are a couple rules…

Read more

Setting Up Git and Working with GitHub in Windows

Like most of the web industry, I use Git for version control, and so far I’ve mainly worked with GitHub remotes, so that’s what I’m set up for now. This post will cover how I install and configure Git to work smoothly in Windows. Disclaimer: I don’t do much web development in Windows these days,…

Read more

Introducing SPTools: A GUI for Performing Batch Tasks on SharePoint Lists

About a year ago I started writing JavaScript functions to perform batch tasks on SharePoint lists using SPServices. I did this because SharePoint didn’t offer the functionality I needed out of the box, and I’m limited to SharePoint Designer for all development at my workplace. After writing several of these functions for one-off projects (mostly…

Read more

SimpleMaxChars Plugin for jQuery

My SimpleMaxChars jQuery plugin adds a message displaying the number of characters remaining in an <input> or <textarea>. I needed a fairly basic solution quickly and most of the existing plugins that offer similar functionality were too big, too small, buggy, or didn’t meet my specific needs. If this looks like it will work for…

Read more