-
Proper case a string using RegEx in Javascript, except for words in parenthesis
Today I had to find a way to proper case a string, except anything that is in parenthesis. That sounds like a mouthful, so to clarify, I wanted to turn “JAVASCRIPT ROCKS (JS)” into “Javascript Rocks (JS)”, so I created a regular expression to do this task in an Adobe LiveCycle form. this.rawValue = this.rawValue.replace(/(?!\w*\))(\w\S*)/g, function(txt){…
-
Adding a solution to TFS without adding the NuGet packages.
I was adding a project that I just completed to TFS source control and noticed that it wanted to add the packages to source control also, but I didn’t want that because you are not supposed to add the NuGet packages. They can be re-downloaded and installed during the build process for anyone that does…
-
Import transactions into YNAB FREQUENTLY!!!!
After watching this video from YNAB I have learned an important lesson. I have not imported my transactions for two months and now I have to individually approve 235 transactions. This is going to take a while. I recommend that you import your transactions frequently. I think it would be a good practice to do this…
