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/sh | |
# | |
# This script generates a /etc/docker/daemon.json file tuned for the current environment. | |
# Currently, only the mtu option is suaported. | |
# | |
# Usefull for the developers who use Docker-in-Docker feature in their dev containers with VS Code and | |
# need to set the mtu option for the inner Docker daemon. | |
# | |
# This script is intended to be run using a DevContainer feature like script_runner. | |
# See https://github.com/wxw-matt/devcontainer-features for more details. |
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/sh | |
# | |
# Install the latest rbw deb package from the rbw releases page. | |
# | |
# See https://github.com/doy/rbw for more information. | |
# | |
CURL=curl | |
PACKAGE_URL_BASE="https://git.tozt.net/rbw/releases/deb/" |
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/sh | |
# | |
# podman-compose wrapper to make relative paths in output of `config` command absolute. | |
# Currently only paths in build.context and volumes are converted. | |
# | |
# path to the podman-compose executable to wrap | |
PODMAN_COMPOSE="/usr/bin/podman-compose" | |
COMMAND="" |
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
#!/usr/bin/python2 | |
# -*- coding=gbk -*- | |
# | |
# The original version can be found at https://www.programmersought.com/article/60554969634/. | |
# The differences from original version are as follows: | |
# * added shbang line so that we can know this is the python 2 script. | |
# * added SUITE_NAMES column. | |
# | |
import glob | |
import sys |
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
--- | |
- name: host | |
hosts: localhost | |
gather_facts: false | |
tasks: | |
- block: | |
- name: show ansible version | |
ansible.builtin.debug: | |
var: ansible_version.full |
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/sh | |
# | |
# $FreeBSD: $ | |
# | |
# PROVIDE: wetty | |
# REQUIRE: DAEMON | |
# KEYWORD: shutdown | |
# | |
# Add the following to /etc/rc.conf[.local] to enable this service | |
# |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head profile="http://selenium-ide.openqa.org/profiles/test-case"> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<link rel="selenium.base" href="https://www.google.com/" /> | |
<title>Check source IP address</title> | |
</head> | |
<body> | |
<table cellpadding="1" cellspacing="1" border="1"> |
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 2017-07-13 16:04:30:737 server.cc(86) Starting WebDriver server on port: '36390' on host: '' | |
T 2017-07-13 16:04:30:737 server.cc(630) Entering Server::PopulateCommandRepository | |
T 2017-07-13 16:04:30:737 IEServer.cpp(32) Entering IEServer::IEServer | |
I 2017-07-13 16:04:30:737 IEServer.cpp(33) Driver version: 3.4.0.0 (32-bit) | |
T 2017-07-13 16:04:30:737 server.cc(121) Entering Server::Start | |
D 2017-07-13 16:04:30:737 server.cc(148) Civetweb ACL is -0.0.0.0/0,+127.0.0.1 | |
T 2017-07-13 16:04:31:146 server.cc(174) Entering Server::ProcessRequest | |
T 2017-07-13 16:04:31:146 server.cc(183) Process request with: URI: /status HTTP verb: GET | |
body: {} | |
T 2017-07-13 16:04:31:146 server.cc(272) Entering Server::DispatchCommand |
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
// ==UserScript== | |
// @name itmediaPR | |
// @namespace itmediaPR | |
// @description itmediaのPR記事を分かりやすくする | |
// @include http://www.itmedia.co.jp/* | |
// @version 1 | |
// @grant none | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js | |
// ==/UserScript== |
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
--- /etc/rc.d/mountd.orig 2015-11-03 05:12:28.000000000 +0900 | |
+++ /etc/rc.d/mountd 2015-12-16 20:41:43.728997000 +0900 | |
@@ -42,5 +42,7 @@ | |
err 1 'Cannot create /var/db/mountdtab' | |
} | |
+load_rc_config nfsd | |
+load_rc_config zfs | |
load_rc_config $name | |
run_rc_command "$1" |
NewerOlder