Jason Nochlin

Results 57 comments of Jason Nochlin

This is in response to sj26/mailcatcher#4

The current setup can take in any SMTP configuration. I chose to add GMail as the default SMTP configuration figuring it was relatively common and easiest to setup. For the...

Just tried tweeting it from a client (using the `twitter` ruby gem): ``` > client.update "a\r\nb" HTTP POST (84.88ms) https://api.twitter.com:443/1.1/statuses/update.json Request body status=a%0D%0Ab Response status Net::HTTPOK (200) Response body {...

Tweeting 140 of the "\r\n"s results in a Forbidden error as the Twitter API considers it a blank status: ``` > client.update "\r\n" * 140 HTTP POST (38.29ms) https://api.twitter.com:443/1.1/statuses/update.json Request...

I started working on this in #9. Feedback and help with other languages appreciated

@fschuindt looks like `LinkedIn.default_profile_fields` are being set as the `:fields` argument in the network_updates call, even though those fields don't apply to that call. The work around would be to...

@hexgnu The Twitter gem is moving from Faraday to HTTP (https://twitter.com/sferik/status/426910345173929984). I checked out the HTTP gem over the weekend, the interface is slick, but the internals maybe a little...

@sferik Thanks for clarifying, definitely not room in 140 characters for all that nuance :) Sounds like we should use Faraday @hexgnu

Re-ran evaluation on an 8-core cloud VM: * Execution time: 00:05.318 (8 Core Intel(R) Xeon(R) Platinum 8358 CPU @ 2.60GHz) * Execution time of reference implementation: 3:18.572

@gunnarmorling For city names, I use linear probing similar to other entires: https://github.com/gunnarmorling/1brc/blob/8bb24ec4f631a635f11f91f26c63246e14bb79f9/src/main/java/dev/morling/onebrc/CalculateAverage_hundredwatt.java#L163-L168 For temperature values, I realized there's only 1,999 possible values based on the rules, so I created...