View flaky-test-finder.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'json' | |
require 'net/http' | |
require 'optparse' | |
require 'set' | |
require 'uri' | |
require 'octokit' | |
options = {} | |
OptionParser.new do |opt| | |
opt.on('-s', '--start BUILD_NUMBER', 'Require start') { |o| options[:start] = o } |
View maintainers.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./bin/project -q maintainers missing | |
https://github.com/opensearch-project/dashboards-notebooks | |
https://github.com/opensearch-project/ux |
View gist:fc2a864713d664f33f6a6bdeac3f518f
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I am attesting that this GitHub handle dblock is linked to the Tezos account tz1ivFsNqtfLTSDh7uzqJ6pArNRG13pkJt4a for tzprofiles | |
sig:edsigtshxfYo5JbUmy38XPrRPwJY98j3nd79WEkVdrhBLVPxMAGSsyR4ai41QTnbygucGMENiRw7axCrFFKk6Cy41zcydx1o9JE |
View gist:5f97961819d4c2162abdcd5e4712f2ff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Create Element: | |
$Rainb.el('div',{'attribute':"value",style:{"color":"red"}},[ (childnodes) ]) | |
becomes: <div attribute="value" style="color: red;"></div> | |
Append Element | |
$Rainb.add(element,elementToAppend) | |
Get Element By Id | |
$Rainb.id(id); | |
Create TextNode | |
$Rainb.tn(text); |
View test.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'kramdown' | |
text = <<-MARKDOWN | |
# Example | |
The quick brown fox jumps over the lazy dog. | |
```ruby | |
# one |
View restart-bots.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for D in `find . -type d -name "*bot"` | |
do | |
NAME=`basename $D` | |
echo Restarting $NAME ... | |
dokku ps:restart $NAME | |
done |
View mongoid-collection-snapshot-nil.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'mongoid' | |
require 'mongoid-collection-snapshot' | |
Mongo::Logger.logger.level = Logger::INFO | |
Mongoid.connect_to 'widgets-and-gadgets', max_pool_size: 16 | |
class Widget | |
include Mongoid::Document | |
end |
View notify-bot-teams.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Team.active.asc(:_id).each do |team| | |
begin | |
next if team.premium | |
STDOUT.write "#{team.name}: " | |
client = Slack::Web::Client.new(token: team.token) | |
channels = client.channels_list['channels'].select { |channel| channel['is_member'] } | |
channels.each do |channel| | |
STDOUT.write "#{channel['name']} " | |
client.chat_postMessage( | |
channel: channel.id, |
View try.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'celluloid/current' | |
require 'celluloid/io' | |
require 'http' | |
require 'websocket/driver' | |
class Connection | |
include Celluloid::IO | |
extend Forwardable | |
def initialize(url) |
View dropbox.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DROPBOX_USERS="root" | |
DAEMON=.dropbox-dist/dropboxd | |
start() { | |
echo "Starting dropbox..." | |
for dbuser in $DROPBOX_USERS; do | |
HOMEDIR=`getent passwd $dbuser | cut -d: -f6` |
NewerOlder