I want a script that will give me:
- Logging
- Log purging!
- Email errors!
- Prevent duplicate processes! (flock)
- Source an environment file!
- Anything else?
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Collections.ObjectModel; | |
| using System.Data.Entity; | |
| using System.Linq; | |
| using System.Linq.Expressions; | |
| namespace FCM.Web.Tests.TestHelpers | |
| { |
| namespace My.Models.BaseModels | |
| { | |
| public class AuditableEntity | |
| { | |
| public int Id { get; set; } | |
| public DateTime CreatedDt { get; set; } | |
| public string CreatedBy { get; set; } | |
| public DateTime RevisedDt { get; set; } | |
| public string RevisedBy { get; set; } | |
| } |
| [HttpPost] | |
| public ActionResult ConfirmLink(string id) | |
| { | |
| try | |
| { | |
| var confirmationMessage = SomeRepo.ConfirmLink(id); | |
| return Json(new { confirmationMessage = confirmationMessage }, JsonRequestBehavior.AllowGet); | |
| } | |
| catch (Exception ex) | |
| { |
| object FileName = tempFilePath; | |
| object FileFormat = msWord.WdSaveFormat.wdFormatFilteredHTML; | |
| object LockComments = false; | |
| object Password = System.Reflection.Missing.Value; | |
| object AddToRecentFiles = false; | |
| object WritePassword = System.Reflection.Missing.Value; | |
| object ReadOnlyRecommended = false; | |
| object EmbedTrueTypeFonts = false; | |
| object SaveNativePictureFormat = System.Reflection.Missing.Value; | |
| object SaveFormsData = false; |
| window.addEventListener('load', function(e) { | |
| var trees = new Array(3); | |
| trees[0] = {}; // 0 0 | |
| trees[1] = {a : {}}; // 1 1 | |
| trees[2] = {a : {}, b: {a : {}, b: {a : {}, b: {}}}}; // 6 3 | |
| var nodes = function(tree) { | |
| var count = 0; | |
| var nodes2 = function(tree) { |
| using System; | |
| using System.Collections.Generic; | |
| using System.Globalization; | |
| using System.Threading; | |
| using System.Web.Helpers; | |
| namespace Custom.Utils | |
| { | |
| class CustomJson | |
| { |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| // Assume .NET 4.5 | |
| namespace FunAPI |
| # | |
| # vi $profile | |
| # C:\Users\userid\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 | |
| # | |
| new-alias vi "C:\Program Files\Sublime Text 2\sublime_text.exe" | |
| new-alias grep select-string |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| public class Program | |
| { | |
| public static void Main() | |
| { | |
| DateTime a = DateTime.Now; | |
| DateTime z = DateTime.Parse("2014-06-01 00:00:00"); |