This file contains hidden or 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
| class ActionDispatch::IntegrationTest | |
| # usage: set_range "My Range Field", to: 42 | |
| # this also triggers the input's change and/or input events | |
| # as opposed to find_field("My Range Field").set 42 | |
| def set_range(locator = nil, to:, **find_options) | |
| find_field(locator, find_options).execute_script %Q(this.value = "#{to}") | |
| end | |
| end |
This file contains hidden or 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
| #!/usr/bin/env sh | |
| set -e | |
| HOME_DIR="/home/git" | |
| WWW_DIR="/usr/local/www/gitweb" | |
| REPOS_PATH="$HOME_DIR/repositories" | |
| GITWEB_CONF="/etc/gitweb.conf" | |
| GITWEB_PATH="/usr/local/share/examples/git/gitweb" | |
| BANNER="# created by bootstrap script. manual changes might get lost." |
This file contains hidden or 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
| #!/usr/bin/env sh | |
| # DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| # Version 2, December 2004 | |
| # | |
| # Copyright (C) 2020 glaszig <glaszig@gmail.com> | |
| # | |
| # Everyone is permitted to copy and distribute verbatim or modified | |
| # copies of this license document, and changing it is allowed as long | |
| # as the name is changed. |
This file contains hidden or 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
| --- if_.orig 2016-08-02 23:52:05.691224811 +0200 | |
| +++ if_ 2016-08-02 23:52:49.563223127 +0200 | |
| @@ -91,7 +91,7 @@ | |
| # iwlist first) | |
| if [[ -r /sys/class/net/$INTERFACE/speed ]]; then | |
| SPEED=$(cat /sys/class/net/$INTERFACE/speed 2>/dev/null) | |
| - if [[ -n "$SPEED" ]]; then | |
| + if [ -n "$SPEED" -a "$SPEED" -gt "0" ]; then | |
| echo $SPEED | |
| return |
This file contains hidden or 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 'benchmark' | |
| ITERATIONS=100_000 | |
| INPUT='https://www.example.com/path/to/image.png'.freeze | |
| def interpolate | |
| INPUT.to_enum(:each_byte).map{ |byte| "%02x" % byte }.join | |
| end | |
| def unpack |
This file contains hidden or 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
| diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb | |
| index 722b3a8..e32d6db 100644 | |
| --- a/app/views/layouts/application.html.erb | |
| +++ b/app/views/layouts/application.html.erb | |
| @@ -4,6 +4,7 @@ | |
| <title>AssetsDemo</title> | |
| <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> | |
| <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> | |
| + <%= javascript_include_tag 'jquery.mousewheel', 'data-turbolinks-track' => true %> | |
| <%= csrf_meta_tags %> |
This file contains hidden or 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
| # converts URIs in vcr cassettes from uri-based basic auth | |
| # to header-based basic auth to be compatible with webmock 2.0. | |
| # it will create a basic auth header with an ERB tag | |
| # to keep user and password be editable. | |
| # | |
| # Authorization: Basic <%= Base64.encode64("user:password").chomp %> | |
| # | |
| # may not work if using VCR's filter_sensitive_data. | |
| # in that case use https://gist.github.com/ujh/594c99385b6cbe92e32b1bbfa8578a45 | |
| # |
This file contains hidden or 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
| # config/application.rb | |
| module MyApp | |
| class Application < Rails::Application | |
| config.autoload_paths << config.root.join('lib') | |
| end | |
| end |
This file contains hidden or 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
| # mtr -r -w -c 10 rubygems.global.ssl.fastly.net | |
| HOST: ip-172-31-1-177 Loss% Snt Last Avg Best Wrst StDev | |
| 1. ec2-54-93-0-2.eu-central-1.compute.amazonaws.com 0.0% 10 0.5 1.0 0.4 1.7 0.5 | |
| 2. 54.239.5.169 0.0% 10 1.4 1.3 1.3 1.4 0.0 | |
| 3. 54.239.106.48 0.0% 10 12.3 301.5 3.1 1278. 490.9 | |
| 4. 54.239.106.31 0.0% 10 1.7 1.4 1.2 1.7 0.1 | |
| 5. ffm-b10-link.telia.net 0.0% 10 1.3 1.2 1.1 1.3 0.1 | |
| 6. ??? 100.0 10 0.0 0.0 0.0 0.0 0.0 | |
| 7. 185.31.17.249 0.0% 10 1.2 1.3 1.2 1.4 0.1 | |
This file contains hidden or 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/sh | |
| if [ -z "$1" ]; then | |
| echo "Usage: `basename $0` hostname [hostname]..." | |
| exit $E_NOARGS | |
| fi | |
| until [ -z "$1" ]; do | |
| host=$1 |