Douglas Blank

Results 375 comments of Douglas Blank

Ok, thanks for the info. Do you know where I can find this patch?

Oh, ok. Then things aren't good. The first error I had was that the notebook didn't pass the test for the signed signature. I commented out that check, but it...

Maybe org-mode and jupytext aren't going to be a good match afterall. But my friends are still on the quest for combining emacs + notebooks...

@gutfuckllc any progress on your project? @rigelk offered some help.

My main goal is to create tools to help as many people get started with ActivityPub (AP) as possible. There are many hard things to understand in creating the stack:...

Regarding differences between Mastodon, Pleroma, and ActivityPub: let's all follow the standard as best as possible. Sure, we can adapt input to slight variation, but still produce valid AP output....

So, what is the basic idea of an interop between Lua objects and .NET objects? How would you implement this?

Code was a bit wrong: ``` public static System.Collections.Generic.List ToList(LuaSharp.LuaTable table) { System.Collections.Generic.List list = new System.Collections.Generic.List(); foreach(System.Collections.Generic.KeyValuePair pair in table) { list.Add(pair.Key.ToString()); } return list; } ```