Pavel Djundik
Pavel Djundik
Currently trying to save a file over 2gib results in this exception: ``` System.OutOfMemoryException: Cannot allocate a buffer of size 2147487611. at System.Text.Json.ThrowHelper.ThrowOutOfMemoryException(UInt32 capacity) at System.Text.Json.Utf8JsonWriter.Grow(Int32 requiredSize) at SharpGLTF.IO._JSonSerializationExtensions.TryWriteValue(Utf8JsonWriter writer,...
Here are some thoughts in no particular order from today's IRC discussion: - Currently charset/encoding support is a mess on IRC because it was never defined, and clients do not...
I used your library to dump entity lumps from tf2 and csgo maps. And as it turns out lumps can be LZMA compressed in tf2 maps. Is this something you're...
``` Exception: Could not connect to: kornbluth.freenode.net:8000 Connection refused at Meebey.SmartIrc4net.IrcConnection.Connect (System.String[] addresslist, Int32 port) [0x00000] in :0 at Meebey.SmartIrc4net.IrcClient.Connect (System.String[] addresslist, Int32 port) [0x00000] in :0 ``` This happened,...
``` @PointClass base( Targetname, Parentname, CanBeClientOnly, Light2Inputs ) omnilight() metadata { entity_tool_name = "Omni Light" entity_tool_tip = "Omni directional light source" entity_tool_group = "Lighting" entity_tool_sortname = "lights2" default_pitch = 90.0...
I feel like this function could be optimized quite a bit by caching some variables, and not re-calculating them every time the function is called. checkTemplate is always called regardless...
Looks like parser has it's own array of native tags now, and the one in config is redundant
I was doing this `{if="isset( $value.executable )"}{$value.executable|safe}{/if}` and it took me a while to figure this out.
Otherwise if you use variables, they are passed as is, like $page
In the compiled code, {loop} tag produces pretty big if() with lots of checks to make sure that variable can be looped though. I think that these checks are unnecessary....