@aeden Oops. Cc @aeden@dnsimple.social
27.3.2025 08:42@aeden Oops. Cc @aeden@dnsimple.socialRelease 1160: Hoe v4.2.3 released with some niceties added, esp cleaning before packaging! 🎉
https://www.zenspider.com/releases/2025/03/hoe-version-4-2-3-has-been-released.html
25.3.2025 22:53Release 1160: Hoe v4.2.3 released with some niceties added, esp cleaning before packaging!...Release 1159: ruby2ruby v2.5.2 released with support for 3 slot op_asgn (eg `a &= 1`)! 🎉
https://www.zenspider.com/releases/2025/03/ruby2ruby-version-2-5-2-has-been-released.html
25.3.2025 22:51Release 1159: ruby2ruby v2.5.2 released with support for 3 slot op_asgn (eg `a &= 1`)!...@aeden hey hey... my dnsimple automation no longer works (`The zone record cannot be deleted: system records cannot be changed`) ... what's the best way to get a human for some support? "SHOULD" be relatively simple. File an issue against the gem? something else?
23.3.2025 23:08@aeden hey hey... my dnsimple automation no longer works (`The zone record cannot be deleted: system records cannot be changed`) ......What's your opinion on what you should do when a company no-shows on a call? Personally, I think we should be VERY public about bad companies but I'd love to hear your perspective.
12.3.2025 22:49What's your opinion on what you should do when a company no-shows on a call? Personally, I think we should be VERY public about bad...Release 1158: minitest v5.25.5 released with a couple fixes to assertions/expectations! Dropped ruby 2.6. Bumped compatibility tables! ❤️🎉
https://www.zenspider.com/releases/2025/03/minitest-version-5-25-5-has-been-released.html
12.3.2025 19:43Release 1158: minitest v5.25.5 released with a couple fixes to assertions/expectations! Dropped ruby 2.6. Bumped compatibility tables!...Release 1157: RubyInline v3.14.2 released with bug fixes for windows and ruby 3.4 builds! 🎉
https://www.zenspider.com/releases/2025/03/RubyInline-version-3-14-2-has-been-released.html
12.3.2025 03:10Release 1157: RubyInline v3.14.2 released with bug fixes for windows and ruby 3.4 builds!...Why does "TUI" seem to imply "very non-unix like tool"?
1.3.2025 08:18Why does "TUI" seem to imply "very non-unix like tool"?Happy 23rd Birfday to Seattle.rb! Thanks to @zenspider, @drbrain , and PatEyler (and everyone who followed them) for making this happen!
1.3.2025 02:50Happy 23rd Birfday to Seattle.rb! Thanks to @zenspider, @drbrain , and PatEyler (and everyone who followed them) for making this happen!Well #FediHire, I'm on the market again! 25 year #Ruby / #Rails (and more!) powerhouse looking for employment. Reached 3rd highest contributor at my last gig despite 200k+ commits, 15+ years, and hundreds of developers. Have ~100 gems w/ ~2 billion downloads. You know me.
Loves: languages / runtimes, profiling & optimization, debugging, testing, OSS, etc.
https://www.zenspider.com/ryan/Resume.html
please #boost ❤️
19.2.2025 23:14Well #FediHire, I'm on the market again! 25 year #Ruby / #Rails (and more!) powerhouse looking for employment. Reached 3rd highest...A foolish consistency is the hobgoblin of little minds, adored by linter scripts and philosophers and divines.
13.2.2025 05:07A foolish consistency is the hobgoblin of little minds, adored by linter scripts and philosophers and divines.I was on a call once with a hiring mgr for some place over near MS and asking a bunch of questions about their software process. When he said they have a "build master" who collects all the patches via email, resolves any conflicts manually (and presumably without context), and has a new build by morning... I laughed myself off the call.
18.1.2025 00:35I was on a call once with a hiring mgr for some place over near MS and asking a bunch of questions about their software process. When he...The entire point of this story, perhaps lost due to mastodon, is that regexen are oft the first thing pulled out, but rarely the best solution if you get your head out of em.
11.1.2025 22:56The entire point of this story, perhaps lost due to mastodon, is that regexen are oft the first thing pulled out, but rarely the best...it is also stripping "*" from `str*50` ??? wtf
11.1.2025 22:54it is also stripping "*" from `str*50` ??? wtfwhy does mastodon keep stripping my blank lines?
11.1.2025 21:39why does mastodon keep stripping my blank lines?```
require "benchmark/ips"
class String
def commafy_rev = reverse.scan(/(?:\d*\.)?\d{1,3}-?/).join(",").reverse
def commafy_fwd1 = gsub(/(?!\A)(?=(?:\d{3})+\z)/, ",")
def commafy_fwd2 = scan(/^\d{#{size % 3}}|\d{3}/).join ","
def commafy_fwd3 = (n = size % 3; [self[0...n], self[n..].scan(/\d{3}/)].join ",")
end
str = "32432908"
methods = %i[commafy_fwd1 commafy_fwd2 commafy_fwd3 commafy_rev]
Benchmark.ips_quick(*methods, on:str)
puts
Benchmark.ips_quick(methods, on:(str\*50))
```
Release 1156: minitest-bacon v1.0.5 released with some fixes for ruby 3.4 call stack changes!
https://www.zenspider.com/releases/2025/01/minitest-bacon-version-1-0-5-has-been-released.html
10.1.2025 19:55Release 1156: minitest-bacon v1.0.5 released with some fixes for ruby 3.4 call stack...Release 1155: minitest-speed v1.0.2 has been released!
NINE YEARS!! since the last release! 🎉
https://www.zenspider.com/releases/2025/01/minitest-speed-version-1-0-2-has-been-released.html
6.1.2025 23:29Release 1155: minitest-speed v1.0.2 has been released!NINE YEARS!! since the last release!...Cleaning out all my cables... How do *you* organize your misc electronics like cables and small storage? (please do not answer if you have no organization beyond "drawer")
6.1.2025 10:37Cleaning out all my cables... How do *you* organize your misc electronics like cables and small storage? (please do not answer if you have...I can't wait for this:
```
10001 $ update_rubies
# Good : 3.3.6 3.2.6
# Install: 3.4.0
# Delete : 3.1.6 3.0.7 2.7.8
...build steps...
```