apsheronets

Results 6 issues of apsheronets

In case the underlying XML is not valid. In my case, just having unescaped `&` Gemfile: ``` source "https://rubygems.org" gem "sax-machine" gem "nokogiri" ``` test.rb: ``` require "sax-machine" class Child...

The patron gem has a handy setting: https://github.com/toland/patron/commit/f168aab84c109066959110b6380311ab3d049464 It's useful when your application receives URLs to query from a regular user. So, is using `Curl::Easy#on_progress` callback is a correct and...

I mean this one: https://github.com/ocsigen/lwt/blob/3d6f0fac4fed71d3c9cbdc5b90d6a443949bb0d6/src/unix/lwt_unix_stubs.c#L934 Few years ago I made a simple image caching proxy server using cohttp (and lwt). The server was pretty loaded, and worked on an array...

That's it. Sorry for having no time to investigate more.

Looks like it's [/var/run/postgresql for async](https://github.com/arenadotio/pgx/blob/2bdd5182142d79710d53bf7c4da2a1f066f71590/pgx_async/src/pgx_async.ml#L121) and [/tmp for everything else](https://github.com/arenadotio/pgx/blob/2bdd5182142d79710d53bf7c4da2a1f066f71590/pgx/src/pgx.ml#L594).

Like, literally: ``` require 'open-uri'; require 'feedjira'; Feedjira.configure do |c| c.strip_whitespace = true end; Feedjira.parse(URI.open("https://www.lrt.lt/naujienos/lietuvoje?rss").read).entries.first.id => "\n\t\t\t\thttps://www.lrt.lt/naujienos/lietuvoje/2/2210689/teismas-paskelbe-nuosprendi-del-pravieniskiu-pataisos-namuose-vykdytu-nusikaltimu-nuteistieji-kales-ilgus-metus\n\t\t\t" ``` And it doesn't solve the issue #350, but it should.