Skip to content

Instantly share code, notes, and snippets.

View benoittgt's full-sized avatar
🏴

Benoit Tigeot benoittgt

🏴
View GitHub Profile
@swinton
swinton / README.md
Last active January 21, 2025 16:03
Automatically sign your commits from GitHub Actions, using the REST API

Verified commits made easy with GitHub Actions

image

So you want to commit changes generated by a GitHub Actions workflow back to your repo, and have that commit signed automatically?

Here's one way this is possible, using the REST API, the auto-generated GITHUB_TOKEN, and the GitHub CLI, gh, which is pre-installed on GitHub's hosted Actions runners.

You don't have to configure the git client, just add a step like the one below... Be sure to edit FILE_TO_COMMIT and DESTINATION_BRANCH to suit your needs.

# frozen_string_literal: true
Warning.singleton_class.prepend(
Module.new do
DISABLED_WARNINGS = Regexp.union(
/_pry_ is deprecated, use pry_instance instead/,
/warning: The called method( `.+')? is defined here/,
)
def warn(warning)
Process.setproctitle("foo-parent")
ppid = Process.pid
fork do
exit if fork # You can only setsid if you're in a child process so first we fork
Process.setsid # and exit the parent then setsid in the child. Now that we have a
exit if fork # new session create a child process in it and exit the parent again.
Dir.chdir("/") # Finally, change directory to one that can't be deleted or moved.
Process.setproctitle("foo-child")
@seanh
seanh / netrw.md
Last active February 8, 2025 05:06
Netrw Cheatsheet (Vim's Built-in Directory Browser)

Netrw Cheatsheet (Vim's File Browser)

See also:

  • vinegar.vim, which makes - open netrw in the directory of the current file, with the cursor on the current file (and pressing - again goes up a directory). Vinegar also hides a bunch of junk that's normally at the top of netrw windows, changes the default order of files, and hides files that match wildignore.

    With vinegar, . in netrw opens Vim's command line with the path to the file under the cursor at the end of the command. ! does the same but also prepends ! at the start of the command. y. copies the absolute path of the file under the cursor. ~ goes to your home dir. Ctrl+6 goes back to the file (buffer) that you had open before you opened netrw.

To launch netrw:

Benchmarks for GC Compactor

GC benchmarks for trunk vs gc-compact seem to be about the same:

$ make benchmark ITEM=gc
./revision.h unchanged
/Users/aaron/.rbenv/shims/ruby --disable=gems -rrubygems -I./benchmark/lib ./benchmark/benchmark-driver/exe/benchmark-driver \
	            --executables="compare-ruby::/Users/aaron/.rbenv/shims/ruby --disable=gems -I.ext/common --disable-gem" \
	            --executables="built-ruby::./miniruby -I./lib -I. -I.ext/common  -r./prelude --disable-gem" \
@matthewrudy
matthewrudy / errors.out
Last active March 25, 2019 16:10
Changes required to make rspec-rails work with Rails 6
# this is what the errors looked like before
ActionView::Template::Error:
wrong number of arguments (given 2, expected 1)
# Ruby 2.6 introduced String#split that allows it to take a block instead of just returning an array
# https://twitter.com/schneems/status/1078848803694882817
require 'benchmark/ips'
STRANG = "hello/there/hi/how/are/you/today".freeze
Benchmark.ips do |x|
x.report("normal") { first_strang = STRANG.split("/".freeze).first }
x.report("new ") {
@2rba
2rba / reactor.rb
Created December 1, 2018 10:22
Capybara 3.12.0 + Puma 3.10.0 + TimeCop Fix
module CoreExtensions
module Puma
module Reactor
def calculate_sleep
if @timeouts.empty?
@sleep_for = ::Puma::Reactor::DefaultSleepFor
else
diff = @timeouts.first.timeout_at.to_f - Time.now.to_f
if diff < 0.0
@vlad-velciov
vlad-velciov / flakiness.rb
Last active December 10, 2018 10:46
retry_tests/lib/formatters/flakiness
# lib/formatters/flakiness.rb
require 'rspec/core/formatters/console_codes'
require 'rspec/core/formatters/documentation_formatter'
class Flakiness < RSpec::Core::Formatters::DocumentationFormatter
RSpec::Core::Formatters.register self, :example_group_started, :example_group_finished,:example_passed, :example_pending, :example_failed
def example_passed(notification)
return super unless notification.example.metadata[:flaky]
output.puts flaky_output(notification.example)
@vojtad
vojtad / benchmarks.md
Created November 21, 2018 00:00
Rails JSON rendering benchmarks

Rendered JSON is ~250 KB in size.

Runtime benchmarks

Warming up --------------------------------------
   render json: data    20.000  i/100ms
render json: data.to_json
                        27.000  i/100ms
render json: ActiveSupport::JSON.encode(data)
                        26.000  i/100ms