Glenn Sidney

Results 41 comments of Glenn Sidney

To keep my code clean I'm wanting to use Figaro.env.feature_enabled? to decide whether or not a feature should be used in a particular environment. That seems to be the nicest...

I'd recommend $("#myButton").css("behavior", "url(/path/to/PIE.htc?1)") after you do your adjustments, or something like that. It'll cause PIE to redo its magic when you're ready for it.

If you store this natively: ``` model.data = { foo: "bar", thing: { asdf: "zxcv" } } ``` You'll find that model.data["thing"].class == "String" instead of "Hash". With this plugin,...

I moved from Madison, but I sure miss it! I think this is maybe just a communication error, but when you say "you can :claim an Account in any way"...

Just wanted to follow up and mention that as of Rails 5.2.5 and Devise 4.7.1 this is still an active bug.

I'm wondering if the insert is actually raising an error, but the adapter isn't trying to grab or report on the error. Googling for "sp_executesql" "COMMIT TRANSACTION request has no...

Running directly in SqlServer I see: ``` EXEC sp_executesql N'INSERT INTO [calendar] ([subject]) VALUES (@0)', N'@0 varchar(255)', @0 = 'test' The XML parse error 0xc00ce558 occurred on line number 0,...

Just in case anyone is wondering, my error was that the column `resourceid`, type `varchar(max)` is supposed to be xml and there's an OnCalendarInsert Trigger trying to parse that. So...

I think I could do that, however I'm not sure I have permission to share the affected DB. Do you have a way of setting up a DB for the...

The unit test instructions assume I have sqlserver running locally, but I don't since I'm on a Mac. I actually run my stuff locally similar to the way your ci...