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
private static readonly Random random = new Random(); | |
void Main() | |
{ | |
GenerateJapaneseName().Dump(); | |
} | |
private static string GenerateJapaneseName() | |
{ | |
const string nameGenerableHiraganaCharacters = "あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわ"; |
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
const fieldMutateProtectedProxyHandler = (() => { | |
const MemberType = Object.freeze({ | |
PROPERTY: Symbol('PROPERTY'), | |
METHOD: Symbol('METHOD'), | |
FIELD: Symbol('FIELD'), | |
UNKNOWN: Symbol('UNKNOWN') | |
}); | |
function getMemberType(target, key) { | |
if (!(key in target)) { |
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
// Assume that the table looks like | |
// Participant \ Date | 12/21 | 12/22 | 12/23 | 12/24 | | |
// ---------------------------------------------------- | |
// A | X | | X | | | |
// B | O | | 3 | 3 | | |
// C | O | | | | | |
// D | | | | | | |
// = | X | O | X | 3 | | |
=IF(COUNTIF(B2:B6, "✕") > 0, "✕", IF(COUNTIF(B2:B6, "△") > 0, "△", "〇")) |
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
import java.io.BufferedReader; | |
import java.io.ByteArrayInputStream; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.util.Scanner; | |
import javax.servlet.ReadListener; | |
import javax.servlet.ServletInputStream; | |
import javax.servlet.http.HttpServletRequest; | |
import javax.servlet.http.HttpServletRequestWrapper; |
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
////////////////////////////////// | |
////// SCRIPT & CLASS SCOPE ////// | |
////////////////////////////////// | |
final def classContext = context scope: classScope() | |
final def scriptContext = context scope: scriptScope() | |
contributor([scriptContext, classContext]) { | |
property(name: "env", type: 'org.jenkinsci.plugins.workflow.cps.EnvActionImpl') | |
property(name: "params", type: 'org.jenkinsci.plugins.workflow.cps.EnvActionImpl') |
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
FROM donvito/php-oci8 | |
STOPSIGNAL SIGINT | |
RUN groupadd -g 1000 adminer \ | |
&& useradd -d /var/www/html -u 1000 -g 1000 -M adminer \ | |
&& mkdir -p /var/www/html \ | |
&& chown 1000:1000 /var/www/html | |
WORKDIR /var/www/html |
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
# syntax=docker/dockerfile:1.4 | |
ARG BASE_IMAGE_REPO=docker.io | |
ARG USER_ID=1000 | |
ARG USER=runtime | |
ARG CURL_IMAGE=${BASE_IMAGE_REPO}/curlimages/curl:7.83.1 | |
ARG RUNTIME_IMAGE=${BASE_IMAGE_REPO}/busybox:1.34.1 | |
ARG KUBECTL_VERSION=1.24.0 | |
ARG KUSTOMIZE_VERSION=4.5.5 | |
ARG KUBECTL_NEAT_VERSION=2.0.3 |
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
0.0.0.0 a.line.me | |
0.0.0.0 aax-us-pdx.amazom-adsystem.com | |
0.0.0.0 aax-us.amazom-adsystem.com | |
0.0.0.0 ad-center.line.me | |
0.0.0.0 ad.line-scdn.net | |
0.0.0.0 adns1.line.naver.com | |
0.0.0.0 adns2.line.naver.com | |
0.0.0.0 adpon.jp | |
0.0.0.0 adservice.google.com | |
0.0.0.0 ch-news.line-apps.com |
OlderNewer