[12:44:35] my ISP has left me without internet, taking a break to pray it comes back soon [12:44:50] pray usually doesn't fix your internet access ;P [12:44:52] *praying [12:49:31] See? it worked [12:50:05] it looks like your $DEITY is stronger than mine [12:50:18] (It also required a router restart) [12:57:03] sadly, this new ISP's router kidnaps cloudflare 1.1.1.1 and I have to use 1.0.0.1 instead [13:11:30] jynus: pepephone? [13:11:48] nope, I've checked and there are many that do that [13:12:08] I suffered the same issue with them [14:04:17] I use Pepephone, so far so good [14:05:50] arturo: yeah.. as soon as you ask them to get your internet access out of their CGNAT [14:06:14] I did! and apparently I'm not in the CGNat [14:06:27] IPv6 is another story [14:06:33] cdanis: I am a little curious about the number of aborted connections to db1133 [14:06:45] the monitoring there is strange [14:06:55] like, the scraping of stats was not working; prometheus is missing data points [14:07:01] arturo: dunno why they prefer CGNAT to IPv6 :( [14:07:23] they are probably contsrained by the base ISP [14:09:04] cdanis: it is visible here as well https://tendril.wikimedia.org/host/view/db1133.eqiad.wmnet/3306 [14:09:41] but I am not sure where to look if mariadb wrote the reason for those [14:15:07] yeah I have no idea [14:15:33] heh the innodb mutexes graph is uh, interesting [16:39:54] let's say I have a loop: <% attributes['hosts'].each do | host | -%><%= host -%>,<% end %> [16:39:54] And I only want to add the coma between the different "host", but not at the end. Is there a clever way of doing so? [16:41:21] I guess that's what I'm looking for https://stackoverflow.com/questions/26695711/dont-have-a-comma-on-the-last-iteration-of-an-each-loop-in-rails [16:42:02] yeah attributes['hosts'].join(',') should DTRT [16:44:04] eh, of course [16:44:06] thx!